@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #E93D42;
    --heading-font: 'Inter Tight', sans-serif;
    --body-font: 'Manrope', sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.navbar a{
    text-decoration: none;
    color: #000;
}
.navbar a:hover {
    color: var(--primary-color);
}
.hero-airport {
    position: relative;
    min-height: 85vh;
    background: url(../assets/img/hero-bg.webp) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-airport::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 15px;
    opacity: 0.9;
}

.btn-danger {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-logos img {
    height: 35px;
}

.about-airport {
    background: #F2F3FA;
    color: #000;
}

.about-airport h2,
.playzones-section h2,
.trusted-airports h2,
.testimonial-section h2 {
    font-size: 48px;
    font-weight: 600;
}

.about-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 62px;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}


.about-img-wrap:hover img {
    transform: scale(1.08);
}

.about-img-wrap:hover::after {
    opacity: 1;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.text-danger {
    color: var(--primary-color) !important;
    font-size: 20px;
    font-weight: 500;
}

span.line {
    display: inline-block;
    width: 30%;
    height: 1px;
    background: #CACDE5;
}


.playzones-section {
    background: #fff;
}

.playzone-card {
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.playzone-img {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.playzone-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .6s ease;
}

.playzone-card:hover {
    transform: translateY(-8px);

}

.playzone-card:hover img {
    transform: scale(1.08);

}

.playzone-card:hover .playzone-img {
    box-shadow: rgba(255, 196, 196, 1) 0px 8px 24px;
}

.playzone-title {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    font-family: var(--heading-font);
}



.trusted-airports {
    background: var(--primary-color);
}

.section-tag {
    font-size: 20px;
    color: #fff;
}

.airport-card {
    background: #fff;
    border-radius: 64px;
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.airport-card img {
    height: 80px;
    margin-bottom: 14px;
}

.airport-card p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    font-family: var(--heading-font);
}

.airport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.bottom-note {
    margin-top: 30px;
    font-size: 20px;
    color: #fff;
}


.playzones-split {
    background: #fff;
}

/* common card */
.play-card {
    height: 100%;
    padding: 48px 60px;
    border-radius: 28px;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
    text-align: center;
}

.play-card h3 {
    font-size: 42px;
    font-weight: 500;
    margin: 16px 0;
}

.play-card p {
    font-size: 16px;
    margin-bottom: 24px;
}

.card-tag {
    font-size: 18px;
    font-weight: 600;
    color: #FFEA00;
    display: inline-block;
    margin-bottom: 8px;
}

/* rental card */
.rental-card {
    background:
        linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)),
        url(../assets/img/rental-bg.png) center/cover no-repeat;
    color: #fff;
}

.sale-card {
    background: #F2F3FA;
    color: #000;
}

.btn-light {
    background: #fff;
}

.play-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(255, 196, 196, .7);
}


.testimonial-section .container {
    background: #F9FDFF;
    border-radius: 82px;
    padding: 3rem;
}

.testimonial-swiper {
    height: 380px;
    padding: 0px 10px;
}

.testimonial-card {
    background: #fff;
    padding: 22px;
    border-radius: 36px;
    transition: .3s;
    height: 180px;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #ddd;

}

.testimonial-card p {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.7;
}

.testimonial-card span {
    font-size: 18px;
    color: #000;
}

.swiper-slide-active .testimonial-card {
    background: linear-gradient(to top,
            #FFC4C4 0%,
            #FFFFFF 100%);
    transform: scale(1.02);
}

.swiper-slide-active .testimonial-card:hover {
    background: linear-gradient(to top,
            #FFC4C4 0%,
            #FFFFFF 100%);
}

.testimonial-img {
    border-radius: 76px;
    position: relative;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    max-width: 100%;

}

.testimonial-img:hover img {
    transform: scale(1.05);
    transition: transform .6s ease;
}


.airport-gallery {
    background: linear-gradient(70deg, #000000, #383535, #000000);
}

.section-tag {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

.airport-gallery h2 {
    font-size: 50px;
    font-weight: 600;
}

.oval-img {
    width: 100%;
    height: 380px;
    border-radius: 150px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.oval-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.oval-img:hover {
    transform: translateY(-10px);
    box-shadow: rgba(233, 61, 66, .7) 0px 8px 24px;
}


.airport-footer {
    position: relative;
    padding: 100px 0 60px;
    background: url(../assets/img/footer-bg.png) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.airport-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

/* CTA */
.footer-cta h2 {
    font-size: 50px;
    font-weight: 500;
}

.rating {
    color: #f5c542;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.rating span {
    color: #fff;
    font-size: 16px;
}


.footer-card {
    background: #720609;
    border-radius: 47px;
    padding: 40px 30px;
    margin-top: 60px;
}


.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-text {
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}


.footer-bottom {
    border-top: 1px solid #C23539;
    font-size: 18px;
}
.bg-text {
    font-size: 10.7rem;
    line-height: .8;
    font-weight: 800;
    color: #ffffff63;
    background: #00000090;
}

@media (max-width: 991px) {
    .playzone-card {
        padding: 32px 26px;
    }

    .playzone-card h3 {
        font-size: 26px;
    }

    .oval-img {
        height: 260px;
    }
}

/* Navbar font */
.navbar,
.navbar a,
.navbar-brand,
.navbar-nav .nav-link {
    font-family: 'Nasalization', sans-serif;
}
.navbar-nav .nav-link {
    letter-spacing: 1px;
    font-weight: 400;
}
.logo-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.logo-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 10;
}

.logo-tooltip:hover::after {
    opacity: 1;
    bottom: -50px;
}
.airport-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px; /* adjust spacing here */
    flex-wrap: wrap;
}
.inline-link {
    color: inherit;          /* same color as text */
    text-decoration: none;   /* remove underline */
    font-weight: inherit;
}

.inline-link:hover {
    text-decoration: underline; /* optional: subtle hover */
}
.link-badge {
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.link-badge:hover {
    background: #fff;
    color: #e53935;
}
/* ===== AIRPORT LOGO SLIDER ===== */
.airport-slider {
    width: 100%;
    overflow: visible; /* IMPORTANT for tooltip */
    position: relative;
}

/* Move animation to inner wrapper */
.airport-slider-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: airportSlide 35s linear infinite;
}

/* Bigger logos */
.airport-slider img {
    height: 85px;   /* 🔥 increased size */
    width: auto;
    flex-shrink: 0;
}

/* Pause on hover */
.airport-slider:hover .airport-slider-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes airportSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.testimonial-swiper {
    height: 420px; /* controls visible area */
    overflow: hidden;
}
.footer-text a {
    color: #ffffff;
    text-decoration: none;
}

.footer-text a:hover,
.footer-text a:focus {
    color: #ffffff;
    text-decoration: none;
}
/* HERO SECTION */
.hero-airport {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.hero-airport::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* KEEP CONTENT ABOVE VIDEO */
.hero-airport .container {
  position: relative;
  z-index: 2;
}
