/* ===== LANG DROPDOWN WRAPPER ===== */
.custom-lang-dropdown {
  position: relative;
  cursor: pointer;
}

.lang-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;

  background: #2b2b2b;
  list-style: none;
  margin: 0;
  padding: 0;

  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

  /* hidden */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  z-index: 1001;
}

/* Open state */
.custom-lang-dropdown.open .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow rotate */
.arrow-icon {
  transition: transform 0.25s ease;
}

.custom-lang-dropdown.open .arrow-icon {
  transform: rotate(180deg);
}

.lang-options li {
  margin: 0;
  padding: 0;
}

.lang-options li a {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 10px 18px;
  width: 100%;

  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}


.lang-options li a:hover {
  background: #3a3a3a;
  color: #E31F26;
}


.lang-options li.active a {
  background: #3a3a3a;
  color: #E31F26;
  font-weight: 600;
}

.cta-button .btn-primary {
  background-color: #E31F26;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
  border: none;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  font-family: "Montserrat-Regular";
}
header.scrolled .cta-button .btn-primary {
  padding: 8px 20px;
}
.cta-button .btn-primary:hover {
  background-color: #c91920;
}

/* Header CTA Button */
.btn-header {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-header:hover {
  background-color: #c41820;
  transform: translateY(-1px);
}

/* HERO SECTION - replicating Hero Banner.png */
/* HERO SECTION */
.hero {
  height: 100vh;
  width: 100%;
  background-color: black; 
  position: relative;
  overflow: hidden;
}

/* Carousel Inner */
.carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Carousel Item */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0; 
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
  z-index: 1;
}

.carousel-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Video inside Item */
.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay inside Item */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 0;
  pointer-events: none;
}

/* Content specific to item */
.hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out 0.3s;
}

.carousel-item.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-title {
  font-size: 5rem;
  font-weight: 400; 
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.1;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400; 
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-hero {
  padding: 12px 20px;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #c41820;
  border-color: #c41820;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 28, 37, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Slider Indicators */
/* Slider Indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20; /* Ensure above carousel items */
}

.indicator {
  width: 40px;
  height: 2px;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: white;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1002;
  color: white;
}

.hamburger-menu svg {
  width: 100%;
  height: 100%;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px; /* Width of sidebar */
  height: 100vh;
  background-color: #1a1a1a; /* Dark background */
  z-index: 2000;
  padding: 20px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.open {
  right: 0;
}

/* ... overlay ... */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.sidebar-logo {
  height: 40px;
}

.close-menu {
  width: 30px;
  height: 30px;
  color: white;
  cursor: pointer;
}

.close-menu svg {
  width: 100%;
  height: 100%;
}
/* ... rest ... */

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  transition: color 0.3s;
}
.mobile-nav-links li {
  padding-left: 0 ;
}
.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: #E31F26;
  padding-left: 10px; 
}

.mobile-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 16px;
}


/* Responsiveness */
@media (max-width: 1184px) {
  nav {
    display: none !important; 
  }
  
  .desktop-only {
    display: none; 
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .header-right {
    gap: 15px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  header {
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .mobile-sidebar {
    width: 260px;
  }
}