/* ============================================================
   AIR FUN RENTALS – Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:    #FF6B35;
  --secondary:  #FFD700;
  --accent:     #7C3AED;
  --green:      #25D366;
  --pink:       #FF4D8D;
  --sky:        #38BDF8;
  --bg-light:   #FFF9F0;
  --bg-white:   #FFFFFF;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A6A;
  --text-light: #7A7A9A;
  --radius-lg:  24px;
  --radius-md:  16px;
  --radius-sm:  10px;
  --shadow-sm:  0 4px 16px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  border: none;
}

.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}

.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-sm { padding: 11px 24px; font-size: .9rem; }

.btn-lg { padding: 20px 48px; font-size: 1.15rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: #fff;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo { color: var(--text-dark); }

.logo-icon { font-size: 1.8rem; }

.logo-accent { color: var(--secondary); }

.navbar.scrolled .logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a:hover { color: var(--primary); }

.nav-whatsapp {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #7C3AED 0%, #FF6B35 50%, #FF4D8D 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero > .container,
.hero {
  display: flex;
  align-items: center;
}

.hero {
  gap: 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  padding-right: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.hero-highlight {
  color: var(--secondary);
  text-shadow: 0 4px 20px rgba(255,215,0,.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  flex: 1;
  max-width: 520px;
  z-index: 2;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
  border: 4px solid rgba(255,255,255,.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 420px;
}

.about-img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.about-content { padding-left: 20px; }

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.stat-icon { font-size: 1.4rem; }

/* ---------- PRICES ---------- */
.prices-section {
  background: linear-gradient(135deg, #FFF9F0, #FFF0F5);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.price-card-featured {
  background: linear-gradient(135deg, #7C3AED, #FF6B35);
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.price-card-featured:hover { transform: scale(1.04) translateY(-8px); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--text-dark);
  font-size: .78rem;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.price-icon { font-size: 2.5rem; margin-bottom: 12px; }

.price-duration {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-card-featured .price-duration { color: #fff; }

.price-amount {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1;
}

.price-card-featured .price-amount { color: var(--secondary); }

.price-features {
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 7px 0;
  font-size: .95rem;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f0f0;
}

.price-card-featured .price-features li {
  color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.2);
}

.price-features li:last-child { border-bottom: none; }

.prices-note {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 32px;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  color: var(--text-mid);
}

.note-icon { font-size: 1.1rem; }

.note-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- EVENTS ---------- */
.events-section { background: var(--bg-white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.events-grid .event-card:nth-child(4),
.events-grid .event-card:nth-child(5) {
  grid-column: span 1;
}

/* Center last two cards */
.events-grid {
  grid-template-columns: repeat(6, 1fr);
}

.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  grid-column: span 2;
}

.events-grid .event-card:nth-child(4) { grid-column: 2 / span 2; }
.events-grid .event-card:nth-child(5) { grid-column: 4 / span 2; }

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.event-img-wrap {
  height: 200px;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.event-card:hover .event-img-wrap img { transform: scale(1.08); }

.event-info {
  padding: 24px;
}

.event-emoji { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.event-info h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.event-info p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  background: linear-gradient(135deg, #F0F4FF, #FFF0F5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---------- GALLERY STRIP ---------- */
.gallery-strip {
  overflow: hidden;
  padding: 40px 0;
  background: var(--bg-white);
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: scroll-gallery 28s linear infinite;
  width: max-content;
}

.gallery-track img {
  height: 220px;
  width: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

@keyframes scroll-gallery {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- LOCATION ---------- */
.location-section { background: var(--bg-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-light);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.loc-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.location-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.location-item p {
  font-size: .9rem;
  color: var(--text-mid);
  margin: 0;
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, #7C3AED 0%, #FF6B35 50%, #FF4D8D 100%);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bubbles { position: absolute; inset: 0; pointer-events: none; }

.cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  animation: bubble-float 8s ease-in-out infinite;
}

.b1 { width: 200px; height: 200px; top: -60px; left: -60px; animation-delay: 0s; }
.b2 { width: 140px; height: 140px; top: 40%; right: -40px; animation-delay: 2s; }
.b3 { width: 100px; height: 100px; bottom: -30px; left: 20%; animation-delay: 4s; }
.b4 { width: 180px; height: 180px; bottom: -50px; right: 15%; animation-delay: 1s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1A1A2E;
  padding: 60px 0 32px;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer .nav-logo,
.footer .logo-text {
  color: #fff;
}

.footer .logo-accent { color: var(--secondary); }

.footer-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-weight: 600;
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--secondary); }

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin-top: 12px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 130px 24px 100px; }
  .hero-content { max-width: 100%; padding-right: 0; margin-bottom: 40px; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrap { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-small { display: none; }
  .about-content { padding-left: 0; }
  .prices-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card-featured { transform: scale(1); }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .event-card { grid-column: span 1 !important; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(12px); padding: 24px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-dark) !important; font-size: 1.05rem; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .events-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 280px; }
  .gallery-track img { height: 160px; width: 220px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn { padding: 13px 24px; font-size: .9rem; }
  .btn-lg { padding: 16px 32px; font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .price-amount { font-size: 2.4rem; }
  .cta-title { font-size: 2rem; }
}
