/* ============================================
   Hari Mahal Palace - Luxury Heritage Hotel
   Ultra-Premium Design System
   ============================================ */

/* CSS Variables - Royal Color Palette */
:root {
    /* Primary Colors */
    --royal-ivory: #FAF7F2;
    --sandstone-beige: #D4C4A8;
    --palace-white: #FFFFFF;
    --antique-gold: #C9A962;
    --deep-maroon: #722F37;
    --emerald-green: #2D5A4A;
    --charcoal-black: #1A1A1A;
    
    /* Extended Palette */
    --gold-light: #E8D5A3;
    --gold-dark: #9A7B3D;
    --maroon-light: #8B3A42;
    --maroon-dark: #5C2027;
    --cream: #F5F0E8;
    --warm-gray: #8A8279;
    --sand: #C9B896;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-luxury: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--royal-ivory);
    color: var(--charcoal-black);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--antique-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--antique-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.sound-toggle button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--antique-gold);
    background: var(--palace-white);
    color: var(--antique-gold);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-toggle button:hover {
    background: var(--antique-gold);
    color: var(--palace-white);
    transform: scale(1.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--antique-gold);
    color: var(--palace-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--palace-white);
    border: 1px solid var(--palace-white);
}

.btn-secondary:hover {
    background: var(--palace-white);
    color: var(--charcoal-black);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Image Placeholders with Royal Gradients */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sandstone-beige) 0%, var(--cream) 50%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 47, 55, 0.05) 0%, transparent 50%);
}

.image-placeholder::after {
    content: '\f302';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--antique-gold);
    opacity: 0.3;
}

/* Specific Image Placeholders */
.palace-1930 { background: linear-gradient(135deg, #C9B896 0%, #D4C4A8 50%, #E8D5A3 100%); }
.palace-1950 { background: linear-gradient(135deg, #D4C4A8 0%, #E8D5A3 50%, #C9A962 100%); }
.palace-2000 { background: linear-gradient(135deg, #E8D5A3 0%, #C9A962 50%, #B8966A 100%); }
.palace-today { background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #FAF7F2 100%); }

.suite-jaipur { background: linear-gradient(135deg, #E8D5A3 0%, #F5F0E8 50%, #D4C4A8 100%); }
.suite-jodhpur-detail { background: linear-gradient(135deg, #2D5A4A 0%, #3D7A6A 50%, #4D9A8A 100%); }
.suite-udaipur-detail { background: linear-gradient(135deg, #E8E8E8 0%, #F5F5F5 50%, #FFFFFF 100%); }
.suite-shekhawati-detail { background: linear-gradient(135deg, #D4A574 0%, #E8C9A0 50%, #F5E6D3 100%); }

.dining-royal { background: linear-gradient(135deg, #722F37 0%, #8B3A42 50%, #A54B54 100%); }
.culture-evening { background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #3A3A3A 100%); }
.pool-gardens { background: linear-gradient(135deg, #2D5A4A 0%, #4A8A7A 50%, #6ABAAA 100%); }

.wedding-hero { background: linear-gradient(135deg, #722F37 0%, #C9A962 50%, #E8D5A3 100%); }
.wedding-1 { background: linear-gradient(135deg, #E8D5A3 0%, #F5E6D3 50%, #FAF7F2 100%); }
.wedding-2 { background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #F5F0E8 100%); }
.wedding-3 { background: linear-gradient(135deg, #722F37 0%, #8B3A42 50%, #A54B54 100%); }

.exp-heritage { background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #F5F0E8 100%); }
.exp-folk { background: linear-gradient(135deg, #722F37 0%, #8B3A42 50%, #A54B54 100%); }
.exp-tours { background: linear-gradient(135deg, #D4C4A8 0%, #E8D5A3 50%, #C9A962 100%); }
.exp-dining { background: linear-gradient(135deg, #2D5A4A 0%, #4A8A7A 50%, #6ABAAA 100%); }
.exp-photo { background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 50%, #5A5A5A 100%); }

.gallery-arch-1 { background: linear-gradient(135deg, #D4C4A8 0%, #C9B896 50%, #B8A684 100%); }
.gallery-arch-2 { background: linear-gradient(135deg, #C9B896 0%, #D4C4A8 50%, #E8D5A3 100%); }
.gallery-suite-1 { background: linear-gradient(135deg, #E8D5A3 0%, #F5F0E8 50%, #FAF7F2 100%); }
.gallery-suite-2 { background: linear-gradient(135deg, #F5F0E8 0%, #E8D5A3 50%, #D4C4A8 100%); }
.gallery-dining-1 { background: linear-gradient(135deg, #722F37 0%, #8B3A42 50%, #A54B54 100%); }
.gallery-dining-2 { background: linear-gradient(135deg, #2D5A4A 0%, #4A8A7A 50%, #6ABAAA 100%); }
.gallery-wedding-1 { background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #F5E6D3 100%); }
.gallery-garden-1 { background: linear-gradient(135deg, #2D5A4A 0%, #4A8A7A 50%, #6ABAAA 100%); }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--palace-white);
    transition: color var(--transition-medium);
}

.nav.scrolled .nav-logo {
    color: var(--charcoal-black);
}

.logo-crest {
    width: 50px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: var(--palace-white);
    position: relative;
    transition: color var(--transition-medium);
}

.nav.scrolled .nav-link {
    color: var(--charcoal-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--antique-gold);
    transition: width var(--transition-medium);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--antique-gold);
    color: var(--palace-white);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--palace-white);
    transition: all var(--transition-medium);
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal-black);
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #3A3A3A 100%);
    position: relative;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.1) 50%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--palace-white);
    z-index: 1;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 169, 98, 0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--antique-gold);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    color: var(--antique-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--palace-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--antique-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-locations {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--palace-white);
    font-size: 0.75rem;
    z-index: 1;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-item i {
    color: var(--antique-gold);
}

.location-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Story Section
   ============================================ */
.story {
    padding: var(--space-2xl) 0;
    background: var(--royal-ivory);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.timeline {
    position: relative;
    padding: var(--space-lg) 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--antique-gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-luxury);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.timeline-item:nth-child(even) .timeline-content {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-text {
    direction: ltr;
}

.timeline-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--antique-gold);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--antique-gold);
    transform: translate(10px, 10px);
    z-index: -1;
}

.image-frame .image-placeholder {
    aspect-ratio: 4/3;
}

.timeline-text {
    padding: var(--space-md);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.timeline-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--charcoal-black);
}

.timeline-text p {
    color: var(--warm-gray);
    line-height: 1.8;
}

/* ============================================
   Explore Section
   ============================================ */
.explore {
    padding: var(--space-2xl) 0;
    background: var(--charcoal-black);
    color: var(--palace-white);
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.explore-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.explore-header .section-title {
    color: var(--palace-white);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.explore-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.explore-card:hover {
    border-color: var(--antique-gold);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image .image-placeholder {
    transition: transform var(--transition-slow);
}

.explore-card:hover .card-image .image-placeholder {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
}

.card-content {
    padding: 2rem;
}

.card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--antique-gold);
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--antique-gold);
    font-size: 0.7rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--antique-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: gap var(--transition-fast);
}

.card-link:hover {
    gap: 1rem;
}

/* ============================================
   Weddings Section
   ============================================ */
.weddings {
    padding: var(--space-2xl) 0;
    background: var(--royal-ivory);
}

.weddings-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.weddings-text {
    padding-right: var(--space-lg);
}

.weddings-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.wedding-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-lg);
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--palace-white);
    border: 1px solid var(--sandstone-beige);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    border-color: var(--antique-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.weddings-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    margin-bottom: 1rem;
}

.gallery-main .image-placeholder {
    aspect-ratio: 4/3;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
}

.thumb {
    flex: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: var(--antique-gold);
}

.thumb .image-placeholder {
    aspect-ratio: 16/9;
}

/* ============================================
   Suites Section
   ============================================ */
.suites {
    padding: var(--space-2xl) 0;
    background: var(--palace-white);
}

.suites-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.suites-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.suites-showcase {
    position: relative;
}

.suite-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.suite-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--sandstone-beige);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-medium);
    color: var(--charcoal-black);
}

.suite-btn:hover,
.suite-btn.active {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--palace-white);
}

.suite-display {
    position: relative;
}

.suite-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.suite-slide.active {
    display: grid;
    animation: fadeIn 0.6s ease;
}

.suite-image {
    position: relative;
}

.suite-image .image-placeholder {
    aspect-ratio: 4/3;
}

.suite-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--antique-gold);
    color: var(--palace-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.suite-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.suite-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.suite-description {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.suite-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.suite-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--charcoal-black);
}

.suite-features i {
    color: var(--antique-gold);
}

.suite-amenities {
    margin-bottom: 2rem;
}

.suite-amenities h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.suite-amenities ul {
    list-style: none;
}

.suite-amenities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.suite-amenities li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--antique-gold);
    font-size: 0.75rem;
}

.suite-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.suite-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--charcoal-black);
}

.suite-price span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* ============================================
   Experiences Section
   ============================================ */
.experiences {
    padding: var(--space-2xl) 0;
    background: var(--royal-ivory);
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experiences-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.experiences-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2rem;
}

.experiences-carousel::-webkit-scrollbar {
    display: none;
}

.experience-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--palace-white);
    border: 1px solid var(--sandstone-beige);
    transition: all var(--transition-medium);
}

.experience-card:hover {
    border-color: var(--antique-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.experience-image {
    height: 250px;
    overflow: hidden;
}

.experience-image .image-placeholder {
    transition: transform var(--transition-slow);
}

.experience-card:hover .experience-image .image-placeholder {
    transform: scale(1.05);
}

.experience-content {
    padding: 2rem;
    position: relative;
}

.experience-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--antique-gold);
    opacity: 0.2;
    line-height: 1;
}

.experience-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.experience-content p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-link {
    color: var(--antique-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.experience-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--antique-gold);
    transition: width var(--transition-medium);
}

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

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--sandstone-beige);
    background: transparent;
    color: var(--charcoal-black);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--palace-white);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--charcoal-black);
    color: var(--palace-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-header .section-title {
    color: var(--palace-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--palace-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .image-placeholder {
    aspect-ratio: 1;
    transition: transform var(--transition-slow);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.wide .image-placeholder {
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.tall .image-placeholder {
    aspect-ratio: 1/2;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Location Section
   ============================================ */
.location {
    padding: var(--space-2xl) 0;
    background: var(--palace-white);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.location-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.location-address {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--space-lg);
    padding: 1.5rem;
    background: var(--royal-ivory);
    border-left: 3px solid var(--antique-gold);
}

.location-address i {
    font-size: 1.5rem;
    color: var(--antique-gold);
}

.location-address h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-address p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.nearby-attractions h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.attraction-item {
    padding: 1rem;
    border: 1px solid var(--sandstone-beige);
    transition: all var(--transition-medium);
}

.attraction-item:hover {
    border-color: var(--antique-gold);
    background: var(--royal-ivory);
}

.attraction-distance {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--antique-gold);
    color: var(--palace-white);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.attraction-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.attraction-item p {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.location-map {
    position: relative;
}

.map-container {
    position: relative;
    border: 1px solid var(--sandstone-beige);
    padding: 1rem;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--antique-gold);
    transform: translate(10px, 10px);
    z-index: -1;
}

.map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sandstone-beige) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-black);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--royal-ivory);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: var(--space-lg);
    background: var(--palace-white);
    border: 1px solid var(--sandstone-beige);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-quote {
    margin-bottom: var(--space-lg);
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-quote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--charcoal-black);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--antique-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--palace-white);
    font-weight: 600;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--antique-gold);
    font-size: 0.85rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--sandstone-beige);
    background: transparent;
    color: var(--charcoal-black);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--palace-white);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sandstone-beige);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.dot.active {
    background: var(--antique-gold);
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
    padding: var(--space-2xl) 0;
    background: var(--charcoal-black);
    color: var(--palace-white);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.booking-header .section-title {
    color: var(--palace-white);
}

.booking-header p {
    color: rgba(255, 255, 255, 0.7);
}

.booking-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--antique-gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--palace-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form .btn {
    width: 100%;
    justify-content: center;
}

.booking-contact {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.booking-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.booking-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--antique-gold);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--charcoal-black);
    color: var(--palace-white);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-crest {
    width: 60px;
    height: 60px;
    border: 2px solid var(--antique-gold);
    color: var(--antique-gold);
}

.footer-logo .logo-text {
    color: var(--palace-white);
    font-size: 1.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--palace-white);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--charcoal-black);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--antique-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--antique-gold);
}

.footer-newsletter h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--antique-gold);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-right: none;
    color: var(--palace-white);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--antique-gold);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background: var(--antique-gold);
    border: none;
    color: var(--palace-white);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--antique-gold);
}

/* ============================================
   Sticky Booking Widget
   ============================================ */
.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--palace-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.sticky-booking.visible {
    transform: translateY(0);
}

.sticky-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sticky-dates {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.sticky-field {
    display: flex;
    flex-direction: column;
}

.sticky-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 0.25rem;
}

.sticky-field input,
.sticky-field select {
    padding: 0.75rem;
    border: 1px solid var(--sandstone-beige);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal-black);
    background: var(--royal-ivory);
}

.sticky-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--sandstone-beige);
    background: transparent;
    color: var(--charcoal-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.sticky-close:hover {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--palace-white);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-locations {
        display: none;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        direction: ltr;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .weddings-content {
        grid-template-columns: 1fr;
    }
    
    .suite-slide.active {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .wedding-features {
        grid-template-columns: 1fr;
    }
    
    .suite-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .suite-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .sticky-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sticky-dates {
        flex-direction: column;
        width: 100%;
    }
    
    .sticky-field {
        width: 100%;
    }
    
    .sticky-field input,
    .sticky-field select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .timeline-year {
        font-size: 2rem;
    }
    
    .experience-card {
        flex: 0 0 280px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}