/* ========================================
   GLOBAL RESET & FONTS
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: 'Inter', sans-serif;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  /* Colors */
  --color-primary: #b7324c;
  --color-primary-hover: #d63e5c;
  --color-accent: #ff9e80;
  --color-footer: #3a1a22;
  --color-dark: #1a1a1a;
  --color-text: #1e293b;
  --color-text-light: #cbd5e1;
  --color-bg-cream: #f5f0e8;
  --color-link-hover: #f1681d;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-alt: 'Helvetica Neue', sans-serif;
}

/* ========================================
   NAVBAR
======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: all var(--transition-normal);
  height: 1.5in; /* Fixed height as requested */
  display: flex;
  align-items: center;
}

#navbar.scrolled {
  background: var(--color-dark);
  box-shadow: var(--shadow-lg);
  height: 1in; /* Smaller height when scrolled */
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 60%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  height: 100%;
  margin: 0 auto; /* Center the nav links */
}

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--transition-normal);
  cursor: pointer;
  padding: var(--spacing-xs) var(--spacing-md);
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link::after,
.dropdown-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transition: all var(--transition-normal);
  transform-origin: left;
}

.nav-link:hover::after,
.dropdown-item:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: rgba(26, 26, 26, 0.98);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  padding: var(--spacing-xs) 0;
  margin-top: var(--spacing-xs);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  padding: var(--spacing-md) var(--spacing-lg);
  color: var(--color-text-light);
  display: block;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color var(--transition-normal), background-color var(--transition-fast);
  position: relative;
}

.dropdown-item:hover {
  background-color: rgba(183, 50, 76, 0.1);
  color: var(--color-accent);
}

.btn-contact {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  text-decoration: none;
  border-radius: 2px;
  text-transform: uppercase;
  transition: background-color var(--transition-normal), transform var(--transition-fast);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-left: auto; /* Push to the right */
}

.btn-contact:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* --- Fix: Hide Contact Us button on mobile, show only on desktop --- */
@media (max-width: 900px) {
  .btn-contact {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .btn-contact {
    display: inline-block !important;
  }
}

/* ========================================
   HERO SECTION
======================================== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

#hero .content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 0 var(--spacing-xl);
}

#hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  letter-spacing: 2px;
  text-transform: uppercase;
}

#hero p {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-spacer {
  height: 100vh;
  width: 100%;
}

/* ========================================
   PARALLAX HERO SECTION
======================================== */
.parallax-hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  left: 0;
  right: 0;
  height: calc(75vh + 2.5in);
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  will-change: transform;
  z-index: -1;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.hero-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  padding: 60px 20px 0 20px;
  z-index: 3;
  margin-top: -56px;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.hero-cta-btn {
  background-color: #f1681d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 2px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-shadow: none;
  box-shadow: 0 4px 12px rgba(241, 104, 29, 0.3);
}

.hero-cta-btn:hover {
  background-color: #d55a18;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(241, 104, 29, 0.4);
}

/* Mobile responsive styles for parallax hero */
@media (max-width: 768px) {
  .parallax-hero {
    height: calc(65vh + 2in) !important;
  }
  
  .hero-content h1 {
    font-size: 3rem !important;
    margin-bottom: 15px !important;
  }
  
  .hero-content p {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
  }
  
  .hero-cta-btn {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .parallax-hero {
    height: calc(60vh + 1.5in) !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-content {
    padding: 40px 15px 0 15px !important;
  }
}

/* ========================================
   FOOTER
======================================== */
.sexy-footer {
  background-color: #3a1a22;
  color: #cbd5e1;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 60px 20px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-link-columns {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-col a {
  color: #cbd5e1;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-link-col a:hover {
  color: #f1681d;
}

.footer-line {
  border: none;
  border-top: 1px solid #cbd5e15e;
  margin: 30px 0;
}

.footer-address-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-address-left,
.footer-address-right {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-bench {
  font-weight: normal;
  display: block;
}

.footer-proud {
  font-size: 13px;
  margin-top: 2px;
  line-height: 1.1;
}

.footer-socials a {
  color: #cbd5e1;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #f1681d;
}

.footer-about-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.footer-about-link:hover {
  color: #f1681d;
}

.footer-copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
}

.footer-nav {
  margin: 15px 0;
}

@media (max-width: 700px) {
  .footer-address-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  
  .footer-address-left,
  .footer-address-right {
    text-align: center;
  }
  
  .footer-address-right {
    margin-top: 0;
  }
  
  /* Better mobile spacing */
  .footer-link-columns {
    gap: 30px;
    margin-top: 15px;
  }
  
  .footer-link-col {
    gap: 12px;
  }
  
  .footer-link-col a {
    font-size: 15px;
    padding: 5px 0;
  }
  
  /* Social icons spacing */
  .footer-socials {
    margin: 25px 0;
  }
  
  .footer-socials a {
    margin: 0 15px;
    font-size: 20px;
  }
  
  /* Copyright styling */
  .footer-copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #9ca3af;
  }
  
  /* About link spacing */
  .footer-nav {
    margin: 20px 0 10px 0;
  }
  
  .footer-about-link {
    font-size: 13px;
    letter-spacing: 1.2px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .sexy-footer {
    padding: 40px 15px 15px;
  }
  
  .footer-link-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .footer-link-col {
    text-align: center;
    gap: 10px;
  }
  
  .footer-link-col a {
    font-size: 14px;
  }
  
  .footer-socials a {
    margin: 0 12px;
    font-size: 22px;
  }
  
  .footer-address-left,
  .footer-address-right {
    font-size: 13px;
  }
}

/* --- Fix: Mobile menu links visibility and animation (copied from mission.html) --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 0;
  margin: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff9e80, transparent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.mobile-menu-link:hover::after,
.mobile-menu-link:focus::after {
  width: 100%;
}
.mobile-menu-link:hover,
.mobile-menu-link:focus {
  color: #ff9e80;
  transform: scale(1.05);
}

/* You can add more section-specific styles here as needed */
