/* ========================================
   Saket Nikunj HomeStay - Premium Styles
   A Peaceful Spiritual Stay in Vrindavan
   ======================================== */

/* CSS Custom Properties - Design System */
:root {
    /* Colors - Light & Premium Palette */
    --color-primary: #FFFEF7;
    /* Off-white / Ivory */
    --color-secondary: #FDF5E6;
    /* Soft Saffron / Cream */
    --color-tertiary: #F8EED9;
    /* Warm Beige */
    --color-accent-gold: #C9A962;
    /* Warm Gold */
    --color-accent-gold-light: #E8D5A3;
    --color-accent-gold-dark: #A68B4B;
    --color-accent-green: #7D9B76;
    /* Muted Green */
    --color-accent-green-light: #A5BFA0;
    --color-accent-saffron: #E67E22;
    /* Saffron */
    --color-accent-saffron-light: #F4A460;

    /* Text Colors */
    --color-text-primary: #2C2C2C;
    /* Deep Charcoal */
    --color-text-secondary: #4A4A4A;
    --color-text-light: #666666;
    --color-text-white: #FFFFFF;

    /* Background Colors */
    --color-bg-white: #FFFFFF;
    --color-bg-cream: #FFFEF7;
    --color-bg-warm: #FDF8F0;
    --color-bg-overlay: rgba(0, 0, 0, 0.4);
    --color-bg-overlay-light: rgba(255, 255, 255, 0.85);

    /* Glassmorphism & Glow */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --glow-gold: 0 0 20px rgba(201, 169, 98, 0.6);
    --glow-green: 0 0 20px rgba(37, 211, 102, 0.5);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 45px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 25px rgba(201, 169, 98, 0.3);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    /* Font Sizes - Increased for Modern Feel */
    --text-xs: 0.875rem;
    --text-sm: 1rem;
    --text-base: 1.125rem;
    /* ~18px */
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;
    --text-5xl: 3.75rem;
    --text-6xl: 4.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6.5rem;
    --space-5xl: 9rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slower: 0.8s ease;

    /* Layout */
    --max-width: 1280px;
    --nav-height: 80px;
}

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

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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* Glassmorphism Utilities */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glow-hover {
    transition: var(--transition-normal);
}

.glow-hover:hover {
    box-shadow: var(--glow-gold);
    transform: translateY(-5px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--color-accent-gold);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
    color: var(--color-text-white);
    box-shadow: var(--shadow-gold);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
    background: linear-gradient(135deg, var(--color-accent-gold-dark), var(--color-accent-gold));
}

.btn-secondary {
    background: var(--color-tertiary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-accent-gold);
    box-shadow: none;
    display: inline-flex;
    opacity: 1;
    visibility: visible;
}

.btn-secondary:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-white);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent-gold);
    transform: none;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition-normal);
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-white);
    transition: var(--transition-normal);
}

.logo-tagline {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--color-text-primary);
}

.nav-cta {
    background: var(--color-accent-gold);
    color: var(--color-text-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--color-accent-gold-dark);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-white);
    transition: var(--transition-normal);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text-white);
    transition: var(--transition-normal);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--color-text-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--space-xl);
}

.hero-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold-light);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 500;
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

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

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

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content {
    padding-right: var(--space-xl);
}

.about-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-cream);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.about-feature:hover {
    background: var(--color-tertiary);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.about-feature span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
    color: var(--color-text-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 600;
}

.badge-text {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms {
    background: var(--color-bg-warm);
}

.room-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.room-gallery {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.gallery-main {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--space-lg);
}

.gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-thumb {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 3px solid transparent;
    transition: var(--transition-normal);
    cursor: pointer;
}

.gallery-thumb.active {
    border-color: var(--color-accent-gold);
}

.gallery-thumb:hover {
    border-color: var(--color-accent-gold-light);
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.room-details {
    background: var(--color-bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.room-type {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-sm);
}

.room-name {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.room-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-tertiary);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.spec-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-green);
}

.room-amenities,
.room-bathroom {
    margin-bottom: var(--space-xl);
}

.room-amenities h4,
.room-bathroom h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.amenities-list,
.bathroom-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.amenities-list li,
.bathroom-list li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding-left: var(--space-lg);
    position: relative;
}

.amenities-list li::before,
.bathroom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent-gold);
    border-radius: 50%;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities {
    background: var(--color-bg-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.amenity-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.amenity-card:hover {
    background: var(--color-bg-white);
    border-color: var(--color-accent-gold-light);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--color-tertiary);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--color-accent-gold-light), var(--color-accent-gold));
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent-gold);
    transition: var(--transition-normal);
}

.amenity-card:hover .amenity-icon svg {
    color: var(--color-text-white);
}

.amenity-title {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.amenity-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ========================================
   DINING SECTION
   ======================================== */
.dining {
    background: var(--color-bg-warm);
}

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.dining-image .image-wrapper img {
    height: 550px;
}

.dining-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.dining-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.dining-feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.dining-feature:hover {
    box-shadow: var(--shadow-soft);
    background: var(--color-bg-white);
}

.dining-feature svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.dining-feature h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.dining-feature p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

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

/* Unified Location Card */
.location-unified-card {
    display: flex;
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-map-container {
    flex: 1;
    min-height: 100%;
}

.location-map-container iframe {
    display: block;
    height: 100%;
    width: 100%;
    border: none;
}

.location-info-container {
    flex: 1;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.location-address h3,
.nearby-places h3 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-md);
}

.location-address p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.location-details-grid {
    display: grid;
    gap: var(--space-xl);
}

.place-name {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.places-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-tertiary);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}


.location-address h3,
.nearby-places h3 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-accent-gold);
}

.location-address p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.places-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.places-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-tertiary);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.places-list li:last-child {
    border-bottom: none;
}

.places-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.places-list .distance {
    margin-left: auto;
    font-weight: 500;
    color: var(--color-accent-gold);
}

/* ========================================
   HOUSE RULES SECTION
   ======================================== */
.house-rules {
    background: var(--color-bg-warm);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.rule-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.rule-card:hover {
    /* No hover effect as requested */
    background: var(--color-bg-white);
    transform: none;
    box-shadow: var(--shadow-soft);
}

.rule-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    background: var(--color-tertiary);
    border-radius: 50%;
}

.rule-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.rule-icon.check {
    background: rgba(125, 155, 118, 0.15);
}

.rule-icon.check svg {
    color: var(--color-accent-green);
}

.rule-icon.warning {
    background: rgba(230, 126, 34, 0.1);
}

.rule-icon.warning svg {
    color: var(--color-accent-saffron);
}

.rule-card h3 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.rule-card p {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

/* ========================================
   HOST SECTION
   ======================================== */
.host {
    background: var(--color-bg-white);
}

.host-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
    border-radius: var(--radius-2xl);
}

.host-content .section-title {
    margin-bottom: var(--space-lg);
}

.host-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.host-languages h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.language-tags {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.language-tag {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking {
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-secondary) 100%);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-medium);
}

/* Auth Section */
.auth-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    background: var(--color-bg-cream);
    padding: var(--space-xs);
    border-radius: var(--radius-md);
}

.auth-tab {
    flex: 1;
    padding: var(--space-md);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    color: var(--color-text-secondary);
}

.auth-tab.active {
    background: var(--color-bg-white);
    color: var(--color-accent-gold);
    box-shadow: var(--shadow-soft);
}

.auth-form,
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hidden {
    display: none !important;
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid var(--color-tertiary);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    background: var(--color-bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background: var(--color-bg-white);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Booking Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-tertiary);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--color-tertiary);
}

.progress-step:last-child::after {
    display: none;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-tertiary);
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-light);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-accent-gold);
    color: var(--color-text-white);
}

.step-label {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--color-accent-gold);
    font-weight: 500;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
}

.form-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.form-buttons .btn {
    flex: 1;
}

/* Booking Summary */
.booking-summary {
    background: var(--color-bg-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-tertiary);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.summary-value {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: var(--space-2xl);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    background: rgba(125, 155, 118, 0.15);
    border-radius: 50%;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent-green);
}

.booking-confirmation h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.booking-confirmation p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--color-bg-white);
    padding-top: var(--space-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-tertiary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
}

.contact-icon.whatsapp svg {
    color: #25D366;
}

.contact-content h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.contact-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.contact-content a:hover {
    color: var(--color-accent-gold);
}

.contact-form-wrapper {
    background: var(--color-bg-cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-text-primary);
    color: var(--color-text-white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
    font-size: var(--text-xl);
    color: var(--color-accent-gold-light);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-gold-light);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-accent-gold-light);
}

.footer-contact p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.footer-contact a:hover {
    color: var(--color-accent-gold-light);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--color-bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.gallery-item:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: 36px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--color-text-white);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* ========================================
   RESPONSIVE DESIGN (Mobile First Approach)
   ======================================== */

@media (max-width: 1200px) {
    :root {
        --text-5xl: 3.25rem;
    }

    .dining-grid,
    .location-grid,
    .contact-grid {
        gap: var(--space-2xl);
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --text-5xl: 3rem;
        --text-4xl: 2.5rem;
    }

    .about-grid,
    .dining-grid,
    .location-grid,
    .contact-grid,
    .room-showcase {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-image {
        margin-top: var(--space-xl);
    }

    .room-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .room-gallery {
        position: static;
        margin-bottom: var(--space-lg);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-main {
        width: 100%;
    }

    .gallery-thumbs {
        width: 100%;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .booking-container {
        padding: var(--space-xl);
        border-radius: var(--radius-xl);
    }
}

/* Tablet Portrait & Mobile */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.25rem;
        --section-padding: var(--space-2xl);
    }

    .section {
        padding: var(--space-2xl) 0 !important;
    }

    .section-header {
        margin-bottom: var(--space-xl) !important;
        padding-top: var(--space-md);
    }

    .container {
        padding: 0 var(--space-lg);
    }

    /* Navbar Mobile Refinements */
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background: var(--color-text-primary);
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
        background: var(--color-text-primary);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width on mobile for better UX */
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-4xl) var(--space-xl);
        gap: var(--space-lg);
        transition: right var(--transition-normal);
        box-shadow: none;
        z-index: 1001;
        /* Behind toggle button */
    }

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

    .nav-link {
        color: var(--color-text-primary);
        font-size: var(--text-xl);
        /* Larger links for touch */
        padding: var(--space-sm) 0;
        border-bottom: none;
        /* Cleaner look */
    }

    .nav-cta {
        margin-top: var(--space-lg);
        width: 100%;
        text-align: center;
        padding: var(--space-md);
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        height: auto;
        padding-top: calc(var(--nav-height) + var(--space-2xl));
        padding-bottom: var(--space-3xl);
        align-items: flex-start;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: var(--space-xl);
    }

    .hero-scroll {
        display: none;
    }

    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-progress {
        flex-direction: column;
        gap: var(--space-md);
    }

    .progress-step::after {
        display: none;
    }

    .progress-step {
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--space-md);
    }

    /* Grids to Single Column */
    .about-features,
    .room-specs,
    .amenities-grid,
    .footer-grid,
    .rules-grid,
    .gallery-thumbs,
    .form-buttons {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .form-buttons {
        flex-direction: column-reverse;
        gap: var(--space-md);
    }

    /* Specific overrides */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for gallery on tablet */
    }

    /* Dining Image Order */
    .dining-grid .image-wrapper {
        order: -1;
        /* Image first on mobile */
    }

    /* Location Unified Card */
    .location-unified-card {
        flex-direction: column;
    }

    .location-map-container {
        height: 300px;
        min-height: 300px;
    }

    .location-info-container {
        padding: var(--space-lg);
    }

    /* Room Gallery */
    .room-gallery {
        margin-bottom: var(--space-md);
    }

    .gallery-main img {
        height: 280px;
        /* Shorter image for small phones to show text sooner */
    }

    .room-details {
        text-align: center;
        padding: 0 var(--space-xs);
    }

    .room-specs {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        border-bottom: 1px solid var(--color-tertiary);
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .spec-item {
        justify-content: center;
    }

    .amenities-list,
    .bathroom-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto var(--space-lg);
        text-align: left;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        /* Keep thumbs 4 cols */
    }

    /* Footer Alignment */
    .footer-grid {
        text-align: center;
    }

    .footer-brand {
        margin-bottom: var(--space-lg);
    }

    /* Contact Section Centering */
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-item {
        text-align: left;
        width: 100%;
    }

    .contact-form .form-group {
        align-items: center;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
        --nav-height: 60px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-logo .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-label {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-md);
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .booking-container {
        padding: var(--space-md);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   GALLERY LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--color-text-white);
    font-size: 2rem;
    padding: var(--space-md);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2001;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lightbox-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Mobile adjustments for Lightbox */
@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border: none;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.3);
        border: none;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        /* Allow space for controls */
        margin: auto;
    }
}


@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}