/**
* Core
**/
body {
    font-family: 'ManropeR';
    background-color: #F8F9FA;
    color: #212529;
    background-attachment: fixed;
    height: 100%;
}

a {
    color: #e57B2F;
    text-decoration: none;
}

a:hover {
    color: #e57B2F;
    text-decoration: none;
    filter: brightness(110%);
}

/**
* Colors
**/
.white {
    color: #F8F9FA;
}

.dark {
    color: #212529;
}

.blue {
    color: #0B2C68;
}

.lightblue {
    color: #2E82C4;
}

.red {
    color: #A62639;
}

.orange {
    color: #e57B2F;
}

.green {
    color: #2FBF71;
}

/**
* Font Family
**/
@font-face {
    font-family: 'ManropeEL';
    src: url('../font/Manrope-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeB';
    src: url('../font/Manrope-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ManropeR';
    src: url('../font/Manrope-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/**
* Font Classes
**/
.manl {
    font-family: 'ManropeEL';
}

.manb {
    font-family: 'ManropeB';
}

.manr {
    font-family: 'ManropeR';
}

/**
* Classes
**/
.title-size-1-25 {
  font-size: 1.5rem !important;
}

.img-type {
    width: 80%;
    max-width: 200px;
    display: block;
    margin: 20px auto;
    border-radius: 1.5em;
}

.form-control {
  border: 1px solid #212529 !important;
  background-color: #ebebeb;
  font-size: 14px;
}

.accordion-item {
  border: 1px solid #212529 !important;
  margin-bottom: 20px;
}

.accordion-header {
  border: 1px solid #212529 !important;
}

.accordion-button:not(.collapsed) {
  background: #e57B2F;
  color: #f8f9fa;
}

.accordion-button.collapsed {
  background-color: #ebebeb;
}

/**
* Header CSS
**/
.header-section {
  background: linear-gradient(to bottom right, #0B2C68, #2E82C4);
  padding-top: 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  color: #F8F9FA;
}

.header-balloon {
  width: 200px;
  height: auto;
  margin: 1rem auto;
  animation: balloon-bob 3s ease-in-out infinite;
}

.grass-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.grass-container {
  display: block;
  width: 100vw;
  height: auto;
  margin-top: -10px;
}

.header-section .col-8 {
  margin-left: auto;
  margin-right: auto;
}

.fluid-background-dark {
  background-color: rgba(33, 37, 41, 0.8);
  border: 1px solid #F8F9FA;
  border-radius: 4px;
}

.fluid-background-orange {
  background-color: rgba(229, 123, 47, 0.8);
  border: 1px solid #F8F9FA;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .header-balloon {
    display: none;
  }
}

@keyframes balloon-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-balloon {
    animation: none !important;
  }
}

/**
* Navigation CSS
**/
.navbar-brand, .nav-link {
  color: #F8F9FA;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover, .nav-link:hover {
  color: #F8F9FA;
  transform: scale(1.1);
  text-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.nav-btn {
  background-color: #e57B2F;
  border: 1px solid #F8F9FA;
  border-radius: 4px;
  color: #F8F9FA;
  padding: 5px;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none !important;
}

.navbar-toggler:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.navbar-collapse {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: rgba(11, 44, 104, 0.95); /* match your blue */
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
  }

  .navbar-nav .nav-link {
    margin-bottom: 0.25rem;
  }
}

/**
* Buttons
**/
.btn-orange {
  color: #F8F9FA;
  background-color: #e57B2F;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-orange:hover {
  color: #F8F9FA;
  background-color: #e57B2F;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-outline-orange {
  color: #e57B2F;
  background-color: #F8F9FA;
  border: 1px solid #e57B2F;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-outline-orange:hover {
  color: #e57B2F;
  background-color: #F8F9FA;
  border: 1px solid #e57B2F;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-green {
  color: #F8F9FA;
  background-color: #2FBF71;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-green:hover {
  color: #F8F9FA;
  background-color: #2FBF71;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-outline-green {
  color: #2FBF71;
  background-color: #F8F9FA;
  border: 1px solid #2FBF71;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-outline-green:hover {
  color: #2FBF71;
  background-color: #F8F9FA;
  border: 1px solid #2FBF71;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-lightblue {
  color: #F8F9FA;
  background-color: #2E82C4;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-lightblue:hover {
  color: #F8F9FA;
  background-color: #2E82C4;
  border: 1px solid #F8F9FA;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-outline-lightblue {
  color: #2E82C4;
  background-color: #F8F9FA;
  border: 1px solid #2E82C4;
  font-family: 'ManropeB';
  transition: transform 0.3s ease-in-out;
}

.btn-outline-lightblue:hover {
  color: #2E82C4;
  background-color: #F8F9FA;
  border: 1px solid #2E82C4;
  font-family: 'ManropeB';
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/**
* Basic Code Sections
**/
.main-content {
  width: 98%;
  max-width: 1200px;
  margin: 20px auto;
}

/**
* Why Aerogelic
**/
.why-section {
  /*background-color: #F8F9FA;*/ /* light background for contrast */
  background: url('../img/az01.webp') no-repeat center center;  
  background-size: cover;
  color: #212529;
  background-attachment: fixed;
}

.why-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card i {
  color: #0B2C68;
}

.why-section h2 {
  text-shadow:
    0 2px 8px rgba(33, 37, 41,.45),
    0 0 2px rgba(33, 37, 41,.45);
}

/**
* Explore Flights
**/
.explore-section {
  background-color: #f8f9fa;
  margin-top: 3rem;
}

.svg-placeholder svg {
  max-width: 100px;
  height: auto;
}

/**
* Explore Flights
**/
.bg-soft-black {
  background-color: #0B2C68;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-top {
  top: 0;
  left: 0;
  transform: translateY(-100%); /* lift into place */
}

.wave-bottom {
  bottom: 0;
  left: 0;
  transform: translateY(100%); /* push into place */
}

.explore-section .container {
  position: relative;
  z-index: 2;
}

.explore-section .bg-soft-black {
  z-index: 1;
  position: relative;
}

/**
* Testimonals
**/
.testimonial-card {
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 0.5rem;
}

/**
* FAQ
**/
.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  border-color: transparent;
}

.bg-soft-orange {
  background-color: #f4a261;
}

.wave-faq {
  position: absolute;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.wave-faq svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-top-faq {
  top: 0;
  left: 0;
  transform: translateY(-100%); /* lift into place */
}

.wave-bottom-faq {
  bottom: 0;
  left: 0;
  transform: translateY(100%); /* push into place */
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-section .bg-soft-orange {
  z-index: 1;
  position: relative;
}

/**
* Footer
**/
.bg-footer-gradient {
  background: linear-gradient(to right, #0D47A1, #1976D2); /* deep blue gradient */
}

.footer a:hover {
  text-decoration: underline;
}

/**
* Arizona Page CSS
**/
.header-section-az{
  background-image: url('../img/hero-arizona.webp');
  background-repeat: no-repeat;
  background-size: cover;           /* fill the section without stretching */
  background-position: 50% 45%;     /* X% Y% — tweak Y only to reframe */
  padding-top: 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  color: #F8F9FA;
}

.header-section-az::after{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg,
    rgba(11,44,104,.54) 0%,
    rgba(11,44,104,.46) 35%,
    rgba(11,44,104,.46) 65%,
    rgba(11,44,104,.40) 82%,
    rgba(11,44,104,0)   92%);  /* fade out before grass */
}

.header-section-az .container{
  position:relative; 
  z-index:3;
}

.header-section-az .grass-wrapper{
  position:relative;  /* important: creates a stacking context */
  z-index:2;          /* above the scrim (z:1) */
  line-height:0;
}

.header-section-az .grass-container{
  width:100%;
  display:block;
}

.header-section-az h1{
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.header-section-az p{
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}

.why-phx { --navy:#0b2c68; --orange:#FF8A3D; --green:#2FBF71; --indigo:#1e4aa8; }

.why-phx-card{
  background:#fff;
  border:1px solid rgba(11,44,104,.08);
  border-radius:20px;
  padding:1.1rem 1.15rem 1.2rem;
  box-shadow:0 8px 24px rgba(11,44,104,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
  isolation:isolate;
}
.why-phx-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px;
  border-radius:20px 20px 0 0;
}
.why-phx-card:hover{
  transform: translateY(-3px);
  box-shadow:0 14px 36px rgba(11,44,104,.14);
  border-color: rgba(11,44,104,.14);
}

/* existing helpers kept the same */
.icon-bubble{
  display:grid; place-items:center;
  color:#fff; margin-bottom:.75rem;
  box-shadow: 0 6px 18px rgba(11,44,104,.18);
}
.icon-bubble i{ font-size:26px; line-height:1; }
.icon-bubble.is-sunrise{ background: linear-gradient(135deg, #ff9966, #ff5e3a); }
.icon-bubble.is-weather{ background: linear-gradient(135deg, #1e4aa8, #0b2c68); }
.icon-bubble.is-celebrate{ background: linear-gradient(135deg, #2fbf71, #1c9d5c); }

/* Center the icon no matter what (i or svg) */
.why-phx-card .icon-bubble{
  display: inline-flex;           /* was grid */
  align-items: center;
  justify-content: center;
  width: 72px; height:72px;
  border-radius:16px;
  padding:0;
  line-height:0;                  /* kill baseline wiggle */
  text-align:center;
  color:#fff;
  margin-bottom:.75rem;
  box-shadow: 0 6px 18px rgba(11,44,104,.18);
}

/* Normalize FA glyphs */
.why-phx-card .icon-bubble i,
.why-phx-card .icon-bubble svg{
  display:block;
  line-height:1;
  width:1em; height:1em;          /* keeps it visually centered */
  margin:0;
  font-size:26px;                 /* for <i> glyphs */
}

.value-list{ list-style:none; padding-left:0; margin:0; }
.value-list li{
  display:flex; align-items:flex-start; gap:.5rem;
  color:#2b3b55; margin:.35rem 0;
}
.value-list i{ color: var(--green); margin-top:.2rem; }

#why-phx-title{ letter-spacing:.2px; }


/* Optional: tiny optical nudge for the glasses only */
.why-phx-card .icon-bubble .fa-champagne-glasses{
  transform: translateX(-2px); /* try 0.5–1px if still looks left */
}

/* Flight options */
.phx-flights{ --orange:#FF8A3D; --green:#2FBF71; --navy:#0b2c68; --indigo:#1e4aa8; }

.phx-flight-card{
  background:#fff;
  border:1px solid rgba(11,44,104,.08);
  border-radius:20px;
  padding:1.1rem 1.15rem 1.2rem;
  box-shadow:0 8px 24px rgba(11,44,104,.08);
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.phx-flight-card:hover{
  transform: translateY(-3px);
  box-shadow:0 14px 36px rgba(11,44,104,.14);
  border-color: rgba(11,44,104,.14);
}

.phx-card-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:.5rem;
}

.badge{
  font-size:.75rem; font-weight:700; letter-spacing:.2px;
  border-radius:999px; padding:.25rem .6rem;
  border:1px solid rgba(11,44,104,.1);
}
.badge.most-popular{ background:rgba(255,138,61,.12); color:#A24B17; border-color:rgba(255,138,61,.24); }
.badge.private{ background:rgba(47,191,113,.12); color:#0E6B3D; border-color:rgba(47,191,113,.24); }
.badge.seasonal{ background:rgba(11,44,104,.10); color:#0b2c68; border-color:rgba(11,44,104,.18); }

.icon-bubble{
  width:56px; height:56px; border-radius:16px;
  display:inline-flex; align-items:center; justify-content:center;
  line-height:0; color:#fff; box-shadow:0 6px 18px rgba(11,44,104,.18);
}
.icon-bubble i, .icon-bubble svg{ display:block; width:1.25em; height:1.25em; font-size:28px; }

.icon-bubble.is-sunrise{ background:linear-gradient(135deg, #ff9966, #ff5e3a); }
.icon-bubble.is-private{ background:linear-gradient(135deg, #2fbf71, #1c9d5c); }
.icon-bubble.is-sunset{  background:linear-gradient(135deg, #1e4aa8, #0b2c68); }

.value-list{ list-style:none; padding-left:0; margin:0; }
.value-list li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; color:#2b3b55; }
.value-list i{ color: var(--green); margin-top:.2rem; }

/* Optional: lightly dim sunset card outside Nov–Mar (JS can add .sunset-in-season on <html> or <body>) */
:not(.sunset-in-season) .phx-flight-card--sunset{ opacity:.95; }

/**
* Albuquerque Page CSS
**/
.header-section-abq{
  background-image: url('../img/hero-abq.webp');
  background-repeat: no-repeat;
  background-size: cover;           /* fill the section without stretching */
  background-position: 50% 45%;     /* X% Y% — tweak Y only to reframe */
  padding-top: 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  color: #F8F9FA;
}

.header-section-abq::after{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg,
    rgba(11,44,104,.54) 0%,
    rgba(11,44,104,.46) 35%,
    rgba(11,44,104,.46) 65%,
    rgba(11,44,104,.40) 82%,
    rgba(11,44,104,0)   92%);  /* fade out before grass */
}

.header-section-abq .container{
  position:relative; 
  z-index:3;
}

.header-section-abq .grass-wrapper{
  position:relative;  /* important: creates a stacking context */
  z-index:2;          /* above the scrim (z:1) */
  line-height:0;
}

.header-section-abq .grass-container{
  width:100%;
  display:block;
}

.header-section-abq h1{
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.header-section-abq p{
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}

/**
* Festival Page CSS
**/
.header-section-fest{
  background-image: url('../img/hero-festival.webp');
  background-repeat: no-repeat;
  background-size: cover;           /* fill the section without stretching */
  background-position: 50% 45%;     /* X% Y% — tweak Y only to reframe */
  padding-top: 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  color: #F8F9FA;
}

.header-section-fest::after{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg,
    rgba(11,44,104,.54) 0%,
    rgba(11,44,104,.46) 35%,
    rgba(11,44,104,.46) 65%,
    rgba(11,44,104,.40) 82%,
    rgba(11,44,104,0)   92%);  /* fade out before grass */
}

.header-section-fest .container{
  position:relative; 
  z-index:3;
}

.header-section-fest .grass-wrapper{
  position:relative;  /* important: creates a stacking context */
  z-index:2;          /* above the scrim (z:1) */
  line-height:0;
}

.header-section-fest .grass-container{
  width:100%;
  display:block;
}

.header-section-fest h1{
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.header-section-fest p{
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}

/**
* Contact Page
**/
