/* ==========================================================================
   AeroVanti Landing Page
   Brand Colors:
     Gold/Amber:  #c3922c
     Dark Navy:   #25344f
     Maroon:      #800000
     White:       #ffffff
   Fonts:
     Montserrat (headings, buttons, nav)
     Source Sans 3 (body text)
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #25344f;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: #ffffff;
  padding: 40px 0 20px;
  text-align: center;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 220px;
  height: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-jet {
  max-width: 900px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   CTA / Partnership Section
   ========================================================================== */

.cta-section {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.cta-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #25344f;
  max-width: 780px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #c3922c;
  background: transparent;
  border: 2px solid #c3922c;
  padding: 16px 40px;
  transition: all 300ms ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #c3922c;
  color: #ffffff;
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */

.our-story {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #f0ece4;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c3922c;
  text-align: center;
  margin-bottom: 40px;
}

.our-story p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 24px;
}

.our-story p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Seamless Luxury Section
   ========================================================================== */

.luxury-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.luxury-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.luxury-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 80px 30px;
  color: #ffffff;
}

.luxury-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
}

.luxury-accent {
  color: #c3922c;
}

.luxury-content p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #25344f;
  padding: 50px 0;
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.copyright {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .logo {
    width: 160px;
  }

  .hero {
    min-height: 300px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-jet {
    max-width: 100%;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-button {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 14px 28px;
  }

  .section-heading {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .our-story {
    padding: 50px 0;
  }

  .our-story p {
    font-size: 15px;
  }

  .luxury-section {
    min-height: 400px;
  }

  .luxury-content h2 {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .luxury-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 130px;
  }

  .site-header {
    padding: 25px 0 15px;
  }

  .cta-button {
    font-size: 11px;
    padding: 12px 20px;
    letter-spacing: 1.5px;
  }

  .luxury-content h2 {
    font-size: 22px;
    letter-spacing: 3px;
  }
}
