/* 
    Hotel Dyarkoul Premium Stylesheet
    Modern Himalayan Retreat Aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #C5A059;
    --primary-light: #b9ab91;
    --accent: #264430;
    --dark: #0d1f18;
    --light: #fafbf8;
    --white: #ffffff;
    --text: #1a2e25;
    --text-light: #5a6b64;
    --border-glass: rgba(255, 255, 255, 0.15);
    --bg-glass: rgba(20, 30, 25, 0.4);
    --gradient-1: linear-gradient(135deg, #264430 0%, #1a2e25 100%);
    --gradient-2: linear-gradient(135deg, rgba(185, 171, 145, 0.1) 0%, rgba(185, 171, 145, 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(38, 68, 48, 0.08);
    --shadow-md: 0 8px 24px rgba(38, 68, 48, 0.12);
    --shadow-lg: 0 16px 48px rgba(38, 68, 48, 0.16);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 99999;
}

/* Utilities */
.section-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 2px;
    word-spacing: 6px;
}

.header-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 2rem;
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl) !important;
}

.border-opacity-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(38, 68, 48, 0.08);
}

/* Top Bar Styling */
.top-bar {
    background: #b9ab91;
    color: #264430;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.top-info-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-info-link:hover {
    opacity: 0.7;
    color: inherit;
}

.top-social-link {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.top-social-link:hover {
    transform: translateY(-2px);
    color: inherit;
}

.top-social-link i {
    text-shadow: none !important;
}

/* Scrolled Header Adjustments */
.header.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.header {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, height 0.4s ease;
}

@media (max-width: 768px) {
    .top-bar-left {
        gap: 15px !important;
        justify-content: center;
        width: 100%;
    }

    .top-info-link span {
        display: none;
        /* Hide text, show only icons if needed, or just keep it simple */
    }

    .top-bar-right {
        display: none !important;
        /* Hide socials on very small screens to keep contact info priority */
    }

    .top-info-link {
        font-size: 0.75rem;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    margin: 0 auto;
}

.main-logo {
    max-width: 100px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cta-button {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url("../images/other/Attic-Room/10.jpeg") no-repeat center center/cover;
    z-index: 1;
    animation: zoomBackground 25s infinite alternate linear;
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgb(13 31 24 / 41%) 0%, rgb(13 31 24 / 26%) 60%, transparent 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-indicator::after {
    content: '';
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    display: inline-block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-subtitle-top {
    font-size: 2.2rem;
    font-family: 'Great Vibes', cursive;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    color: white;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn {
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.hero-buttons .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-buttons .btn-primary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-5px);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-5px);
}

/* Glassmorphism Booking Card */
.booking-card {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-glass);
    padding: 3rem !important;
}

.form-control-glass,
.form-select-glass {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.2rem 0.9rem 45px;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-control-glass::placeholder {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.form-control-glass:focus,
.form-select-glass:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(197, 160, 80, 0.2);
    outline: none;
}

.form-select-glass {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-select-glass option {
    background: var(--dark);
    color: white;
}

form i {
    color: #c5a059;
}

.form-header span {
    padding: 6px 18px;
    background: rgba(197, 160, 80, 0.1);
    color: var(--primary);
}

.fa-location-dot {
    color: #c5a059;
}

.input-group-glass {
    color: white;
}

.hero-submit-btn {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #c5a059;
    border: none;
    color: white;
}

.hero-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 80, 0.4);
    background: #264430;
    color: white;
}

/* Rooms Section Custom grid */
.rooms {
    background: #fdfdfb;
}

.room-card-premium {
    background: white;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
}

.room-img-wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.room-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.room-card-premium:hover .room-thumb {
    transform: scale(1.15);
}

.room-badge-premium {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.room-price-tag {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 10;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-price-tag .amount {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 800;
}

.room-badge-premium {
    background-color: #264430;
}

.room-card .btn {
    color: white !important;
}

.fas {
    font-weight: 900;
    color: #c5a059;
}

/* About visual stack */
.about-visual-stack {
    position: relative;
    padding: 3rem;
}

.about-main-image {
    width: 100%;
    max-width: 92%;
    border-radius: 2.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    overflow: hidden;
    height: 520px;
    margin-top: -60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.about-extra-image {
    position: absolute;
    bottom: -10%;
    right: -2%;
    width: 65%;
    z-index: 2;
    border-radius: 2rem;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.experience-badge {
    position: absolute;
    top: 15%;
    right: 5%;
    background: var(--accent);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 6px solid white;
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
}

.experience-badge .badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(197, 160, 80, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-accent {
    color: var(--primary);
}

.underline-gold {
    position: relative;
    display: inline-block;
}

.underline-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(197, 160, 80, 0.15);
    z-index: -1;
}

.btn-discover {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    color: var(--primary);
}

.btn-discover i {
    transition: transform 0.3s ease;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Gallery System */
.gallery {
    background: white;
}

.gallery-item-premium {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-premium.large-item,
.gallery-item-premium.tall-item {
    height: 500px;
}

.gallery-item-premium.wide-item {
    height: 400px;
}

.hero-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(197, 160, 80, 0.15);
    pointer-events: none;
    z-index: 5;
}

.gallery-item-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-photo,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-premium:hover .gallery-photo,
.gallery-item-premium:hover .gallery-video {
    transform: scale(1.12);
}

.gallery-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateY(20px);
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tag {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-title {
    color: white;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Footer Section */
footer {
    background: var(--dark);
    color: white;
}

.footer-top {
    padding: 80px 0;
}

.footer-brand-text {
    color: rgb(255 255 255 / 83%);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 1.2rem;
}

.footer-nav a {
    color: rgb(255 255 255 / 83%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-info a {
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-item a {
    color: rgb(255 255 255 / 83%);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 30%);
}

.copyright-text {
    color: rgb(255 255 255 / 83%);
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: rgb(255 255 255 / 83%);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.gt-logo {
    width: 100%;
    max-width: 120px;
}

/* Activity Premium Styles */
.activities {
    background: #b9ab9142 !important;
}

.activity-card-premium {
    height: 400px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.activity-card-premium:hover .activity-img {
    transform: scale(1.1);
}

.activity-overlay-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(13 31 24 / 88%) 0%, rgb(13 31 24 / 14%) 60%, transparent 100%);
    transition: all 0.4s ease;
}

.activity-card-premium:hover .activity-overlay-glass {
    background: linear-gradient(to top, rgb(108 89 52 / 50%) 0%, rgba(13, 31, 24, 0.3) 100%);
}

.activity-icon-mini {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modal Specific Overrides */
#bookingModal .modal-content {
    background: #0d1f18 !important;
    border: 1px solid rgba(197, 160, 80, 0.3) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

#bookingModal .booking-card {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

@media (min-width: 992px) {
    #bookingModal .modal-lg {
        max-width: 550px !important;
    }
}

/* === thanks page=== */
.thanks-section {
    min-height: 100vh;
    background: linear-gradient(rgba(13, 31, 24, 0.6), rgba(13, 31, 24, 0.4)), url('../images/other/Outdoor/10.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 4rem 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(197, 160, 80, 0.15);
    border: 2px solid rgba(197, 160, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 3rem;
    color: #c5a059;
    box-shadow: 0 10px 30px rgba(197, 160, 80, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 80, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(197, 160, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 80, 0);
    }
}

.thanks-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thanks-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.back-btn-premium {
    background: #c5a059;
    color: #264430;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 15px 30px rgba(197, 160, 80, 0.3);
}

.back-btn-premium:hover {
    background: #264430;
    color: #c5a059;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(38, 68, 48, 0.4);
}

.redirect-timer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0d1f18; /* Boutique Dark Retreat Theme */
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 4rem 3rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        display: flex;
    }

    .nav-links li a {
        color: white !important;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 2rem;
        display: block;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .booking-card {
        padding: 2rem !important;
    }

    .gallery-item-premium {
        min-height: 300px;
    }

    /* Fixed About Video for Mobile */
    .about-main-image {
        height: 380px !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-extra-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .top-bar-left {
        width: 100%;
        justify-content: center !important;
        gap: 15px !important;
    }
}