/* ============================================
   HACIENDA MARRAKECH - LUXURY DESIGN
   Enhanced Premium Styling
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES & VARIABLES
   ============================================ */
:root {
    /* Luxury Color Palette */
    --color-primary: #8B6914;
    --color-primary-dark: #6B4E0F;
    --color-primary-light: #B8860B;
    --color-gold: #D4AF37;
    --color-gold-light: #F4E4B7;
    --color-bronze: #CD7F32;
    --color-copper: #B87333;
    
    /* Neutral Colors */
    --color-charcoal: #1A1A1A;
    --color-dark-brown: #2C1810;
    --color-warm-gray: #4A4A4A;
    --color-light-gray: #F5F5F0;
    --color-cream: #FFF8E7;
    --color-ivory: #FFFFF0;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-luxury: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    line-height: 1.7;
    background: var(--color-ivory);
    overflow-x: hidden;
}

/* Selection Color */
::selection {
    background: var(--color-gold);
    color: white;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

em {
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--color-gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.luxury-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 2rem auto;
    position: relative;
}

.luxury-divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-gold);
    background: var(--color-ivory);
    padding: 0 0.5rem;
    font-size: 0.8rem;
}

/* Ornamental Corner */
.ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.ornament-tl {
    top: 0;
    left: 0;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.ornament-tr {
    top: 0;
    right: 0;
    border-top: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.ornament-bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.ornament-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

/* ============================================
   HEADER - LUXURY NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-luxury);
    padding: 2rem 0;
    background: transparent;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition-luxury);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0);
}

header.scrolled::before {
    opacity: 1;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 400;
    text-decoration: none;
    transition: all var(--transition-base);
    letter-spacing: 0.05em;
    position: relative;
}

header:not(.scrolled) .logo {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

header.scrolled .logo {
    color: var(--color-ivory);
}

.logo em {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.logo:hover::after {
    width: 100%;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

nav a:hover::before {
    width: 100%;
}

header:not(.scrolled) nav a {
    color: rgba(255, 255, 255, 0.9);
}

header:not(.scrolled) nav a:hover {
    color: white;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

header.scrolled nav a {
    color: var(--color-light-gray);
}

header.scrolled nav a:hover {
    color: var(--color-gold);
}

.btn-reserve {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-reserve::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.6s;
}

.btn-reserve:hover::before {
    left: 100%;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.menu-toggle:hover {
    background: var(--color-gold);
    color: white;
}

/* ============================================
   HERO SECTION - LUXURY
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero/hero-bg.JPG') center/cover;
    animation: slowZoom 30s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 105, 20, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(205, 127, 50, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, rgba(44, 24, 16, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 3rem;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold-light);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero h1 em {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-family: var(--font-elegant);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    text-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.5));
}

.hero p {
    font-size: 1.35rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }
}

.btn {
    padding: 1.25rem 3rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-luxury);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator::before {
    content: '↓';
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.7;
}

/* ============================================
   SECTION STYLES - LUXURY
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h2 em {
    font-family: var(--font-elegant);
    font-style: italic;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

.text-center h2,
.text-center .section-label {
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-label {
    justify-content: center;
}

.max-w-3xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-cream) 100%);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    transition: all var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-warm-gray);
    font-weight: 300;
}

.location-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-luxury);
}

.location-image:hover img {
    transform: scale(1.05);
}

.location-image::before {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.location-image::after {
    content: '';
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(205, 127, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   ACCOMMODATIONS SECTION
   ============================================ */
.accommodations {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
}

.grid-2-auto {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .grid-2-auto {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    position: relative;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-luxury);
    height: 100%;
    background: var(--color-charcoal);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.card:hover .card-image img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.7) 40%,
        rgba(26, 26, 26, 0.3) 70%,
        transparent 100%
    );
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition-base);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
}

.card-subtitle {
    color: var(--color-gold-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   DINING SECTION
   ============================================ */
.dining {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-dark-brown) 0%, var(--color-charcoal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.dining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.dining::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.grid-2-dining {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2-dining {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-2-dining.reverse {
    direction: rtl;
}

.grid-2-dining.reverse > * {
    direction: ltr;
}

.dining .section-label {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.dining h2 {
    color: white;
}

.dining h2 em {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dining .section-text {
    color: rgba(255, 255, 255, 0.8);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.image-grid-item {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: transform var(--transition-base);
}

.image-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.image-grid-item:hover::before {
    opacity: 1;
}

.image-grid-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.image-grid-item:hover img {
    transform: scale(1.1);
}

.image-grid-item:nth-child(2) {
    margin-top: 3rem;
}

.image-grid-item:nth-child(3) {
    margin-top: -3rem;
}

.dining-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-base);
}

.dining-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.dining-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(205, 127, 50, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--color-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.dining-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    font-family: var(--font-serif);
}

.dining-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   WELLNESS SECTION
   ============================================ */
.wellness {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 50%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.wellness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.wellness::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wellness-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-luxury);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.wellness-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold);
}

.wellness-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.wellness-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.wellness-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.wellness-card:hover .wellness-card-image img {
    transform: scale(1.15);
}

.wellness-card-body {
    padding: 2.5rem;
}

.wellness-card-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4rem auto 2rem;
    font-size: 2.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 2;
    border: 4px solid white;
}

.wellness-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-serif);
}

.wellness-card p {
    color: var(--color-warm-gray);
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
}

.wellness-services {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
    padding: 4rem;
    max-width: 64rem;
    margin: 0 auto;
    border: 2px solid var(--color-gold);
    position: relative;
}

.wellness-services::before,
.wellness-services::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
}

.wellness-services::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.wellness-services::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.wellness-services h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-serif);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item {
    border-left: 4px solid var(--color-gold);
    padding-left: 2rem;
    transition: all var(--transition-base);
}

.service-item:hover {
    border-left-width: 6px;
    padding-left: 2.5rem;
}

.service-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.service-item p {
    color: var(--color-warm-gray);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--spacing-xl) 0;
    background: white;
}

.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .grid-2-contact {
        grid-template-columns: 1fr 1fr;
    }
}

.contact h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
    font-family: var(--font-serif);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-light-gray);
    border-radius: 4px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.contact-info:hover {
    background: white;
    border-color: var(--color-gold);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.contact-info div h4 {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-info div p {
    color: var(--color-warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    border-radius: 4px;
    padding: 3rem;
    color: white;
    margin-bottom: 0;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.info-box h4 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    position: relative;
    z-index: 1;
}

.info-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.info-box .hours {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .form-group.grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

input,
textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-light-gray);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 500px;
    height: 500px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--color-dark-brown) 0%, var(--color-charcoal) 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2.5fr 1fr 1.5fr;
    }
}

/* Footer About Section */
.footer-about h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: var(--font-elegant);
}

.footer-about h3 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 500px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

/* Footer Columns */
.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.875rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--transition-base);
    color: var(--color-gold);
}

.footer-column a:hover {
    color: var(--color-gold);
    padding-left: 20px;
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    transition: all var(--transition-base);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.footer-contact-item span:not(.footer-icon) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Divider */
.footer-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-divider {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-base);
    border-radius: 4px;
    border-left: 3px solid transparent;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.mobile-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    transform: translateX(10px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about p {
        max-width: 100%;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    background-size: 1000px 100%;
}

/* Fade In Animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   ICON STYLING FOR PNG IMAGES
   ============================================ */

/* Section Label Icons */
.section-label img.section-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(1000%) hue-rotate(359deg) brightness(92%) contrast(88%);
}

/* Hero Location Icon */
.hero-location img.hero-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(88%) sepia(45%) saturate(500%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

/* Feature Icons */
.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(1000%) hue-rotate(359deg) brightness(92%) contrast(88%);
}

/* Card Icons */
.card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Dining Feature Icons */
.dining-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(88%) sepia(45%) saturate(500%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

/* Wellness Card Icons */
.wellness-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(1000%) hue-rotate(359deg) brightness(92%) contrast(88%);
}

/* Contact Info Icons */
.contact-info-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(1000%) hue-rotate(359deg) brightness(92%) contrast(88%);
}

/* Footer Icons */
.footer-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(88%) sepia(45%) saturate(500%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

/* Icon Hover Effects */
.feature:hover .feature-icon img,
.card:hover .card-icon img,
.wellness-card:hover .wellness-card-icon img {
    transform: scale(1.1);
    transition: transform var(--transition-base);
}

.dining-feature:hover .dining-feature-icon img {
    transform: rotate(5deg) scale(1.1);
    transition: transform var(--transition-base);
}

.contact-info:hover .contact-info-icon img {
    transform: scale(1.15);
    transition: transform var(--transition-base);
}

.footer-contact-item:hover .footer-icon img {
    transform: scale(1.1);
    transition: transform var(--transition-base);
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsapp-bounce 2s ease-in-out 3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: whatsapp-pulse 1.5s infinite;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
}

/* Animation Keyframes */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Accessibility */
.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 3px;
}

.whatsapp-float:active {
    transform: scale(0.95);
}


/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.875rem;
}

.lang-current:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(205, 127, 50, 0.2) 100%);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 180px;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
    font-size: 0.9375rem;
    text-align: left;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
    color: var(--color-gold);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(205, 127, 50, 0.15) 100%);
    color: var(--color-gold);
    font-weight: 600;
}

.lang-option .lang-flag {
    width: 28px;
    height: 28px;
}

.lang-option span {
    flex: 1;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        width: 100%;
        margin-top: 1rem;
    }
    
    .lang-current {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .lang-dropdown {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .lang-current {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .lang-flag {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Preview Grid - 1 large + 3 smaller images */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Full Gallery Grid - shown when "View All" is clicked */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .gallery-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-luxury);
    box-shadow: var(--shadow-md);
    background: var(--color-charcoal);
}

/* Preview grid item sizes */
.gallery-preview-grid .gallery-item-large {
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
    min-height: 500px;
}

.gallery-preview-grid .gallery-item-small {
    aspect-ratio: 1/1;
    min-height: 240px;
}

@media (min-width: 768px) {
    .gallery-preview-grid .gallery-item-large {
        min-height: 600px;
    }
    
    .gallery-preview-grid .gallery-item-small {
        min-height: 290px;
    }
}

/* Full grid items */
.gallery-full-grid .gallery-item-grid {
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
    display: block;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark-brown) 100%);
}

/* Progressive image loading */
.gallery-image[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.4) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Dark overlay for count image */
.gallery-overlay-dark {
    background: rgba(26, 26, 26, 0.7);
    opacity: 1;
}

.gallery-item-with-count:hover .gallery-overlay-dark {
    background: rgba(26, 26, 26, 0.85);
}

/* Count overlay styling */
.gallery-count-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-align: center;
}

.gallery-count-overlay svg {
    width: 48px;
    height: 48px;
    stroke: white;
    opacity: 0.9;
}

.gallery-count-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .gallery-count-overlay svg {
        width: 36px;
        height: 36px;
    }
    
    .gallery-count-number {
        font-size: 1.5rem;
    }
}

.gallery-zoom {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    transform: scale(0.8);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--color-gold);
    color: white;
    transform: scale(1.1);
}

.gallery-zoom:active {
    transform: scale(0.95);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

/* View All Photos Button */
.gallery-view-all-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.btn-gallery-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #8B6914;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    font-family: var(--font-sans);
}

.btn-gallery-view-all:hover {
    background: #6B4E0F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gallery-view-all:active {
    transform: translateY(0);
}

.btn-gallery-view-all svg {
    transition: transform var(--transition-base);
    stroke-width: 2.5;
}

.btn-gallery-view-all:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-counter {
        bottom: -2.5rem;
        font-size: 0.875rem;
        padding: 0.375rem 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .btn-gallery-load {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}