/* About page luxury hero background */
.luxury-hero-bg {
    background-image: url('media/Skyline Rotorua (18).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Modern Skyline Rotorua Website Styles */
:root {
    --primary-color: #ffffff; /* Emerald Green */
    --secondary-color: #000000; /* Same Green */
    --accent-color: #d0ded9; /* Same Green */
    --light-bg: #ffffff; /* Pure White */
    --text-color: #064e3b; /* Dark Green */
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #047857 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Luxury Color Palette - Green & White Theme */
    --luxury-primary: #064e3b; /* Dark Green */
    --luxury-secondary: #059669; /* Emerald Green */
    --luxury-accent: #059669; /* Same Green */
    --luxury-dark: #022c22; /* Very Dark Green */
    --luxury-light: #ffffff; /* Pure White */
    --luxury-gold-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
    --luxury-silver-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
    --luxury-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --luxury-glow: 0 0 20px rgba(5, 150, 105, 0.3);
    --nav-height: 78px;
    --footer-min-height: 260px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    font-size: 0.95rem;
}

.page-shell {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-height);
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.35) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.page-shell > .page-section {
    flex: 1 0 auto;
    width: 100%;
    padding-top: clamp(1.5rem, 2vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 4.5rem);
}

.page-shell > .page-section:last-child {
    padding-bottom: clamp(2.5rem, 5vw, 5.5rem);
}

.admin-page {
    background: linear-gradient(180deg, rgba(232, 248, 239, 0.4) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.user-page {
    background: linear-gradient(180deg, rgba(240, 249, 244, 0.5) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.admin-page .luxury-card,
.user-page .luxury-card {
    margin-bottom: 1.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    /* Add vendor prefix for Safari compatibility */
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.95) !important;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(5, 150, 105, 0.2);
    margin: 1rem 2rem 0 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.navbar-toggler {
    border: none; /* optional: remove the default border */
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.luxury-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--luxury-shadow), 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.navbar-brand img {
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo {
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--luxury-primary) !important;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--luxury-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--luxury-secondary) !important;
    transform: translateY(-1px);
}

/* Responsive navbar adjustments */
@media (max-width: 768px) {
    .navbar {
        margin: 0.5rem 1rem 0 1rem;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .navbar {
        margin: 0.25rem 0.5rem 0 0.5rem;
        border-radius: 12px;
    }
}

@media (max-width: 992px) {
    .btn-nav {
        width: 100%;
        margin: 0.25rem 0;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: clamp(8rem, 18vw, 10rem) 0 6rem;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    animation: heroParallax 18s ease-in-out infinite alternate;
    will-change: background-position, transform;
}

.luxury-hero {
    background-attachment: fixed;
    position: relative;
    margin-top: 0;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.8) 0%, rgba(2, 44, 34, 0.6) 100%);
    z-index: 1;
}

.hero-home {
    background-image: url('media/Skyline Rotorua Gondola Sun Set Photo 1.jpg');
}

.hero-activities {
    background-image: url('media/Skyline Rotorua Gravity Park Hero Picture 9.jpg');
}

.hero-about {
    background-image: url('media/Skyline Rotorua (18).jpg');
}

.hero-dining {
    background-image: url('media/Skyline Rotorua Market Kitchen-Pizza 18.jpg');
}

.hero-contact {
    background-image: url('media/Skyline Rotorua Night Gondola view.jpg');
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem clamp(1.6rem, 3.5vw, 2.6rem);
    animation: floatPulse 6s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform, box-shadow;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.85s;
}

.hero-buttons .btn i {
    font-size: 1rem;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.luxury-title {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.luxury-title-accent {
    font-weight: 400;
    color: var(--luxury-secondary) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-section .lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.luxury-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 1px;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    padding: 10px 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

/* Luxury Buttons */
.btn-luxury-primary {
    --btn-shadow: 0 16px 32px rgba(5, 150, 105, 0.28);
    background: linear-gradient(135deg, #0f9e7c 0%, #0fb981 50%, #047857 100%);
    background-size: 200% 200%;
    border: 1px solid rgba(4, 120, 87, 0.45);
    color: var(--white);
    font-weight: 500;
    box-shadow: var(--btn-shadow);
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: background-position 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-luxury-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.btn-luxury-primary:hover {
    background-position: 100% 0;
    color: var(--white);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.35);
}

.btn-luxury-primary:hover::after {
    transform: translateX(220%) skewX(-20deg);
    opacity: 1;
}

.btn-luxury-primary:focus-visible {
    outline: 3px solid rgba(15, 158, 124, 0.45);
    outline-offset: 3px;
}

.btn-luxury-secondary {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.96) 0%, rgba(4, 120, 87, 0.96) 50%, rgba(5, 150, 105, 0.94) 100%);
    border: 1px solid rgba(4, 120, 87, 0.85);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.35s ease;
    box-shadow: 0 14px 28px rgba(4, 120, 87, 0.28);
    position: relative;
    overflow: hidden;
}

.btn-luxury-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 35%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-22deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.btn-luxury-secondary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 36px rgba(4, 120, 87, 0.32);
    color: var(--white);
}

.btn-luxury-secondary:hover::after {
    transform: translateX(220%) skewX(-22deg);
    opacity: 1;
}

.btn-luxury-outline {
    background: transparent;
    border: 1px solid rgba(5, 150, 105, 0.6);
    color: var(--luxury-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
    transition: all 0.3s ease;
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    box-shadow: 0 0 0 rgba(5, 150, 105, 0);
}

.btn-luxury-outline:hover {
    background: var(--luxury-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(5, 150, 105, 0.25);
}

.btn-luxury-outline:focus-visible,
.btn-luxury-secondary:focus-visible {
    outline: 3px solid rgba(5, 150, 105, 0.45);
    outline-offset: 3px;
}

.btn-nav {
    padding: 0.55rem 1.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.16rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
}

.bg-luxury-light {
    background: var(--luxury-light) !important;
}

.bg-luxury-dark {
    background: var(--luxury-dark) !important;
}

.content-section h2 {
    font-weight: 400;
    color: var(--luxury-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.luxury-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--luxury-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
}

.luxury-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--luxury-primary);
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* White text for dark backgrounds */
.bg-luxury-dark .luxury-section-title,
.bg-luxury-dark .luxury-section-subtitle {
    color: var(--white) !important;
}

.bg-light {
    background: var(--light-bg) !important;
}

/* Cards */
.feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    background: var(--white);
    height: 100%;
}

.luxury-card {
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: var(--luxury-shadow);
    background: var(--white);
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-heavy);
}

.luxury-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--luxury-glow);
    border-color: var(--luxury-secondary);
}

.feature-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px 12px 0 0;
}

.feature-card:hover .card-img-top {
    transform: scale(1.05);
}

.feature-card .card-body {
    padding: 1.8rem;
}

.feature-card .card-title {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.luxury-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--luxury-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

.feature-card .card-text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.luxury-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.9rem;
}

.feature-icon {
    color: var(--primary-color);
}

.text-luxury-primary {
    color: var(--luxury-secondary) !important;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Track Cards */
.track-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.track-icon {
    margin-bottom: 1.5rem;
}

.track-card h4 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.track-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.track-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-features li {
    padding: 0.4rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.track-features li i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Mission Card */
.mission-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.mission-card blockquote {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h5 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Safety Features */
.safety-features {
    margin-top: 2rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateX(5px);
}

.safety-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.safety-item h5 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.safety-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Stats */
.stat-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.stat-item p {
    color: var(--text-color);
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.luxury-gallery {
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: var(--luxury-shadow);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.luxury-gallery:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-glow);
    border-color: var(--luxury-secondary);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.luxury-overlay {
    background: linear-gradient(transparent, rgba(6, 78, 59, 0.9));
    border-top: 1px solid var(--luxury-secondary);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Contact Section */
.contact-info {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
}

.luxury-contact {
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: var(--luxury-shadow);
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--luxury-primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.luxury-footer {
    background: var(--luxury-dark);
    border-top: 2px solid var(--luxury-secondary);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-secondary);
}

.footer h5 {
    color: var(--luxury-accent);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.luxury-footer h5 {
    color: var(--luxury-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.luxury-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.footer a:hover {
    color: var(--luxury-accent);
    transform: translateX(5px);
}

.luxury-footer a:hover {
    color: var(--luxury-secondary);
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    text-align: center;
    line-height: 35px;
    color: var(--white);
    transition: all 0.3s ease;
    margin-right: 0.8rem;
}

.luxury-footer .social-links a {
    background: rgba(5, 150, 105, 0.2);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.social-links a:hover {
    background: var(--luxury-accent);
    transform: translateY(-2px);
    color: var(--white);
}

.luxury-footer .social-links a:hover {
    background: var(--luxury-secondary);
    color: var(--luxury-dark);
    box-shadow: var(--luxury-glow);
}

/* General image rounding */
img {
    border-radius: 8px;
}

.img-fluid {
    border-radius: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes heroParallax {
    0% {
        background-position: center center;
    }
    50% {
        background-position: center 12%;
    }
    100% {
        background-position: center center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 4rem;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .track-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .safety-item {
        flex-direction: column;
        text-align: center;
    }
    
    .safety-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .track-card {
        padding: 1.5rem;
    }
}

/* Loading animation */
.loading {
    animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-accent);
}


  
/* Make sure the hero section fills the viewport */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh; /* full viewport height */
}

/* Style the video as fullscreen background */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0; /* behind content */
  object-fit: cover; /* cover container without distortion */
}

/* Content container must be above video */
.hero-section .container {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Optional: make sure the navbar stays above everything */
.navbar {
  z-index: 1030; /* Bootstrap default for navbar */
  position: fixed; /* you already have this */
}
