/* 
 * Tarihi Kumbaba Oteli - Oda Tanıtım Sayfası Tasarım Sistemi
 * Tasarım İlhamı: Paloma Hotels & Akdeniz Butik Esintisi
 */

/* Custom Properties / Design Tokens */
:root {
    /* Base Design Variables (Default: Sessiz Lüks & Editöryal) */
    --color-primary: #D5C3A6; /* Saten Şampanya Altını */
    --color-primary-dark: #B8A282;
    --color-primary-light: #F7F5F0;
    --color-bg-light: #F7F6F2; /* Keten Beyazı / Krem */
    --color-bg-pure: #FAF9F6;
    --color-text-dark: #0B1215; /* Derin Lacivert / Mürekkep Siyahı */
    --color-text-medium: #4A5559;
    --color-text-light: #7A8A90;
    --color-border: #E8E6E0;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --border-radius-card: 0px;
    --border-radius-btn: 0px;
    --shadow-card: none;
    --shadow-card-hover: none;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-out;
    --shadow-premium: none;
    --shadow-hover: none;
}

/* Theme 2: Modern Minimalizm (Contemporary & Sleek) */
body.theme-minimalist {
    --color-primary: #000000; /* Keskin Siyah */
    --color-primary-dark: #222222;
    --color-primary-light: #EBEBEB;
    --color-bg-light: #F5F5F5; /* Soğuk Açık Gri */
    --color-bg-pure: #FFFFFF;  /* Saf Beyaz */
    --color-text-dark: #000000;
    --color-text-medium: #222222;
    --color-text-light: #666666;
    --color-border: #111111; /* Siyah Çizgi */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --border-radius-card: 0px;
    --border-radius-btn: 0px;
    --shadow-card: none;
    --shadow-card-hover: none;
    --shadow-premium: none;
    --shadow-hover: none;
}

/* Theme 3: Tarihi Klasik & Miras (Heritage Elegance) */
body.theme-heritage {
    --color-primary: #1B3B2B; /* Saray Yeşili */
    --color-primary-dark: #11251B;
    --color-primary-light: #EAEFEA;
    --color-bg-light: #F9F6F0; /* Parşömen Beji */
    --color-bg-pure: #FFFFFF;
    --color-text-dark: #112217;
    --color-text-medium: #334A3C;
    --color-text-light: #7A9082;
    --color-border: #E2DAC9; /* Altınımsı Yumuşak Bej */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    
    --border-radius-card: 16px;
    --border-radius-btn: 50px; /* Yuvarlak Butonlar */
    --shadow-card: 0 10px 30px rgba(27, 59, 43, 0.03);
    --shadow-card-hover: 0 20px 40px rgba(27, 59, 43, 0.08);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(27, 59, 43, 0.08);
}

/* Theme 4: Cozy Lodge & Retro (Sıcak Ahşap & Nostalji) */
body.theme-cozy {
    --color-primary: #C05C3E; /* Sıcak Kiremit Kırmızısı */
    --color-primary-dark: #A04427;
    --color-primary-light: #FBEFEA;
    --color-bg-light: #FDF5E6; /* Old Lace Krem */
    --color-bg-pure: #FFFDF9;
    --color-text-dark: #3E2723; /* Koyu Çikolata Ahşap Rengi */
    --color-text-medium: #5D4037;
    --color-text-light: #8D6E63;
    --color-border: #D7CCC8;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', serif;
    
    --border-radius-card: 4px;
    --border-radius-btn: 2px;
    --shadow-card: 0 10px 25px rgba(62, 39, 35, 0.06);
    --shadow-card-hover: 0 20px 40px rgba(62, 39, 35, 0.12);
    --shadow-premium: 0 15px 30px rgba(62, 39, 35, 0.05);
    --shadow-hover: 0 20px 40px rgba(62, 39, 35, 0.12);
}


/* Theme 4: Sessiz Lüks & Editöryal */
body.theme-editorial {
    --color-primary: #D5C3A6; /* Saten Şampanya Altını */
    --color-primary-dark: #B8A282;
    --color-primary-light: #F7F5F0;
    --color-bg-light: #F7F6F2; /* Keten Beyazı / Krem */
    --color-bg-pure: #FAF9F6;
    --color-text-dark: #0B1215; /* Derin Lacivert / Mürekkep Siyahı */
    --color-text-medium: #4A5559;
    --color-text-light: #7A8A90;
    --color-border: #E8E6E0;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --border-radius-card: 0px;
    --border-radius-btn: 0px;
    --shadow-card: none;
    --shadow-card-hover: none;
    --shadow-premium: none;
    --shadow-hover: none;
}

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

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

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-btn);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-pure);
}

.btn-primary:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-pure);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-pure);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-text-dark);
    color: var(--color-primary-light);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Main Navigation Header */
.main-header {
    background-color: rgba(253, 252, 249, 0.95);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.main-header.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-text-light);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Sustainability Badge & Mobile Nav */
.mobile-only-nav {
    display: none !important;
}

.sustainability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 12px 2px; /* Elegant asymmetric default */
    background-color: rgba(213, 195, 166, 0.08);
    border: 1px solid rgba(213, 195, 166, 0.35);
    color: var(--color-primary);
}

.sustainability-badge i {
    font-size: 0.8rem;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sustainability-badge:hover {
    background-color: var(--color-primary);
    color: #0b1215 !important;
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(213, 195, 166, 0.15);
}

.sustainability-badge:hover i {
    color: #0b1215 !important;
    transform: rotate(15deg) scale(1.15);
}

/* Theme 2: Modern Minimalizm Sustainability Badge */
body.theme-minimalist .sustainability-badge {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 0;
    padding: 0.45rem 0.85rem;
    font-weight: 600;
}

body.theme-minimalist .sustainability-badge i {
    color: #000000;
}

body.theme-minimalist .sustainability-badge:hover {
    background-color: #000000;
    color: #ffffff !important;
    border-color: #000000;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}

body.theme-minimalist .sustainability-badge:hover i {
    color: #ffffff !important;
}

/* Theme 3: Tarihi Klasik & Miras Sustainability Badge */
body.theme-heritage .sustainability-badge {
    background-color: rgba(27, 59, 43, 0.06);
    border: 1px dashed var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px 10px 30px 10px; /* leaf shape */
    padding: 0.5rem 1rem;
}

body.theme-heritage .sustainability-badge i {
    color: var(--color-primary);
}

body.theme-heritage .sustainability-badge:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-pure) !important;
    border-style: solid;
    box-shadow: 0 6px 15px rgba(27, 59, 43, 0.12);
}

body.theme-heritage .sustainability-badge:hover i {
    color: var(--color-bg-pure) !important;
}

/* Theme 4: Cozy Lodge & Retro Sustainability Badge */
body.theme-cozy .sustainability-badge {
    background-color: rgba(192, 92, 62, 0.08);
    border: 1px solid rgba(192, 92, 62, 0.3);
    color: var(--color-primary);
    border-radius: 4px 16px;
    padding: 0.45rem 0.9rem;
}

body.theme-cozy .sustainability-badge i {
    color: var(--color-primary);
}

body.theme-cozy .sustainability-badge:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-pure) !important;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(192, 92, 62, 0.15);
}

body.theme-cozy .sustainability-badge:hover i {
    color: var(--color-bg-pure) !important;
}

/* Editorial Transparent Header Specific Style (Unscrolled State) */
body.theme-editorial .main-header:not(.scrolled) .sustainability-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

body.theme-editorial .main-header:not(.scrolled) .sustainability-badge i {
    color: #ffffff;
}

body.theme-editorial .main-header:not(.scrolled) .sustainability-badge:hover {
    background-color: var(--color-primary);
    color: #0b1215 !important;
    border-color: var(--color-primary);
}

body.theme-editorial .main-header:not(.scrolled) .sustainability-badge:hover i {
    color: #0b1215 !important;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--color-bg-pure);
    overflow: hidden;
}

/* Background Video for Hero */
.hero-bg-video {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

/* Base Booking Bar Styles */
.hero-booking-wrapper {
    display: none;
    position: absolute;
    bottom: 3rem; /* place at bottom inside hero */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 10;
    animation: fadeInUp 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-booking-bar {
    display: flex;
    background-color: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    padding: 1rem 1.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    gap: 1.2rem;
    align-items: flex-end;
    width: 100%;
    border-radius: var(--border-radius-card);
    transition: var(--transition-smooth);
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.booking-field label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-medium);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.booking-field label i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.booking-field input,
.booking-field select {
    padding: 0.75rem 0.8rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
    height: 42px;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-pure);
}

.btn-booking-search {
    background-color: var(--color-primary);
    color: var(--color-bg-pure);
    padding: 0 2.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-btn);
}

.btn-booking-search:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-pure);
}

@media (max-width: 1024px) {
    .hero-booking-wrapper {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 3rem;
    }
    
    .hero-booking-bar {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem;
        align-items: stretch;
    }
    
    .btn-booking-search {
        width: 100%;
    }
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(253, 252, 249, 0.85);
    margin-bottom: 2.5rem;
}

.scroll-down-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-bg-pure);
    gap: 0.8rem;
    transition: var(--transition-smooth);
}

.scroll-down-btn .btn-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-light);
}

.scroll-down-btn i {
    animation: bounce 2s infinite;
    font-size: 1.2rem;
    color: var(--color-primary);
}

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

/* Rooms Showcase Section */
.rooms-section {
    padding: 7rem 2rem;
    background-color: var(--color-bg-pure);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 1.2rem;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-medium);
    font-weight: 300;
}

/* Filtering Container */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: none;
    border: 1px solid var(--color-border);
    padding: 0.65rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

/* Rooms Grid & Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.room-card {
    background-color: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary-light);
}

.room-image-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1);
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-primary-light);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    font-weight: 500;
}

.room-details {
    padding: 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.room-title {
    font-size: 1.7rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.room-desc {
    font-size: 0.92rem;
    color: var(--color-text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    flex-grow: 1;
}

/* Room Specs Grid */
.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text-medium);
    font-size: 0.85rem;
}

.spec-item i {
    color: var(--color-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Room Footer */
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.room-price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-card-action {
    flex-grow: 1;
    max-width: 180px;
}

/* Brand Experience Section */
.brand-experience {
    background-color: var(--color-bg-light);
    padding: 7rem 2rem;
    background-size: cover;
    background-position: center;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Sağ tarafa hizalama */
}

.experience-content {
    background-color: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem;
    max-width: 650px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
}

.experience-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.experience-title {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.experience-text {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.amenity-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 400;
}

.amenity-badge i {
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* Footer Styles */
.main-footer {
    background-color: #121212;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo-title {
    color: var(--color-bg-pure);
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 400px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-bg-pure);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-dark);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-bg-pure);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact p i {
    color: var(--color-primary);
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Interactive Booking Modal Style */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    background-color: var(--color-bg-pure);
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.open .booking-modal {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    color: var(--color-text-dark);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-weight: 300;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

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

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-medium);
}

.form-group input,
.form-group select {
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-pure);
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

.booking-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.booking-success-message i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.booking-success-message h4 {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.booking-success-message p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    max-width: 420px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    .nav-menu ul {
        gap: 1.2rem;
    }
    .header-actions {
        gap: 0.8rem;
    }
    .sustainability-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .room-image-wrapper {
        height: 320px;
    }
    .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
    }
    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px; /* Header yüksekliği + Announcement bar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-pure);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border);
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.1rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-only-nav {
        display: list-item !important;
    }
    .header-actions .sustainability-badge {
        display: none !important;
    }
    .hero-section {
        height: 60vh;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .rooms-section {
        padding: 4rem 1.2rem;
    }
    .filter-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .filter-btn {
        flex-grow: 1;
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
    .experience-container {
        justify-content: center;
    }
    .experience-content {
        padding: 2.5rem 1.5rem;
    }
    .experience-title {
        font-size: 1.8rem;
    }
    .amenities-summary {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-contact {
        grid-column: span 1;
    }
    .booking-modal {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ==========================================================================
   THEME 2: MODERN MINIMALIST - LAYOUT OVERRIDES
   ========================================================================== */


@media (min-width: 1025px) {
    body.theme-minimalist .hero-section {
        background-image: none !important;
        background-color: #000000 !important;
        color: #ffffff;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 0 10%;
        position: relative;
    }

    body.theme-minimalist .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
        background-image: url('images/hero_banner.png');
        background-size: cover;
        background-position: center;
        display: block;
        border-left: 2px solid #000000;
        z-index: 1;
    }

    body.theme-minimalist .hero-content {
        max-width: 40%;
        text-align: left;
        z-index: 2;
        margin: 0;
    }

    body.theme-minimalist .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        color: #ffffff;
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    body.theme-minimalist .hero-tagline {
        font-size: 0.9rem;
        color: #ffffff;
        border-bottom: 2px solid #ffffff;
        width: fit-content;
        padding-bottom: 5px;
        margin-bottom: 2rem;
        display: inline-block;
    }

    body.theme-minimalist .hero-subtitle {
        color: #cccccc;
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    body.theme-minimalist .scroll-down-btn {
        margin: 0;
        align-items: flex-start;
        border-bottom: 2px solid #ffffff;
    }


}

@media (min-width: 1025px) {
    body.theme-minimalist .rooms-grid {
        grid-template-columns: 1fr; /* 2 sütun yerine alt alta satırlar */
        gap: 4rem;
    }
    
    body.theme-minimalist .room-card {
        flex-direction: row;
        height: 420px;
        align-items: stretch;
    }
    
    body.theme-minimalist .room-card:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    body.theme-minimalist .room-image-wrapper {
        width: 50%;
        height: 100%;
    }
    
    body.theme-minimalist .room-details {
        width: 50%;
        padding: 3rem;
        justify-content: center;
    }
}

body.theme-minimalist .room-card {
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

body.theme-minimalist .room-card:hover {
    transform: scale(1.01);
}

body.theme-minimalist .room-badge {
    border-radius: 0;
    background-color: #000;
    color: #fff;
    left: 0;
    top: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

body.theme-minimalist .filter-btn {
    border: 1px solid #ddd;
    border-radius: 0;
}
body.theme-minimalist .filter-btn.active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

/* ==========================================================================
   THEME 3: HERITAGE ELEGANCE - LAYOUT OVERRIDES
   ========================================================================== */


@media (min-width: 1025px) {
    body.theme-heritage .hero-section {
        background-image: none !important;
        background-color: #f9f6f0 !important;
        color: #112217;
        height: 95vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        position: relative;
    }

    body.theme-heritage .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(249, 246, 240, 0.88), rgba(249, 246, 240, 0.95)), url('images/hero_banner.png') !important;
        background-size: cover !important;
        background-position: center !important;
        z-index: 0;
        display: block;
    }

    body.theme-heritage .hero-section::after {
        content: '';
        display: block;
        width: 480px;
        height: 280px;
        background-image: url('images/hero_banner.png');
        background-size: cover;
        background-position: center;
        border: 6px double #e2dac9; /* Double gold frame */
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(27, 59, 43, 0.12);
        z-index: 1;
        margin-top: 2rem;
    }

    body.theme-heritage .hero-content {
        z-index: 2;
        position: relative;
        max-width: 700px;
        margin-bottom: 2rem;
    }

    body.theme-heritage .hero-title {
        font-family: var(--font-heading);
        font-size: 3.2rem;
        color: #1b3b2b;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-transform: none;
        margin-bottom: 1.5rem;
    }

    body.theme-heritage .hero-tagline {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        color: #b8a282;
        font-style: italic;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
    }

    body.theme-heritage .hero-subtitle {
        color: #334a3c;
        font-size: 1.05rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    body.theme-heritage .scroll-down-btn {
        display: none; /* Hide scroll-down btn for classical layout */
    }


}

body.theme-heritage .room-card {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-pure);
    position: relative;
}

body.theme-heritage .room-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(27, 59, 43, 0.08);
    pointer-events: none;
    border-radius: 12px;
}

body.theme-heritage .room-title {
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

body.theme-heritage .room-title::after {
    content: '✦';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--color-primary);
}

body.theme-heritage .room-subtitle {
    text-align: center;
}

body.theme-heritage .room-desc {
    text-align: center;
}

body.theme-heritage .room-badge {
    border-radius: 20px;
    background-color: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   DESIGN SWITCHER PANEL (TASARIM SEÇİCİ) STYLES
   ========================================================================== */
.design-switcher-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    font-family: var(--font-body);
}

.switcher-toggle-btn {
    background-color: #1e1e1e;
    color: #c5a880;
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 30px;
}

.switcher-toggle-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

.design-switcher-panel {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 320px;
    background-color: rgba(253, 252, 249, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 16px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.design-switcher-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.switcher-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #1e1e1e;
    margin-bottom: 0.3rem;
}

.switcher-header p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

.switcher-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.theme-select-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #e5dfd5;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.theme-select-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: #c5a880;
}

.theme-select-btn.active {
    background-color: #ffffff;
    border-color: #c5a880;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.15);
}

.theme-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #f4f0eb;
    color: #54514d;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.theme-select-btn.active .theme-number {
    background-color: #c5a880;
    color: #fff;
}

.theme-info {
    display: flex;
    flex-direction: column;
}

.theme-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e1e1e;
}

.theme-desc {
    font-size: 0.7rem;
    color: #777;
    margin-top: 0.1rem;
}

/* Specific styling overrides for theme selected in switcher */
.theme-select-btn[data-theme="minimalist"].active .theme-number {
    background-color: #000000;
}
.theme-select-btn[data-theme="heritage"].active .theme-number {
    background-color: #1B3B2B;
}
.theme-select-btn[data-theme="cozy"].active .theme-number {
    background-color: #C05C3E;
}


/* Page transitions when changing theme */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}
.main-header, .room-card, .btn, .announcement-bar, .main-footer, .brand-experience, .experience-content {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   THEME 4: COZY LODGE & RETRO - LAYOUT OVERRIDES
   ========================================================================== */


@media (min-width: 1025px) {
    body.theme-cozy .hero-section {
        background-image: none !important;
        background-color: var(--color-bg-light) !important;
        color: var(--color-text-dark);
        padding: 6rem 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 4rem;
        height: 85vh;
        position: relative;
    }

    body.theme-cozy .hero-content {
        max-width: 48%;
        text-align: left;
        margin: 0;
        z-index: 2;
    }

    body.theme-cozy .hero-section::after {
        content: '';
        display: block;
        width: 40%;
        height: 380px;
        background-image: url('images/hero_banner.png');
        background-size: cover;
        background-position: center;
        border-radius: 4px;
        box-shadow: 0 15px 30px rgba(62, 39, 35, 0.15);
        border: 12px solid #ffffff;
        border-bottom: 45px solid #ffffff; /* Polaroid bottom border */
        outline: 1px solid var(--color-border);
        transform: rotate(2deg); /* Retro polaroid slant */
        z-index: 1;
    }

    body.theme-cozy .hero-title {
        font-family: var(--font-heading);
        font-size: 3.4rem;
        font-style: italic;
        font-weight: 600;
        color: #3e2723;
        margin-bottom: 1.5rem;
    }

    body.theme-cozy .hero-tagline {
        font-size: 0.85rem;
        color: #c05c3e;
        letter-spacing: 0.2em;
        font-weight: 700;
        margin-bottom: 1rem;
        display: inline-block;
    }

    body.theme-cozy .hero-subtitle {
        color: #5d4037;
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    body.theme-cozy .scroll-down-btn {
        display: none;
    }


}

body.theme-cozy .main-header {
    background-color: rgba(253, 245, 230, 0.95);
}

body.theme-cozy .logo-subtitle {
    color: var(--color-primary);
}

body.theme-cozy .room-card {
    background-color: var(--color-bg-pure);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

body.theme-cozy .room-image-wrapper {
    height: 280px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
}

body.theme-cozy .room-details {
    padding: 0;
    text-align: center;
}

body.theme-cozy .room-title {
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    color: var(--color-text-dark);
}

body.theme-cozy .room-subtitle {
    text-align: center;
    color: var(--color-text-light);
}

body.theme-cozy .room-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

body.theme-cozy .room-specs {
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
    padding: 1.2rem 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    grid-template-columns: none; /* Grid'den vazgeç */
    margin-bottom: 1.5rem;
}

body.theme-cozy .spec-item {
    font-size: 0.8rem;
}

body.theme-cozy .room-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

body.theme-cozy .btn-card-action {
    max-width: 100%;
    width: 100%;
}

body.theme-cozy .experience-content {
    background-color: rgba(253, 245, 230, 0.95);
}

body.theme-cozy .main-footer {
    background-color: #2b1f1d;
}

.theme-select-btn[data-theme="editorial"].active .theme-number {
    background-color: #D5C3A6;
    color: #0B1215;
}

/* ==========================================================================
   THEME 4: SESSİZ LÜKS & EDİTÖRYAL - LAYOUT OVERRIDES
   ========================================================================== */
body.theme-editorial .main-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

body.theme-editorial .main-header.scrolled {
    background-color: rgba(11, 18, 21, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(213, 195, 166, 0.15);
    position: fixed;
    top: 0;
}

body.theme-editorial .logo-title {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    color: #ffffff;
}

body.theme-editorial .logo-subtitle {
    letter-spacing: 0.4em;
    color: var(--color-primary);
}

body.theme-editorial .nav-menu a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
}

body.theme-editorial .nav-menu a:hover,
body.theme-editorial .nav-menu a.active {
    color: var(--color-primary);
}

body.theme-editorial .btn-outline {
    border-color: var(--color-primary);
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.15em;
}

body.theme-editorial .btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-pure);
}

body.theme-editorial .hero-booking-wrapper {
    display: block;
}

body.theme-editorial .hero-booking-bar {
    background: rgba(11, 18, 21, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(213, 195, 166, 0.25);
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.theme-editorial .booking-field label {
    color: #d5c3a6; /* Altın rengi etiket */
}

body.theme-editorial .booking-field label i {
    color: #d5c3a6;
}

body.theme-editorial .booking-field input,
body.theme-editorial .booking-field select {
    border-radius: 0;
    border: 1px solid rgba(213, 195, 166, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

body.theme-editorial .booking-field input:focus,
body.theme-editorial .booking-field select:focus {
    border-color: #d5c3a6;
    background-color: rgba(255, 255, 255, 0.1);
}

body.theme-editorial .btn-booking-search {
    border-radius: 0;
    background-color: #d5c3a6;
    color: #0b1215;
    font-weight: 500;
    letter-spacing: 0.15em;
}

body.theme-editorial .btn-booking-search:hover {
    background-color: #ffffff;
    color: #0b1215;
}

/* Background video display rule for Editorial Theme */
body.theme-editorial .hero-bg-video {
    display: none; /* JavaScript shows this when it starts playing successfully */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

body.theme-editorial .hero-section {
    background-color: #0b1215; /* Fallback color behind background image */
    color: #ffffff;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Dark semi-transparent overlay to ensure text readability on the video */
body.theme-editorial .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 18, 21, 0.55), rgba(11, 18, 21, 0.65));
    z-index: 1;
    pointer-events: none;
    display: block;
}

body.theme-editorial .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Remove portrait split-screen image card */
body.theme-editorial .hero-section::after {
    display: none !important;
}

body.theme-editorial .hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 300;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.theme-editorial .hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-primary); /* Saten Altın */
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: none;
    font-weight: 400;
}

body.theme-editorial .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body.theme-editorial .scroll-down-btn {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 0 auto;
}

body.theme-editorial .scroll-down-btn i {
    display: none;
}

body.theme-editorial .rooms-section {
    background-color: var(--color-bg-pure);
}

body.theme-editorial .section-title {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.theme-editorial .section-divider {
    background-color: var(--color-primary);
    height: 1px;
    width: 50px;
}

body.theme-editorial .filter-btn {
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 2.2rem;
    color: var(--color-text-medium);
    transition: all 0.3s ease;
}

body.theme-editorial .filter-btn.active,
body.theme-editorial .filter-btn:hover {
    background: none;
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
}

body.theme-editorial .room-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

body.theme-editorial .room-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

body.theme-editorial .room-image-wrapper {
    height: 350px;
    border-radius: 0;
    margin-bottom: 2rem;
    position: relative;
    border-bottom: 2px solid var(--color-primary);
}

body.theme-editorial .room-badge {
    border-radius: 0;
    background-color: var(--color-text-dark);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    top: auto;
    bottom: -1px;
    left: 0;
    font-size: 0.65rem;
}

body.theme-editorial .room-details {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.theme-editorial .room-title {
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
    margin-bottom: 0.6rem;
}

body.theme-editorial .room-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

body.theme-editorial .room-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--color-text-medium);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 90%;
}

body.theme-editorial .room-specs {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
    grid-template-columns: none;
}

body.theme-editorial .spec-item {
    color: var(--color-text-medium);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.theme-editorial .spec-item i {
    color: var(--color-primary);
}

body.theme-editorial .room-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

body.theme-editorial .room-price-info {
    text-align: center;
}

body.theme-editorial .price-amount {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--color-text-dark);
}

body.theme-editorial .btn-card-action {
    background: none;
    border: none;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-text-dark);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    max-width: none;
    width: auto;
    font-weight: 500;
    transition: border-color 0.3s ease, letter-spacing 0.3s ease;
}

body.theme-editorial .btn-card-action:hover {
    background: none;
    color: var(--color-primary);
    border-color: var(--color-primary);
    letter-spacing: 0.25em;
}

body.theme-editorial .brand-experience {
    background-color: var(--color-bg-pure);
}

body.theme-editorial .experience-content {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    box-shadow: none;
    padding: 5rem;
    max-width: 700px;
}

body.theme-editorial .experience-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
}

body.theme-editorial .experience-text {
    line-height: 1.8;
}

body.theme-editorial .main-footer {
    background-color: #0b1215;
    border-top: 1px solid #1a2225;
}

body.theme-editorial .booking-modal {
    border-radius: 0;
    border: 1px solid var(--color-primary);
}

body.theme-editorial .form-group input,
body.theme-editorial .form-group select {
    border-radius: 0;
    background-color: var(--color-bg-pure);
}

@media (max-width: 1024px) {
    body.theme-editorial .hero-section {
        height: 70vh;
        padding: 6rem 2rem;
    }
    body.theme-editorial .hero-section::after {
        display: none !important;
    }
}

/* Dynamic Chatbot Styles matching active theme */
#diji-chatbot-container {
    position: fixed;
    bottom: 7.5rem;
    right: 2.2rem;
    z-index: 9999;
    font-family: var(--font-body);
}

#chat-bubble {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    font-size: 1.4rem;
}

#chat-bubble:hover {
    transform: scale(1.08);
    background-color: var(--color-text-dark);
    color: var(--color-primary);
}

/* Theme-specific Chat Bubble Colors for Contrast */
body.theme-minimalist #chat-bubble {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
}
body.theme-minimalist #chat-bubble:hover {
    background-color: #ffffff;
    color: #000000 !important;
    border-color: #000000;
}

body.theme-heritage #chat-bubble {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-border);
}
body.theme-heritage #chat-bubble:hover {
    background-color: var(--color-text-dark);
    color: var(--color-primary) !important;
}

body.theme-cozy #chat-bubble {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-border);
}
body.theme-cozy #chat-bubble:hover {
    background-color: var(--color-text-dark);
    color: var(--color-primary) !important;
}

body.theme-editorial #chat-bubble {
    background-color: var(--color-primary);
    color: #0b1215;
    border-color: rgba(213, 195, 166, 0.3);
}
body.theme-editorial #chat-bubble:hover {
    background-color: #0b1215;
    color: var(--color-primary) !important;
}

#chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    height: 500px;
    background-color: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-card);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-smooth);
    transform-origin: bottom right;
}

#chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background-color: var(--color-text-dark);
    color: var(--color-primary);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ec4b6;
    box-shadow: 0 0 8px #2ec4b6;
}

.chat-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    line-height: 1.2;
}

.chat-subtitle {
    display: block;
    font-size: 0.7rem;
    color: var(--color-primary);
    opacity: 0.8;
}

#chat-close {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

#chat-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

#chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-light);
}

.chat-msg {
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-card);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 85%;
    animation: chatFadeIn 0.3s ease forwards;
}

.chat-msg.bot {
    background-color: var(--color-bg-pure);
    color: var(--color-text-dark);
    align-self: flex-start;
    border: 1px solid var(--color-border);
    border-bottom-left-radius: 2px;
}

.chat-msg.user {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    border: 1px solid var(--color-primary-dark);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
    animation: chatFadeIn 0.3s ease forwards;
}

.chat-option-btn {
    background-color: var(--color-bg-pure);
    border: 1px solid var(--color-primary);
    color: var(--color-text-dark);
    padding: 0.65rem 1rem;
    border-radius: var(--border-radius-card);
    cursor: pointer;
    font-size: 0.8rem;
    text-align: left;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.chat-option-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.chat-input-area {
    padding: 0.8rem;
    background-color: var(--color-bg-pure);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
}

.chat-input-field {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-card);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.chat-input-field:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-pure);
}

.chat-send-btn {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    border: none;
    border-radius: var(--border-radius-card);
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chat-send-btn:hover {
    background-color: var(--color-text-dark);
    color: var(--color-primary);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-typing {
    background-color: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    padding: 0.6rem 0.8rem;
    border-radius: var(--border-radius-card);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    display: flex;
    gap: 4px;
    width: 50px;
    align-items: center;
    justify-content: center;
}

.chat-typing span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--color-text-light);
    border-radius: 50%;
    animation: chatBlink 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

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

@keyframes chatBlink {
    0%, 100% { opacity: 0.2; }
    20% { opacity: 1; }
}

@media (max-width: 480px) {
    #diji-chatbot-container {
        bottom: 5.5rem;
        right: 1rem;
    }
    #chat-window {
        width: calc(100vw - 2rem);
        height: 400px;
    }
}

/* ==========================================================================
   THEME 5: ANADOLU ZARAFETİ (CLAUDE OPUS) - DARK LUXE
   Dark charcoal + amber gold premium butik otel deneyimi
   ========================================================================== */

/* Theme 5 Variables */
body.theme-opus {
    --color-primary: #c9a84c; /* Amber Altın */
    --color-primary-dark: #a68530;
    --color-primary-light: #1f1d19;
    --color-bg-light: #0c0b09; /* Koyu Kömür */
    --color-bg-pure: #151310;
    --color-text-dark: #f5f0e8; /* Açık Krem */
    --color-text-medium: #b8a98d;
    --color-text-light: #7a6f5f;
    --color-border: rgba(201, 168, 76, 0.12);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --border-radius-card: 16px;
    --border-radius-btn: 50px;
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 60px rgba(0, 0, 0, 0.5);
}

/* Scrollbar */
body.theme-opus::-webkit-scrollbar { width: 6px; }
body.theme-opus::-webkit-scrollbar-track { background: #0c0b09; }
body.theme-opus::-webkit-scrollbar-thumb { background: #7a6f5f; border-radius: 999px; }
body.theme-opus::-webkit-scrollbar-thumb:hover { background: #c9a84c; }

/* Selection */
body.theme-opus ::selection {
    background: #c9a84c;
    color: #0c0b09;
}

/* --- HEADER --- */
body.theme-opus .main-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-opus .main-header.scrolled {
    background-color: rgba(12, 11, 9, 0.88);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    position: fixed;
    top: 0;
}

body.theme-opus .logo-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    color: #f5f0e8;
}

body.theme-opus .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    color: #c9a84c;
    font-weight: 600;
}

body.theme-opus .nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(184, 169, 141, 0.9);
    transition: color 0.3s;
    position: relative;
}

body.theme-opus .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-opus .nav-menu a:hover,
body.theme-opus .nav-menu a.active {
    color: #f5f0e8;
}

body.theme-opus .nav-menu a:hover::after,
body.theme-opus .nav-menu a.active::after {
    width: 100%;
}

/* Sustainability Badge */
body.theme-opus .sustainability-badge {
    border: 1px solid rgba(94, 194, 105, 0.3);
    background: rgba(94, 194, 105, 0.06);
    color: #5ec269;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

body.theme-opus .sustainability-badge i {
    color: #5ec269;
}

body.theme-opus .sustainability-badge:hover {
    background: rgba(94, 194, 105, 0.15);
    border-color: rgba(94, 194, 105, 0.5);
    transform: translateY(-1px);
}

body.theme-opus .sustainability-badge:hover i {
    color: #5ec269;
}

/* --- HERO --- */
body.theme-opus .hero-section {
    background-color: #0c0b09;
    color: #f5f0e8;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

body.theme-opus .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 11, 9, 0.3) 0%,
        rgba(12, 11, 9, 0.1) 30%,
        rgba(12, 11, 9, 0.4) 70%,
        rgba(12, 11, 9, 0.95) 100%
    );
    z-index: 1;
    pointer-events: none;
}

body.theme-opus .hero-section::after {
    display: none !important;
}

body.theme-opus .hero-bg-video {
    display: none;
}

body.theme-opus .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

body.theme-opus .hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: #c9a84c;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

body.theme-opus .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #f5f0e8;
    text-shadow: none;
    margin-bottom: 0.5rem;
}

body.theme-opus .hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #b8a98d;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: none;
}

body.theme-opus .scroll-down-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: #c9a84c;
    color: #0c0b09;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

body.theme-opus .scroll-down-btn:hover {
    background: #e4c97c;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

body.theme-opus .scroll-down-btn i {
    display: inline;
    font-size: 0.75rem;
}

/* Booking Bar */
body.theme-opus .hero-booking-wrapper {
    display: block;
}

body.theme-opus .hero-booking-bar {
    background: rgba(26, 24, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

body.theme-opus .booking-field label {
    color: #7a6f5f;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

body.theme-opus .booking-field label i {
    color: #c9a84c;
}

body.theme-opus .booking-field input,
body.theme-opus .booking-field select {
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #f5f0e8;
}

body.theme-opus .booking-field input:focus,
body.theme-opus .booking-field select:focus {
    border-color: #c9a84c;
}

body.theme-opus .btn-booking-search {
    background-color: #c9a84c;
    color: #0c0b09;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

body.theme-opus .btn-booking-search:hover {
    background-color: #e4c97c;
}

/* --- ANNOUNCEMENT BAR --- */
body.theme-opus .announcement-bar {
    background: #151310;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: #7a6f5f;
}

/* --- ROOMS SECTION --- */
body.theme-opus .rooms-section {
    background-color: #0c0b09;
}

body.theme-opus .section-tagline,
body.theme-opus .section-title,
body.theme-opus .section-description {
    color: #f5f0e8;
}

body.theme-opus .section-tagline {
    color: #c9a84c;
    letter-spacing: 0.35em;
    font-size: 0.65rem;
}

body.theme-opus .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #f5f0e8;
}

body.theme-opus .section-divider {
    background-color: #c9a84c;
    height: 1px;
    width: 50px;
    opacity: 0.5;
}

body.theme-opus .section-description {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #b8a98d;
    font-size: 1.05rem;
}

/* Filters */
body.theme-opus .filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.55rem 1.5rem;
    color: #7a6f5f;
    background: transparent;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

body.theme-opus .filter-btn.active,
body.theme-opus .filter-btn:hover {
    background: #c9a84c;
    color: #0c0b09;
    border-color: #c9a84c;
}

/* Room Card */
body.theme-opus .room-card {
    background-color: #1a1815;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-opus .room-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
}

body.theme-opus .room-image-wrapper {
    border-radius: 0;
    border-bottom: none;
    margin-bottom: 0;
}

body.theme-opus .room-card:hover .room-img {
    transform: scale(1.08);
}

body.theme-opus .room-badge {
    border-radius: 50px;
    background-color: #c9a84c;
    color: #0c0b09;
    border: none;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    top: 1rem;
    left: 1rem;
    bottom: auto;
}

body.theme-opus .room-details {
    padding: 1.5rem;
    text-align: left;
    align-items: flex-start;
}

body.theme-opus .room-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: #7a6f5f;
    font-style: normal;
    text-transform: uppercase;
}

body.theme-opus .room-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #f5f0e8;
}

body.theme-opus .room-desc {
    font-size: 0.85rem;
    color: #b8a98d;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    font-weight: 400;
}

body.theme-opus .room-specs {
    border-top: none;
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 1rem;
    width: auto;
    justify-content: flex-start;
}

body.theme-opus .spec-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: #7a6f5f;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: none;
    letter-spacing: 0;
}

body.theme-opus .spec-item i {
    color: #c9a84c;
    font-size: 0.65rem;
}

body.theme-opus .room-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
    width: 100%;
}

body.theme-opus .room-price-info {
    text-align: left;
}

body.theme-opus .price-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7a6f5f;
}

body.theme-opus .price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #c9a84c;
}

body.theme-opus .btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    max-width: none;
    width: auto;
    transition: all 0.3s;
}

body.theme-opus .btn-card-action:hover {
    background: #c9a84c;
    color: #0c0b09;
    border-color: #c9a84c;
    letter-spacing: 0.05em;
}

/* --- EXPERIENCE / BRAND SECTION --- */
body.theme-opus .brand-experience {
    background-color: #151310;
}

body.theme-opus .experience-container {
    max-width: 1400px;
}

body.theme-opus .experience-tagline {
    color: #c9a84c;
    letter-spacing: 0.35em;
}

body.theme-opus .experience-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    color: #f5f0e8;
    text-transform: none;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

body.theme-opus .experience-text {
    color: #b8a98d;
    line-height: 1.8;
}

body.theme-opus .experience-content {
    background-color: #1a1815;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.theme-opus .amenity-badge {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    color: #b8a98d;
    border-radius: 50px;
}

body.theme-opus .amenity-badge i {
    color: #c9a84c;
}

/* --- FOOTER --- */
body.theme-opus .main-footer {
    background-color: #0c0b09;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

body.theme-opus .main-footer .logo-title {
    color: #f5f0e8;
}

body.theme-opus .main-footer .logo-subtitle {
    color: #c9a84c;
}

body.theme-opus .footer-about-text {
    color: #7a6f5f;
}

body.theme-opus .footer-links h4,
body.theme-opus .footer-contact h4 {
    color: #7a6f5f;
    letter-spacing: 0.2em;
}

body.theme-opus .footer-links a {
    color: #b8a98d;
}

body.theme-opus .footer-links a:hover {
    color: #c9a84c;
}

body.theme-opus .footer-contact p {
    color: #b8a98d;
}

body.theme-opus .footer-contact i {
    color: #c9a84c;
}

body.theme-opus .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: #7a6f5f;
}

body.theme-opus .social-links a {
    border-color: rgba(255, 255, 255, 0.08);
    color: #7a6f5f;
}

body.theme-opus .social-links a:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* --- BOOKING MODAL --- */
body.theme-opus .booking-modal {
    background-color: #1f1d19;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    color: #f5f0e8;
}

body.theme-opus .booking-modal h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #f5f0e8;
}

body.theme-opus .booking-modal p {
    color: #b8a98d;
}

body.theme-opus .close-modal-btn {
    color: #7a6f5f;
}

body.theme-opus .close-modal-btn:hover {
    color: #f5f0e8;
}

body.theme-opus .form-group label {
    color: #7a6f5f;
    letter-spacing: 0.1em;
}

body.theme-opus .form-group input,
body.theme-opus .form-group select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #f5f0e8;
}

body.theme-opus .form-group input::placeholder {
    color: #7a6f5f;
}

body.theme-opus .form-group input:focus,
body.theme-opus .form-group select:focus {
    border-color: #c9a84c;
}

body.theme-opus .btn-submit {
    background-color: #c9a84c;
    color: #0c0b09;
    border-radius: 8px;
    font-weight: 600;
}

body.theme-opus .btn-submit:hover {
    background-color: #e4c97c;
}

body.theme-opus .modal-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

/* --- CHATBOT --- */
body.theme-opus #chat-bubble {
    background: linear-gradient(135deg, #c9a84c, #a68530);
    color: #0c0b09;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

body.theme-opus #chat-bubble:hover {
    background: linear-gradient(135deg, #e4c97c, #c9a84c);
    color: #0c0b09 !important;
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
    transform: scale(1.1);
}

body.theme-opus #chat-window {
    background-color: #1f1d19;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
}

body.theme-opus .chat-header {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

body.theme-opus .chat-header h3 {
    color: #f5f0e8;
}

body.theme-opus .chat-subtitle {
    color: #7a6f5f;
}

body.theme-opus .chat-online-dot {
    background: #5ec269;
}

body.theme-opus .chat-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f5f0e8;
}

body.theme-opus .chat-msg.user {
    background: linear-gradient(135deg, #c9a84c, #a68530);
    color: #0c0b09;
}

body.theme-opus .chat-option-btn {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: #e4c97c;
    border-radius: 50px;
}

body.theme-opus .chat-option-btn:hover {
    background: #c9a84c;
    color: #0c0b09;
    border-color: #c9a84c;
}

body.theme-opus .chat-input-field {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #f5f0e8;
}

body.theme-opus .chat-input-field::placeholder {
    color: #7a6f5f;
}

body.theme-opus .chat-send-btn {
    background: #c9a84c;
    color: #0c0b09;
    border-radius: 50%;
}

body.theme-opus .chat-typing span {
    background-color: #7a6f5f;
}

/* --- DESIGN SWITCHER (dark style) --- */
body.theme-opus .switcher-toggle-btn {
    background: #1f1d19;
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: #b8a98d;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.theme-opus .switcher-toggle-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

body.theme-opus .switcher-toggle-btn i {
    color: #c9a84c;
}

body.theme-opus .design-switcher-panel {
    background: #1f1d19;
    border: 1px solid rgba(201, 168, 76, 0.12);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

body.theme-opus .design-switcher-panel h4 {
    color: #f5f0e8;
}

body.theme-opus .design-switcher-panel p {
    color: #7a6f5f;
}

body.theme-opus .theme-select-btn {
    border: 1px solid transparent;
    color: #b8a98d;
}

body.theme-opus .theme-select-btn:hover {
    background: rgba(255, 255, 255, 0.03);
}

body.theme-opus .theme-select-btn.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
}

body.theme-opus .theme-number {
    background: rgba(255, 255, 255, 0.05);
    color: #7a6f5f;
}

body.theme-opus .theme-select-btn.active .theme-number {
    background: #c9a84c;
    color: #0c0b09;
}

body.theme-opus .theme-name {
    color: #f5f0e8;
}

body.theme-opus .theme-desc {
    color: #7a6f5f;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    body.theme-opus .hero-section {
        height: 70vh;
        padding: 6rem 2rem;
    }
    body.theme-opus .hero-section::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body.theme-opus .nav-menu {
        background: rgba(12, 11, 9, 0.96) !important;
        backdrop-filter: blur(20px);
    }

    body.theme-opus .hero-title {
        font-size: 2.5rem;
    }
}

