﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*:root {
    --primary-red: #D32F2F;
    --deep-red: #B71C1C;
    --light-red: #EF5350;
    --primary-yellow: #FFC107;
    --amber: #FF8F00;
    --light-yellow: #FFD54F;
    --dark: #212121;
    --charcoal: #424242;
    --gray: #757575;
    --light-gray: #E0E0E0;
    --off-white: #FAFAFA;
    --pure-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #D32F2F 0%, #FF8F00 100%);
    --gradient-secondary: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    --gradient-dark: linear-gradient(135deg, #212121 0%, #424242 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}*/

:root {
    /* Primary Colors - From Logo */
    --primary-purple: #A73B8F;
    --deep-purple: #8B2C75;
    --light-purple: #C85FAE;
    --primary-green: #8BC540;
    --deep-green: #6FA030;
    --light-green: #A8D96F;
    /* Accent Colors */
    --accent-pink: #E91E63;
    --accent-lime: #CDDC39;
    /* Neutral Colors */
    --dark: #212121;
    --charcoal: #424242;
    --gray: #757575;
    --light-gray: #E0E0E0;
    --off-white: #FAFAFA;
    --pure-white: #FFFFFF;
    /* Gradients - Based on Logo */
    --gradient-primary: linear-gradient(135deg, #A73B8F 0%, #C85FAE 100%);
    --gradient-secondary: linear-gradient(135deg, #8BC540 0%, #A8D96F 100%);
    --gradient-vibrant: linear-gradient(135deg, #A73B8F 0%, #8BC540 100%);
    --gradient-dark: linear-gradient(135deg, #212121 0%, #424242 100%);
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-purple: 0 8px 25px rgba(167, 59, 143, 0.3);
    --shadow-green: 0 8px 25px rgba(139, 197, 64, 0.3);
}


body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pure-white);
}

/* Top Bar */
.top-bar {
    background: var(--gradient-dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

    .top-bar .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .top-bar a:hover {
        color: var(--primary-yellow);
    }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

    .navbar.scrolled {
        box-shadow: 0 4px 25px rgba(211, 47, 47, 0.15);
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 55px;
    height: 55px;    
    background-image: url('../images/aryan-logo.png');
    background-size: cover; /* makes the image cover the whole div */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* avoids tiling */
    
    transition: var(--transition);
}



.logo-text h1 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.2;
}

.logo-text p {
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

    .nav-menu a {
        color: var(--dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        transition: var(--transition);
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

.btn-book-now {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

    .btn-book-now::after {
        display: none;
    }

    .btn-book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(211, 47, 47, 0.5);
    }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--primary-red);
    cursor: pointer;
    padding: 5px;
}

/* Enhanced Hero Section with Animations */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        animation: zoomIn 15s ease-in-out infinite;
    }

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(183, 28, 28, 0.6) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated particles background */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 750px;
    color: white;
}

    .hero-text > * {
        animation: fadeInUp 1s ease-out backwards;
    }

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation-delay: 0.2s;
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: white;
    animation-delay: 0.4s;
}

    .hero-title span {
        background: var(--gradient-secondary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 400;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation-delay: 0.8s;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn > * {
        position: relative;
        z-index: 1;
    }

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
    }

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: white;
        color: var(--primary-red);
        border-color: white;
    }

/* Animated Hero Features */
.hero-features {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-width: 90%;
    backdrop-filter: blur(10px);
}

.hero-feature-item {
    text-align: center;
    animation: fadeInUp 1s ease-out backwards;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    border-radius: 10px;
}

    .hero-feature-item:nth-child(1) {
        animation-delay: 1s;
    }

    .hero-feature-item:nth-child(2) {
        animation-delay: 1.2s;
    }

    .hero-feature-item:nth-child(3) {
        animation-delay: 1.4s;
    }

    .hero-feature-item:nth-child(4) {
        animation-delay: 1.6s;
    }

    .hero-feature-item:hover {
        transform: translateY(-5px);
        background: var(--off-white);
    }

    .hero-feature-item i {
        font-size: 28px;
        color: var(--primary-red);
        margin-bottom: 8px;
        transition: var(--transition);
    }

    .hero-feature-item:hover i {
        transform: scale(1.2);
        color: var(--amber);
    }

    .hero-feature-item h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-feature-item p {
        font-size: 12px;
        color: var(--gray);
        font-weight: 500;
    }

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 150px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

    .slider-dot.active {
        background: var(--primary-yellow);
        width: 35px;
        border-radius: 10px;
    }

/* Quick Booking Widget */
.quick-booking {
    background: var(--off-white);
    padding: 70px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.25);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: white;
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 18px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        background: white;
        transition: var(--transition);
        font-weight: 500;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

.btn-search {
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

    .btn-search:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 193, 7, 0.6);
    }

/* Welcome Section */
.welcome-section {
    padding: 90px 20px;
    background: white;
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.welcome-images {
    position: relative;
}

.welcome-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.welcome-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 6px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.welcome-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--gradient-primary);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
    text-align: center;
    color: white;
}

    .welcome-badge h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 3px;
    }

    .welcome-badge p {
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
    }

.welcome-content h6 {
    color: var(--primary-red);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 800;
}

.welcome-content h2 {
    font-family: 'Lora', serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.welcome-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 18px;
    font-weight: 400;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 35px 0;
}

.welcome-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

    .welcome-feature:hover {
        background: white;
        transform: translateX(5px);
        box-shadow: var(--shadow);
    }

    .welcome-feature i {
        font-size: 24px;
        color: var(--primary-red);
        margin-top: 2px;
    }

    .welcome-feature h5 {
        font-size: 15px;
        margin-bottom: 6px;
        color: var(--dark);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .welcome-feature p {
        font-size: 13px;
        color: var(--gray);
        margin: 0;
    }

.stats-row {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px solid var(--light-gray);
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 38px;
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 3px;
}

.stat-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

    .section-header h6 {
        color: var(--primary-red);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-weight: 800;
    }

    .section-header h2 {
        font-family: 'Lora', serif;
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 18px;
        color: var(--dark);
        font-weight: 700;
    }

    .section-header p {
        font-size: 15px;
        color: var(--gray);
        line-height: 1.8;
    }

/* Testimonials Section with Auto-Scroll */
.testimonials-section {
    padding: 90px 20px;
    background: white;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    max-width: 1400px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

    .testimonials-slider:hover {
        animation-play-state: paused;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

.testimonial-card {
    background: var(--off-white);
    padding: 35px;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        background: white;
    }

.rating {
    color: var(--primary-yellow);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-info h5 {
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-family: 'Lora', serif;
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 35px;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-red);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    }

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid white;
}

    .btn-outline:hover {
        background: white;
        color: var(--primary-red);
    }

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 70px 20px 25px;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-primary);
    }

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-yellow);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        background: rgba(255, 193, 7, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-yellow);
        transition: var(--transition);
        border: 2px solid transparent;
    }

        .social-links a:hover {
            background: var(--gradient-secondary);
            color: var(--dark);
            transform: translateY(-5px);
        }

.footer-section h4 {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
    }

        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }

        .footer-links a i {
            color: var(--primary-red);
            font-size: 10px;
        }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 14px;
}

    .footer-contact-item i {
        color: var(--primary-yellow);
        font-size: 16px;
        margin-top: 3px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }

    .welcome-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 25px 0;
        gap: 20px;
    }

        .nav-menu.active {
            left: 0;
        }

    .top-bar {
        font-size: 11px;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 12px;
    }

    .hero {
        min-height: 500px;
        height: 90vh;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        position: static;
        transform: none;
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
        padding: 20px;
        gap: 20px;
    }

    .hero-feature-item i {
        font-size: 24px;
    }

    .hero-feature-item h4 {
        font-size: 12px;
    }

    .hero-feature-item p {
        font-size: 10px;
    }

    .slider-controls {
        bottom: 120px;
        right: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    .welcome-content h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 30px;
    }

    .welcome-img-main {
        height: 350px;
    }

    .welcome-img-small {
        width: 180px;
        height: 130px;
        right: 15px;
        bottom: -20px;
    }

    .welcome-badge {
        padding: 15px 20px;
    }

        .welcome-badge h3 {
            font-size: 28px;
        }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .stats-row {
        justify-content: space-between;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-white,
    .btn-outline {
        width: 100%;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;        
        background-image:url('../images/aryan-logo.png')
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .quick-booking-container {
        padding: 30px 20px;
    }

    .welcome-features {
        gap: 10px;
    }

    .welcome-feature {
        padding: 15px;
    }

    .hero-features {
        padding: 15px;
        gap: 15px;
    }
}

/* Rooms Section */
.rooms-section {
    padding: 90px 20px;
    background: var(--off-white);
}

.rooms-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

    .room-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
    }

.room-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient-primary);
    color: white;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-content {
    padding: 28px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

    .room-header h3 {
        font-size: 22px;
        color: var(--dark);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.room-price {
    text-align: right;
}

    .room-price .from {
        font-size: 10px;
        color: var(--gray);
        text-transform: uppercase;
        font-weight: 600;
    }

    .room-price .price {
        font-size: 28px;
        color: var(--primary-red);
        font-weight: 800;
    }

    .room-price .night {
        font-size: 12px;
        color: var(--gray);
        font-weight: 600;
    }

.room-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
}

    .amenity-item i {
        color: var(--primary-yellow);
        font-size: 13px;
    }

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.btn-view-details {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

    .btn-view-details:hover {
        gap: 10px;
    }

/* Why Choose Us Section */
.why-choose-section {
    padding: 90px 20px;
    background: white;
}

.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-card {
    background: var(--off-white);
    padding: 35px 28px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(211, 47, 47, 0.12);
        background: white;
    }

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-icon i {
    font-size: 30px;
    color: white;
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Dining Section */
.dining-section {
    padding: 90px 20px;
    background: var(--off-white);
}

.dining-grid {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dining-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

    .dining-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
    }

.dining-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .dining-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.dining-card:hover .dining-image img {
    transform: scale(1.1);
}

.dining-content {
    padding: 30px;
}

    .dining-content h3 {
        font-size: 24px;
        color: var(--dark);
        font-weight: 700;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .dining-content .cuisine {
        color: var(--primary-red);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        display: block;
    }

    .dining-content p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 20px;
    }

.dining-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.dining-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}

    .dining-feature i {
        color: var(--primary-yellow);
    }

/* Events Section */
.events-section {
    padding: 90px 20px;
    background: white;
}

.events-grid {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
    }

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
    background: white;
}

    .event-content h3 {
        font-size: 22px;
        color: var(--dark);
        font-weight: 700;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .event-content p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 20px;
    }

.event-specs {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.event-spec {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .event-spec i {
        color: var(--primary-red);
        font-size: 16px;
    }

    .event-spec span {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
    }

/* Special Offers Section */
.offers-section {
    padding: 90px 20px;
    background: var(--off-white);
}

.offers-grid {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

    .offer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
    }

    .offer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(211, 47, 47, 0.15);
    }

.offer-content {
    padding: 35px;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.offer-content h3 {
    font-size: 24px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-discount {
    font-size: 36px;
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 15px;
}

.offer-features {
    list-style: none;
    margin-bottom: 25px;
}

    .offer-features li {
        padding: 8px 0;
        font-size: 14px;
        color: var(--gray);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .offer-features li i {
            color: var(--primary-yellow);
        }

.offer-validity {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 90px 20px;
    background: white;
}

.location-container {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 500px;
}

    .location-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.location-info h3 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.location-item {
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    .location-item i {
        font-size: 24px;
        color: var(--primary-red);
        margin-top: 3px;
    }

    .location-item h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .location-item p {
        font-size: 14px;
        color: var(--gray);
        margin: 0;
    }

.nearby-attractions {
    margin-top: 30px;
}

    .nearby-attractions h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 20px;
        text-transform: uppercase;
    }

.attractions-list {
    list-style: none;
}

    .attractions-list li {
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .attractions-list li:last-child {
            border-bottom: none;
        }

.attraction-name {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.attraction-distance {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 90px 20px;
    background: var(--off-white);
}

.gallery-grid {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 280px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
        opacity: 0;
        transition: var(--transition);
        z-index: 1;
    }

    .gallery-item:hover::before {
        opacity: 1;
    }

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 13px;
    margin: 0;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .rooms-grid,
    .dining-grid,
    .events-grid,
    .offers-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }
}

/* Ensure these styles are in your style.css */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #212121;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #D32F2F;
}

.btn-book-now {
    background: linear-gradient(135deg, #D32F2F 0%, #FF8F00 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}
