/* ============================================
   The Kingdom of Cappadocia - Main Stylesheet
   Version 8.0 (PHP) - Premium Design Update
   ============================================ */

:root {
    --ivory: #F8F6F3;
    --sand: #EDE8E2;
    --light-blue: #D4E5ED;
    --ocean: #6BA3BE;
    --deep-sea: #2C5F7B;
    --dark: #1a2a3a;
    --gold: #C9A961;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-ui: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--dark);
    overflow: hidden;
    height: 100vh;
}
body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* Rooms Page Body */
body.page-rooms {
    overflow-y: auto;
    height: auto;
    background: var(--ivory);
}
body.page-about,
body.page-contact,
body.page-gallery {
    overflow-y: auto;
    height: auto;
    background: var(--ivory);
}

body.page-gallery .header,
body.page-about .header,
body.page-contact .header {
    background: transparent;
}
body.page-gallery .header.scrolled,
body.page-about .header.scrolled,
body.page-contact .header.scrolled {
    background: rgba(44, 95, 123, 0.15);
    backdrop-filter: blur(15px);
}
body.page-gallery .header.header-hidden,
body.page-about .header.header-hidden,
body.page-contact .header.header-hidden {
    transform: translateY(-100%);
}
body.page-gallery .hamburger-line,
body.page-about .hamburger-line,
body.page-contact .hamburger-line {
    background: var(--ivory);
}
body.page-gallery .btn-signin,
body.page-about .btn-signin,
body.page-contact .btn-signin {
    border-color: rgba(250, 248, 245, 0.3);
    color: var(--ivory);
}
/* Reserve buttons inherit main Deep Sea Theme style */

/* ============================================
   MEMBER PANEL
   ============================================ */
.member-trigger {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--deep-sea);
    padding: 25px 14px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}
.member-trigger:hover { background: var(--ocean); padding-left: 18px; }
.member-trigger-text {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 15px;
}
.member-trigger-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(248, 246, 243, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.member-trigger:hover .member-trigger-icon { background: var(--ivory); border-color: var(--ivory); }
.member-trigger:hover .member-trigger-icon svg { stroke: var(--deep-sea); }

.member-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 480px;
    height: 100%;
    background: var(--ivory);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: scroll;
    box-shadow: 10px 0 50px rgba(0,0,0,0.2);
    scrollbar-width: thin;
    scrollbar-color: var(--ocean) var(--sand);
}
.member-panel::-webkit-scrollbar { width: 8px; }
.member-panel::-webkit-scrollbar-track { background: var(--sand); }
.member-panel::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 4px; }
.member-panel::-webkit-scrollbar-thumb:hover { background: var(--deep-sea); }
.member-panel.active { transform: translateX(0); }

.member-panel-header {
    background: var(--deep-sea);
    padding: 40px 35px;
    position: relative;
}
.member-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(248, 246, 243, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: all 0.3s ease;
}
.member-panel-close:hover { background: var(--ocean); border-color: var(--ocean); }
.member-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(107, 163, 190, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
}
.member-panel-badge svg { color: var(--ocean); }
.member-panel-badge span {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean);
}
.member-panel-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.3;
    margin-bottom: 15px;
}
.member-panel-title em { font-style: italic; color: var(--light-blue); }
.member-panel-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(248, 246, 243, 0.8);
    line-height: 1.7;
}
.member-panel-content { padding: 40px 35px; }
.member-intro {
    font-family: var(--font-body);
    font-size: 18px;
    font-style: italic;
    color: var(--deep-sea);
    line-height: 1.8;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--sand);
}
.member-benefit-group { margin-bottom: 30px; }
.member-benefit-title {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.member-benefit-title::before { content: ''; width: 20px; height: 2px; background: var(--ocean); }
.member-benefit-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
}
.member-privileges-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--deep-sea);
    margin-bottom: 25px;
}
.member-privilege-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sand);
    transition: all 0.3s ease;
}
.member-privilege-item:hover {
    padding-left: 10px;
    background: linear-gradient(to right, var(--light-blue), transparent);
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 10px;
}
.member-privilege-icon {
    width: 28px;
    height: 28px;
    background: var(--deep-sea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.member-privilege-icon svg { color: var(--ivory); }
.member-privilege-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
}
.member-panel-footer {
    padding: 30px 35px 40px;
    background: var(--sand);
}
.member-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 30px;
    background: var(--deep-sea);
    color: var(--ivory);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.member-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--ocean);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.member-cta-btn:hover::before { transform: translateX(0); }
.member-cta-btn span, .member-cta-btn svg { position: relative; z-index: 1; }
.member-cta-btn:hover svg { transform: translateX(5px); }
.member-panel-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--dark);
    text-align: center;
    margin-top: 15px;
    opacity: 0.7;
}
.member-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26, 42, 58, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.member-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--deep-sea);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 28px);
    color: var(--ivory);
    letter-spacing: 4px;
    margin-bottom: 50px;
    text-align: center;
}
.preloader-line {
    width: 90%;
    max-width: 400px;
    height: 60px;
    position: relative;
}
.preloader-line svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.preloader-line .line-bg {
    fill: none;
    stroke: rgba(248, 246, 243, 0.15);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.preloader-line .line-fill {
    fill: none;
    stroke: url(#preloaderGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: fillCappadociaLine 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}
@keyframes fillCappadociaLine {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(44, 95, 123, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.4s ease, background 0.4s ease;
}
.hamburger {
    width: 50px; height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}
.hamburger-line {
    width: 28px; height: 2px;
    background: var(--ivory);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger:hover .hamburger-line:nth-child(1) { transform: translateY(-2px); }
.hamburger:hover .hamburger-line:nth-child(3) { transform: translateY(2px); }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translateY(5.5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translateY(-5.5px); }

.logo { 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    text-align: center;
}
.logo-img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 0;
}
.logo-img:hover { opacity: 0.85; }

.header-right { display: flex; align-items: center; gap: 15px; }

.btn-signin {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid rgba(250, 248, 245, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: transparent;
}
.btn-signin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: btnLineSlide 3s linear infinite;
    z-index: 1;
}
.btn-signin::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: btnLineSlide 3s linear infinite reverse;
    z-index: 1;
}
.btn-signin span { position: relative; z-index: 2; transition: color 0.4s ease; }
.btn-signin:hover {
    color: var(--deep-sea);
    background: var(--ivory);
    border-color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 248, 245, 0.2);
}
.btn-signin:hover span { color: var(--deep-sea); }

.btn-reserve {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    background: linear-gradient(45deg, var(--deep-sea) 0%, #3a7a9c 25%, var(--deep-sea) 50%, #1e4a5f 75%, var(--deep-sea) 100%);
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: btnDiagonalFlow 6s ease infinite;
}
.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: btnLineSlide 3s linear infinite;
    z-index: 1;
}
.btn-reserve::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: btnLineSlide 3s linear infinite reverse;
    z-index: 1;
}
.btn-reserve span { position: relative; z-index: 2; }
.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 95, 123, 0.4);
}

/* Button Animations */
@keyframes btnDiagonalFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes btnLineSlide {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

/* Header Responsive - Desktop/Tablet */
@media (max-width: 1100px) {
    .logo-img { height: 65px; }
    .btn-signin { padding: 12px 18px; font-size: 10px; }
    .btn-reserve { padding: 12px 20px; font-size: 10px; }
}

/* Tablet Hero Content */
@media (max-width: 1024px) {
    .hero-content {
        bottom: 20%;
        max-width: 700px;
        padding: 0 40px;
    }
}

/* ============================================
   ROOMS PAGE HEADER - Beyaz butonlar
   ============================================ */
body.page-rooms .header {
    background: transparent;
}
body.page-rooms .header.scrolled {
    background: rgba(44, 95, 123, 0.15);
    backdrop-filter: blur(15px);
}
body.page-rooms .header.header-hidden {
    transform: translateY(-100%);
}

/* Hamburger - Beyaz */
body.page-rooms .hamburger-line {
    background: var(--ivory);
}

/* Sign In - Rooms page */
body.page-rooms .btn-signin {
    border-color: rgba(250, 248, 245, 0.3);
    color: var(--ivory);
}

/* Reservation - Rooms page inherits main style */

/* ============================================
   PAGE HOME - Header Styles
   ============================================ */
body.page-home .btn-signin {
    border-color: rgba(250, 248, 245, 0.3);
    color: var(--ivory);
}
/* Reservation inherits main style */

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--deep-sea);
    z-index: 999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fullscreen-menu.active { opacity: 1; visibility: visible; }
.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.menu-left {
    width: 55%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 80px;
}
.menu-right {
    width: 45%;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}
.menu-right-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 25px;
    align-items: start;
}
/* Satır 1: Adres (sol) | İletişim (sağ) */
.menu-info-block:nth-child(1) { grid-column: 1; grid-row: 1; }
.menu-info-block:nth-child(2) { grid-column: 2; grid-row: 1; }

/* Satır 2: Diller (sol) | Sosyal (sağ) - menu-bottom içinde */
.menu-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-bottom::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,0.3);
}
.menu-language {
    position: relative;
}
.menu-social {
    position: relative;
}

/* Satır 3: Logolar ortada */
.menu-logos {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.menu-logos a img {
    width: 120px;
    height: 74px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}
.menu-logos > img {
    width: 120px;
    height: 74px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}
.menu-logos img:hover { opacity: 0.8; }
.menu-logos-divider {
    width: 1px;
    height: 40px;
    background: rgba(248, 246, 243, 0.3);
}
.menu-nav { list-style: none; }
.menu-nav > li { margin-bottom: 8px; overflow: hidden; }
.menu-nav > li > a {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--ivory);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.fullscreen-menu.active .menu-nav > li > a { transform: translateY(0); opacity: 1; }
.menu-nav > li:nth-child(1) > a { transition-delay: 0.1s; }
.menu-nav > li:nth-child(2) > a { transition-delay: 0.15s; }
.menu-nav > li:nth-child(3) > a { transition-delay: 0.2s; }
.menu-nav > li:nth-child(4) > a { transition-delay: 0.25s; }
.menu-nav > li > a .menu-number {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--ocean);
}
.menu-nav > li > a:hover { color: var(--ocean); }
.menu-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 45px;
    width: 0; height: 2px;
    background: var(--ocean);
    transition: width 0.4s ease;
}
.menu-nav > li > a:hover::after { width: calc(100% - 45px); }
/* Rooms açıkken alt çizgi görünmesin (hover dahil) */
.menu-item-rooms.open > a::after,
.menu-item-rooms.open > a:hover::after,
.menu-item-rooms > a::after { 
    width: 0 !important; 
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.menu-item-rooms { position: relative; }
.menu-arrow {
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}
.menu-item-rooms.open .menu-arrow { transform: rotate(180deg); }
.rooms-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 45px;
    list-style: none;
}
.menu-item-rooms.open .rooms-submenu { max-height: 400px; }
.rooms-submenu li { margin: 0; }
.rooms-submenu a {
    font-family: var(--font-body);
    font-size: 22px;
    color: rgba(248, 246, 243, 0.7);
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    position: relative;
}
.menu-item-rooms.open .rooms-submenu a { transform: translateX(0); opacity: 1; }
.rooms-submenu li:nth-child(1) a { transition-delay: 0.1s; }
.rooms-submenu li:nth-child(2) a { transition-delay: 0.15s; }
.rooms-submenu li:nth-child(3) a { transition-delay: 0.2s; }
.rooms-submenu li:nth-child(4) a { transition-delay: 0.25s; }
.rooms-submenu li:nth-child(5) a { transition-delay: 0.3s; }
.rooms-submenu a:hover { color: var(--ivory); padding-left: 25px; }

.menu-info-block {
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}
.fullscreen-menu.active .menu-info-block { transform: translateY(0); opacity: 1; }
.menu-info-block:nth-child(1) { transition-delay: 0.3s; }
.menu-info-block:nth-child(2) { transition-delay: 0.4s; }
.menu-info-block h4 {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 10px;
}
.menu-info-block p, .menu-info-block a {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(248, 246, 243, 0.8);
    text-decoration: none;
    line-height: 1.6;
    display: block;
    transition: color 0.3s ease;
}
.menu-info-block a:hover { color: var(--ocean); }
.menu-social { display: flex; gap: 10px; }
.menu-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(248, 246, 243, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: all 0.4s ease;
    position: relative;
    z-index: 100;
}
.menu-social a:hover { background: var(--ocean); border-color: var(--ocean); transform: translateY(-3px); }

.menu-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(248, 246, 243, 0.1);
    margin-top: 20px;
    position: relative;
    z-index: 10;
}
.menu-language {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 100;
}
.menu-language a {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(248, 246, 243, 0.5);
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(248, 246, 243, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}
.menu-language a:hover {
    color: var(--ivory);
    background: rgba(248, 246, 243, 0.15);
    border-color: rgba(248, 246, 243, 0.5);
}
.menu-language a.active {
    color: var(--ivory);
    background: rgba(248, 246, 243, 0.2);
    border-color: var(--ivory);
}
.menu-language-divider {
    display: none; /* Artık gerek yok, her biri kare içinde */
}

/* ============================================
   HERO SLIDER (Ana Sayfa)
   ============================================ */
.hero-slider { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide video, .hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(44, 95, 123, 0.3) 0%, rgba(44, 95, 123, 0.1) 40%, rgba(44, 95, 123, 0.4) 100%);
}
.hero-content {
    position: absolute;
    bottom: 18%; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 0 50px;
    box-sizing: border-box;
}
.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s ease 0.3s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
.hero-label-line { width: 50px; height: 1px; background: rgba(248, 246, 243, 0.5); }
.hero-label-text {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-blue);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 58px);
    color: var(--ivory);
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--light-blue); }
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(248, 246, 243, 0.9);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease 0.7s forwards;
}
.hero-cta {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-sea);
    text-decoration: none;
    padding: 15px 32px;
    background: var(--ivory);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease 0.9s forwards;
    transition: all 0.4s ease;
}
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--ocean);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.hero-cta:hover::before { transform: translateY(0); }
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; transition: all 0.4s ease; }
.hero-cta:hover span, .hero-cta:hover svg { color: var(--ivory); }
.hero-cta:hover svg { transform: translateX(5px); }

/* SLIDE NAVIGATION */
.slide-counter { position: fixed; bottom: 50px; left: 50px; z-index: 100; display: flex; align-items: center; gap: 15px; }
.slide-current { font-family: var(--font-display); font-size: 48px; color: var(--ivory); }
.slide-divider { width: 40px; height: 1px; background: rgba(248, 246, 243, 0.5); transform: rotate(-60deg); }
.slide-total { font-family: var(--font-ui); font-size: 14px; color: rgba(248, 246, 243, 0.6); }

.slide-dots { position: fixed; right: 50px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 15px; }
.slide-dot {
    width: 12px; height: 12px;
    border: 1px solid rgba(248, 246, 243, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}
.slide-dot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px; height: 6px;
    background: var(--ivory);
    border-radius: 50%;
    transition: transform 0.4s ease;
}
.slide-dot.active::before { transform: translate(-50%, -50%) scale(1); }
.slide-dot:hover { border-color: var(--ivory); }

.slide-info { position: fixed; right: 50px; bottom: 50px; z-index: 100; text-align: right; }
.slide-info-label { font-family: var(--font-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ocean); margin-bottom: 5px; }
.slide-info-title { font-family: var(--font-display); font-size: 16px; color: var(--ivory); }

.scroll-hint { position: fixed; bottom: 50px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint-text { font-family: var(--font-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(248, 246, 243, 0.7); }
.scroll-hint-icon { width: 24px; height: 40px; border: 1px solid rgba(248, 246, 243, 0.5); border-radius: 12px; position: relative; }
.scroll-hint-icon::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--ivory);
    border-radius: 2px;
    animation: scrollMove 1.5s ease infinite;
}
@keyframes scrollMove { 0%, 100% { opacity: 1; top: 8px; } 50% { opacity: 0.3; top: 20px; } }

/* ============================================
   PAGE HERO (Rooms Sayfası)
   ============================================ */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.page-hero-slider {
    position: absolute;
    inset: 0;
}
.page-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.page-hero-slide.active {
    opacity: 1;
}
.page-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 95, 123, 0.4) 0%, rgba(44, 95, 123, 0.2) 50%, rgba(44, 95, 123, 0.5) 100%);
}
.page-hero .hero-content {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ivory);
    opacity: 0.7;
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   ROOM CATEGORIES HOVER SLIDER (7 items)
   ============================================ */
.custom-bg-hover-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', var(--font-ui), sans-serif;
}
.custom-bg-hover-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.custom-bg-hover-bg,
.custom-bg-hover-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(.39,.58,.57,1.01);
    background: #151515;
}
.custom-bg-hover-bg.active,
.custom-bg-hover-video.active {
    opacity: 1;
}
.custom-bg-hover-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.custom-bg-hover-item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    height: 100%;
    overflow: visible;
    background: rgba(0,0,0,0.07);
    transition: background 0.3s;
}
.custom-bg-hover-item:hover,
.custom-bg-hover-item.active {
    background: rgba(0,0,0,0.25);
}
.custom-bg-hover-inner-container {
    width: 92%;
    max-width: 600px;
    height: 86%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(20,20,20,0.36);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.12);
    padding: 28px 16px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 4;
}
.custom-bg-hover-inner-container h2 {
    font-family: 'Poppins', var(--font-ui), sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}
.custom-bg-hover-inner-container p {
    font-family: 'Poppins', var(--font-ui), sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.custom-bg-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.custom-bg-progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffc700, #ff6a00 85%, #ff3c00);
    border-radius: 2px;
    transition: width 0s;
}
.custom-bg-hover-item.active .custom-bg-progress-bar span {
    transition: width linear;
    width: 100%;
}
.slaytfancy-button {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.80);
    color: #000;
    font-weight: normal;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', var(--font-ui), sans-serif;
    text-decoration: none;
    transition: background 0.22s ease;
    box-shadow: 0 2px 18px 0 rgba(0,0,0,.12);
    cursor: pointer;
}
.slaytfancy-button-text {
    display: block;
    position: relative;
    transition: transform 0.32s ease;
}
.slaytfancy-button:hover .slaytfancy-button-text {
    transform: translateY(-140%);
}
.slaytfancy-button::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    top: 120%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 14px;
    transition: top 0.32s ease;
    pointer-events: none;
}
.slaytfancy-button:hover::after {
    top: 0;
}

/* ============================================
   PREMIUM ROOM CARDS - Sağlı Sollu Layout
   ============================================ */
.rooms-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%);
    overflow: visible;
}
.section-header {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 50px;
}
.section-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    color: var(--deep-sea);
}
.section-title span {
    font-style: italic;
    font-weight: 300;
}

/* Premium Room Block - Sağlı Sollu */
.premium-room-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    position: relative;
    overflow: visible;
}

/* Fotoğraf Solda - İçerik Sağda */
.premium-room-block.image-left .premium-room-images {
    order: 1;
}
.premium-room-block.image-left .premium-room-content {
    order: 2;
}

/* Fotoğraf Sağda - İçerik Solda */
.premium-room-block.image-right .premium-room-images {
    order: 2;
}
.premium-room-block.image-right .premium-room-content {
    order: 1;
}

/* Images Container */
.premium-room-images {
    position: relative;
    height: 100%;
    min-height: 700px;
    overflow: visible;
}

/* Ana fotoğraf */
.premium-room-main-image {
    position: absolute;
    top: 0;
    width: 75%;
    height: 70%;
    overflow: hidden;
    box-shadow: 30px 30px 80px rgba(44, 95, 123, 0.2);
    z-index: 2;
}

/* Fotoğraf Solda - Sol tarafa yasla */
.premium-room-block.image-left .premium-room-main-image {
    left: 0;
    border-radius: 0 20px 20px 0;
}

/* Fotoğraf Sağda - Sağ tarafa yasla */
.premium-room-block.image-right .premium-room-main-image {
    right: 0;
    left: auto;
    border-radius: 20px 0 0 20px;
}

.premium-room-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

/* Hover efekti - Lüks zoom ve parlaklık */
.premium-room-main-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.02);
}

/* İkinci fotoğraf */
.premium-room-secondary-image {
    position: absolute;
    bottom: 40px;
    width: 55%;
    height: 45%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(44, 95, 123, 0.25);
    z-index: 3;
    border: 8px solid var(--ivory);
}

/* Fotoğraf Solda - İkinci foto sağ tarafa */
.premium-room-block.image-left .premium-room-secondary-image {
    right: 40px;
    left: auto;
}

/* Fotoğraf Sağda - İkinci foto sol tarafa */
.premium-room-block.image-right .premium-room-secondary-image {
    left: 40px;
    right: auto;
}

.premium-room-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

/* Hover efekti - Lüks zoom ve parlaklık */
.premium-room-secondary-image:hover img {
    transform: scale(1.12);
    filter: brightness(1.08) contrast(1.03);
}

/* Content Container */
.premium-room-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;
}

/* Room Number Badge */
.premium-room-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.premium-room-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 300;
    color: var(--ocean);
    opacity: 0.3;
    line-height: 1;
}
.premium-room-rooms {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean);
    padding: 10px 20px;
    background: rgba(107, 163, 190, 0.15);
    border-radius: 30px;
}

/* Room Title */
.premium-room-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--deep-sea);
    margin-bottom: 25px;
    line-height: 1.2;
}
.premium-room-title em {
    font-style: italic;
    color: var(--ocean);
}

/* Room Size - Düzenlendi */
.premium-room-size {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(44, 95, 123, 0.25);
}
.premium-room-size-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    flex-shrink: 0;
}
.premium-room-size-value {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    color: var(--deep-sea);
    line-height: 1;
}
.premium-room-size-unit {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: var(--deep-sea);
    margin-left: -5px;
}
.premium-room-size-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-left: 5px;
}

/* Room Features */
.premium-room-feature {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.premium-room-feature::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

/* Room Description */
.premium-room-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

/* ============================================
   LUXURY BUTTONS - Split Reveal & Liquid Fill
   ============================================ */
.premium-room-actions {
    display: flex;
    gap: 20px;
}

/* Primary Button - Gradient Slide (Overflow-Safe) */
.btn-premium-primary {
    position: relative;
    padding: 20px 45px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    background: linear-gradient(90deg, var(--deep-sea) 0%, var(--deep-sea) 50%, var(--ocean) 50%, var(--ocean) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(44, 95, 123, 0.25);
}
.btn-premium-primary:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 95, 123, 0.35);
}
.btn-premium-primary span {
    position: relative;
    z-index: 1;
}

/* Secondary Button - Liquid Fill */
.btn-premium-secondary {
    position: relative;
    padding: 20px 45px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-sea);
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--deep-sea);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
}
.btn-premium-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--ocean) 0%, var(--deep-sea) 100%);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.btn-premium-secondary:hover::before {
    height: 100%;
}
.btn-premium-secondary:hover {
    color: var(--ivory);
    border-color: var(--ocean);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 95, 123, 0.3);
}
.btn-premium-secondary span {
    position: relative;
    z-index: 1;
}

/* Divider between rooms */
.room-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 123, 0.2), transparent);
    margin: 0;
}

/* ============================================
   Feature Image
   ============================================ */
.feature-image {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(44, 95, 123, 0.4) 100%);
}

/* ============================================
   MODERN HISTORIC SECTION - Bento Grid
   ============================================ */
.historic-section {
    padding: 140px 0;
    background: var(--deep-sea);
    position: relative;
    overflow: hidden;
}
.historic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpolygon points='50 0 100 50 50 100 0 50'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.historic-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}
.historic-section .section-label {
    color: var(--ocean);
}
.historic-section .section-title {
    color: var(--ivory);
}
.historic-section .section-title span {
    color: var(--light-blue);
}

/* Bento Grid Layout */
.historic-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 25px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

/* Bento Items */
.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}
.bento-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Item 1 - Large Left */
.bento-item-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

/* Item 2 - Top Right */
.bento-item-2 {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
}

/* Item 3 - Bottom Right Content */
.bento-item-3 {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--deep-sea) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}
.bento-item-3:hover {
    transform: translateY(-10px);
}
.bento-content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.bento-content-badge span {
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.bento-content-badge p {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.bento-content-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.3;
    margin-bottom: 20px;
}
.bento-content-title em {
    font-style: italic;
    color: var(--light-blue);
}
.bento-content-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.9;
    color: rgba(248, 246, 243, 0.85);
}

/* Overlay for image items */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 95, 123, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.bento-item:hover .bento-overlay {
    opacity: 1;
}
.bento-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}
.bento-item:hover .bento-caption {
    transform: translateY(0);
    opacity: 1;
}
.bento-caption p {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ivory);
}

/* ============================================
   ROOM DETAIL PAGE STYLES
   ============================================ */

/* Room Introduction */
.room-intro {
    padding: 100px 50px;
    background: var(--ivory);
    text-align: center;
}
.room-intro-container {
    max-width: 800px;
    margin: 0 auto;
}
.room-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 35px;
    background: var(--sand);
    border-radius: 50px;
    margin-bottom: 40px;
}
.room-size {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--deep-sea);
}
.room-divider {
    color: var(--ocean);
    opacity: 0.5;
}
.room-numbers {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean);
}
.room-intro-text {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 40px;
}

/* Room Full Width Image */
.room-full-image {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.room-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 95, 123, 0.1) 0%, rgba(44, 95, 123, 0.3) 100%);
}

/* Room Description */
.room-description {
    padding: 100px 50px;
    background: var(--sand);
}
.room-description-container {
    max-width: 900px;
    margin: 0 auto;
}
.room-description-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    color: var(--deep-sea);
    margin-bottom: 30px;
}
.room-description-content h2 em {
    font-style: italic;
    color: var(--ocean);
}
.room-description-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Room Amenities */
.room-amenities {
    padding: 80px 50px;
    padding-bottom: 140px;
    background: var(--deep-sea);
}
.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
}
.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}
.amenities-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 15px;
}
.amenities-header h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--ivory);
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.amenities-grid-8 {
    grid-template-columns: repeat(8, 1fr);
    max-width: 1300px;
}

/* Room Olanaklar Section (TR) */
.room-olanaklar {
    padding: 80px 50px;
    padding-bottom: 140px;
    background: linear-gradient(180deg, var(--deep-sea) 0%, #1e4a5f 100%);
}
.room-olanaklar + .room-split-section {
    margin-top: 120px;
}
.olanaklar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.olanaklar-header {
    text-align: center;
    margin-bottom: 60px;
}
.olanaklar-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 15px;
}
.olanaklar-header h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--ivory);
}
.olanaklar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .olanaklar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .olanaklar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .olanaklar-container {
        padding: 0 20px;
    }
    .room-olanaklar {
        padding: 60px 25px;
        padding-bottom: 100px;
    }
}
@media (max-width: 480px) {
    .olanaklar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.amenity-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}
.amenity-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px;
    background: rgba(107, 163, 190, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
}
.amenity-icon svg {
    width: 26px;
    height: 26px;
}
.amenity-name {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--ivory);
}

/* Room Split Sections */
.room-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.room-amenities + .room-split-section {
    margin-top: 120px;
}
.room-split-section.image-left .room-split-image {
    order: 1;
}
.room-split-section.image-left .room-split-content {
    order: 2;
}
.room-split-section.image-right .room-split-image {
    order: 2;
}
.room-split-section.image-right .room-split-content {
    order: 1;
}
.room-split-image {
    position: relative;
    overflow: hidden;
}
.room-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.room-split-section:hover .room-split-image img {
    transform: scale(1.05);
}
.room-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--ivory);
}
.room-split-section.image-right .room-split-content {
    background: var(--sand);
}
.room-split-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}
.room-split-content .btn-premium-secondary {
    align-self: flex-start;
    margin-top: 15px;
}

/* Room Gallery Section */
.room-gallery-section {
    padding: 100px 50px;
    background: var(--ivory);
}
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 15px;
}
.gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    color: var(--deep-sea);
    margin-bottom: 10px;
}
.gallery-header h2 em {
    font-style: italic;
    color: var(--ocean);
}
.gallery-subtitle {
    font-family: var(--font-ui);
    font-size: 14px;
    letter-spacing: 3px;
    color: #888;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--sand);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--dark);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--deep-sea);
    border-color: var(--deep-sea);
    color: var(--ivory);
}

/* Gallery Grid - New Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}
/* Col-6: Yarım genişlik (3 kolon), 2 row yükseklik */
.gallery-item.col-6 {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
}
/* Metro Gallery Classes */
.gallery-item.col-4 {
    grid-column: span 4 !important;
}
.gallery-item.col-2 {
    grid-column: span 2 !important;
}
.gallery-item.row-2 {
    grid-row: span 2 !important;
}
.gallery-item.row-1 {
    grid-row: span 1 !important;
}
/* 1. Foto - Büyük Sol */
.gallery-item:nth-child(6n+1) {
    grid-column: span 3;
    grid-row: span 2;
}
/* 2. Foto - Sağ Üst */
.gallery-item:nth-child(6n+2) {
    grid-column: span 3;
    grid-row: span 1;
}
/* 3. Foto - Sağ Alt */
.gallery-item:nth-child(6n+3) {
    grid-column: span 3;
    grid-row: span 1;
}
/* 4, 5, 6. Fotolar - Alt Sıra */
.gallery-item:nth-child(6n+4),
.gallery-item:nth-child(6n+5),
.gallery-item:nth-child(6n) {
    grid-column: span 2;
    grid-row: span 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 95, 123, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay span {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
}

/* Other Rooms Section */
.other-rooms-section {
    background: var(--dark);
}
.other-rooms-header {
    text-align: center;
    padding: 80px 50px 0;
}
.other-rooms-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 15px;
}
.other-rooms-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    color: var(--ivory);
}
.other-rooms-header h2 em {
    font-style: italic;
    color: var(--light-blue);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--sand);
    padding: 80px 50px 40px;
}
.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.footer-logo img {
    height: 80px;
    width: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-sea);
    margin-bottom: 20px;
}
.footer-col p,
.footer-col a {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--ocean);
}
.footer-codes {
    font-family: var(--font-ui) !important;
    font-size: 13px !important;
}
.footer-col .footer-lmhw-logo {
    width: 120px;
    height: 74px;
    object-fit: contain;
    margin-bottom: 15px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-sea);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--ivory);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    gap: 20px;
}
.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: #777;
}
.footer-powered {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #777;
}
.footer-powered img {
    height: 35px;
    width: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .premium-room-content {
        padding: 60px 50px;
    }
    .historic-bento-grid {
        grid-template-rows: repeat(2, 300px);
    }
}

@media (max-width: 1200px) {
    /* Fullscreen Menu - Mobilde dikey düzen, scroll edilebilir */
    .fullscreen-menu {
        flex-direction: column;
        overflow-y: auto;
    }
    .menu-left { 
        width: 100%; 
        padding: 100px 40px 40px;
        min-height: auto;
        flex-shrink: 0;
    }
    .menu-right { 
        display: block;
        width: 100%;
        padding: 50px 25px 150px 25px;
        background: rgba(0,0,0,0.2);
        flex-shrink: 0;
    }
    /* Mobil menu-right düzeni */
    .menu-right-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        align-items: start;
    }
    .menu-info-block {
        margin-bottom: 0;
    }
    /* Satır 1: Adres (sol) | İletişim (sağ) */
    .menu-info-block:nth-child(1) { grid-column: 1; grid-row: 1; }
    .menu-info-block:nth-child(2) { grid-column: 2; grid-row: 1; }
    
    /* Satır 2: TR/EN (sol) | Sosyal Medya (sağ) */
    .menu-bottom {
        display: contents;
    }
    .menu-language {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }
    .menu-social {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }
    
    /* Satır 3: Logolar ortada */
    .menu-logos {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: center;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .menu-logos a img {
        width: 120px;
        height: 74px;
    }
    .menu-logos > img {
        width: 120px;
        height: 74px;
    }
    .menu-nav > li > a { font-size: 42px; }
    .footer-content { grid-template-columns: repeat(3, 1fr); }
    .premium-room-block { grid-template-columns: 1fr; min-height: auto; }
    .premium-room-block.image-left .premium-room-images,
    .premium-room-block.image-right .premium-room-images { order: 1; }
    .premium-room-block.image-left .premium-room-content,
    .premium-room-block.image-right .premium-room-content { order: 2; }
    .premium-room-images { min-height: 500px; }
    .premium-room-main-image { width: 85%; height: 65%; }
    .premium-room-block.image-left .premium-room-main-image,
    .premium-room-block.image-right .premium-room-main-image { 
        left: 0; 
        right: auto;
        border-radius: 0 20px 20px 0; 
    }
    .premium-room-secondary-image { width: 50%; height: 50%; }
    .premium-room-block.image-left .premium-room-secondary-image,
    .premium-room-block.image-right .premium-room-secondary-image { 
        right: 40px; 
        left: auto;
    }
    .premium-room-content { padding: 60px 50px !important; }
    .historic-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 350px 350px 300px;
    }
    .bento-item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
    .bento-item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .bento-item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    /* Room Detail Responsive */
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
    .room-split-section { grid-template-columns: 1fr; }
    .room-split-section.image-left .room-split-image,
    .room-split-section.image-right .room-split-image { order: 1; min-height: 400px; }
    .room-split-section.image-left .room-split-content,
    .room-split-section.image-right .room-split-content { order: 2; }
    /* Gallery Responsive */
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(6n+1),
    .gallery-item:nth-child(6n+2),
    .gallery-item:nth-child(6n+3),
    .gallery-item:nth-child(6n+4),
    .gallery-item:nth-child(6n+5),
    .gallery-item:nth-child(6n) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    .gallery-item:nth-child(6n+1) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 992px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .historic-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 400px 300px auto;
    }
    .bento-item-1 { grid-column: 1; grid-row: 1; }
    .bento-item-2 { grid-column: 1; grid-row: 2; }
    .bento-item-3 { grid-column: 1; grid-row: 3; padding: 40px; }
    .custom-bg-hover-list { flex-direction: column; height: auto; }
    .custom-bg-hover-item { 
        min-height: 180px; 
        height: auto; 
        padding: 16px 0; 
        flex: none;
    }
    .custom-bg-hover-inner-container {
        padding: 20px 15px;
        height: auto;
        min-height: 140px;
    }
    .custom-bg-hover-inner-container h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .custom-bg-hover-inner-container p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    /* More Details butonu mobilde görünsün */
    .slaytfancy-button {
        display: inline-block !important;
        padding: 8px 16px;
        font-size: 12px;
        position: relative;
        z-index: 100;
    }
    .custom-bg-progress-bar {
        margin-top: 12px;
    }
    .premium-room-actions { flex-direction: column; gap: 15px; }
    .btn-premium-primary, .btn-premium-secondary { text-align: center; }
    /* Room Detail Responsive */
    .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    /* Gallery 2 column */
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto;
        gap: 10px;
    }
    .gallery-item:nth-child(6n+1) {
        grid-column: span 2;
    }
    /* Tablet Header - Logo daha küçük */
    .logo-img { height: 70px; }
    .header { padding: 20px 40px; }
    .btn-signin { padding: 12px 18px; font-size: 10px; }
    .btn-reserve { padding: 12px 18px; font-size: 10px; }
}

@media (max-width: 768px) {
    .header { padding: 15px 20px; }
    .logo-img { height: 55px; }
    .header-right { 
        flex-direction: column;
        gap: 5px; 
        flex-shrink: 0;
    }
    .btn-signin { 
        display: inline-block;
        padding: 8px 14px; 
        font-size: 8px; 
        letter-spacing: 1px;
        text-align: center;
        min-width: 90px;
    }
    .btn-reserve { 
        padding: 8px 14px; 
        font-size: 8px; 
        letter-spacing: 1px;
        text-align: center;
        min-width: 90px;
    }
    /* Menu mobil */
    .menu-left { padding: 100px 30px 30px; }
    .menu-right { padding: 50px 30px 150px 30px; }
    .menu-nav > li > a { font-size: 32px; }
    .menu-logos a img { width: 100px; height: 62px; }
    .menu-logos > img { width: 100px; height: 62px; }
    .rooms-submenu a { font-size: 18px; padding: 10px 0; }
    
    /* Custom BG Hover - Mobil düzeni */
    .custom-bg-hover-wrapper {
        height: auto;
        min-height: auto;
    }
    .custom-bg-hover-item {
        min-height: 160px;
    }
    .custom-bg-hover-inner-container {
        min-height: 120px;
        padding: 18px 12px;
    }
    .custom-bg-hover-inner-container h2 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .custom-bg-hover-inner-container p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .slaytfancy-button {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    /* Other mobile styles */
    .slide-counter { left: 25px; bottom: 100px; }
    .slide-current { font-size: 32px; }
    .slide-dots { right: 25px; }
    .slide-info, .scroll-hint { display: none; }
    .hero-content { 
        bottom: 22%; 
        padding: 0 20px; 
        max-width: 100%; 
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    .member-trigger { padding: 15px 10px; }
    .member-trigger-text { font-size: 9px; }
    .member-panel { width: 100%; }
    .rooms-section { padding: 80px 0; }
    .section-header { margin-bottom: 60px; }
    .premium-room-images { min-height: 400px; }
    .premium-room-main-image { width: 90%; height: 60%; }
    .premium-room-secondary-image { width: 60%; height: 45%; right: 20px; bottom: 20px; }
    .premium-room-content { padding: 40px 25px !important; }
    .premium-room-number { font-size: 48px; }
    .premium-room-title { font-size: 28px; }
    .premium-room-size-value { font-size: 28px; }
    .btn-premium-primary, .btn-premium-secondary { padding: 16px 30px; }
    .historic-section { padding: 80px 0; }
    .historic-bento-grid { padding: 0 25px; gap: 15px; }
    .bento-item-3 { padding: 30px; }
    .bento-content-title { font-size: 24px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    /* Room Detail Responsive */
    .room-intro { padding: 60px 25px; }
    .room-intro-badge { flex-direction: column; gap: 10px; padding: 20px 30px; }
    .room-intro-text { font-size: 18px; }
    .room-full-image { height: 50vh; min-height: 350px; }
    .room-description { padding: 60px 25px; }
    .room-amenities { padding: 60px 25px; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .amenity-card { padding: 20px 10px; }
    .amenity-icon { width: 46px; height: 46px; }
    .amenity-name { font-size: 9px; }
    .room-split-content { padding: 50px 25px; }
    .room-gallery-section { padding: 60px 25px; }
    .gallery-filter { gap: 10px; }
    .filter-btn { padding: 12px 20px; font-size: 10px; }
    .gallery-grid { gap: 10px; }
    .other-rooms-header { padding: 50px 25px 0; }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .header { padding: 10px 15px; }
    .logo-img { height: 48px; }
    .hamburger { width: 40px; height: 40px; gap: 5px; }
    .hamburger-line { width: 24px; }
    .header-right { gap: 4px; }
    .btn-signin { 
        padding: 6px 12px; 
        font-size: 7px;
        letter-spacing: 0.5px;
        min-width: 80px;
    }
    .btn-reserve { 
        padding: 6px 12px; 
        font-size: 7px;
        letter-spacing: 0.5px;
        min-width: 80px;
    }
    /* Menu small mobile */
    .menu-left { padding: 90px 20px 20px; }
    .menu-right { padding: 50px 20px 150px 20px; }
    .menu-nav > li > a { font-size: 26px; gap: 12px; }
    .menu-nav > li > a .menu-number { font-size: 10px; }
    .menu-info-block h4 { font-size: 11px; }
    .menu-info-block p, .menu-info-block a { font-size: 13px; }
    .menu-logos a img { width: 90px; height: 55px; }
    .menu-logos > img { width: 90px; height: 55px; }
    .menu-language a { font-size: 12px; }
    .menu-social a { width: 34px; height: 34px; }
    .menu-social a svg { width: 14px; height: 14px; }
    .menu-social a svg { width: 16px; height: 16px; }
}

.story-intro {
    padding: 120px 50px;
    background: var(--ivory);
    text-align: center;
}
.story-intro-container {
    max-width: 900px;
    margin: 0 auto;
}
.story-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 20px;
}
.story-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--deep-sea);
    margin-bottom: 30px;
}
.story-intro h2 em {
    font-style: italic;
    color: var(--ocean);
}
.story-intro p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--stone);
}
.story-quote {
    padding: 120px 50px;
    background: var(--deep-sea);
    text-align: center;
}
.story-quote-container {
    max-width: 900px;
    margin: 0 auto;
}
.quote-icon {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--ocean);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}
.story-quote h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 30px;
}
.story-quote p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.story-quote p:last-child {
    margin-bottom: 0;
}
.story-quote-alt {
    background: var(--ivory);
}
.story-quote-alt h3 {
    color: var(--deep-sea);
}
.story-quote-alt p {
    color: var(--stone);
}
.story-quote-alt .quote-icon {
    color: var(--ocean);
}
.story-gallery {
    padding: 100px 50px;
    background: var(--deep-sea);
}
.story-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}
.story-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}
.story-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.story-gallery-item:hover img {
    transform: scale(1.05);
}
.contact-section {
    padding: 120px 50px;
    background: var(--ivory);
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}
.contact-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 20px;
}
.contact-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--deep-sea);
}
.contact-header h2 em {
    font-style: italic;
    color: var(--ocean);
    display: block;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.contact-card {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(107, 163, 190, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
}
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--deep-sea);
    margin-bottom: 15px;
}
.contact-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--stone);
    line-height: 1.6;
}
.contact-card a {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ocean);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-card a:hover {
    color: var(--deep-sea);
}
.contact-map {
    width: 100%;
    height: 500px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 992px) {
    .story-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .story-intro { padding: 80px 25px; }
    .story-quote { padding: 80px 25px; }
    .story-gallery { padding: 60px 25px; }
    .story-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .contact-section { padding: 80px 25px; }
    .contact-header { margin-bottom: 50px; }
}

.main-gallery-section {
    padding: 100px 50px;
    background: var(--deep-sea);
}
.main-gallery-section .gallery-header {
    text-align: center;
    margin-bottom: 60px;
}
.main-gallery-section .gallery-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    display: block;
    margin-bottom: 15px;
}
.main-gallery-section .gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ivory);
}
.main-gallery-section .gallery-header h2 em {
    font-style: italic;
    color: var(--ocean);
}
.gallery-filter-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.gallery-filter-main .filter-btn {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.gallery-filter-main .filter-btn:hover {
    border-color: var(--ocean);
    color: var(--ivory);
}
.gallery-filter-main .filter-btn.active {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--ivory);
}
.main-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}
.main-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}
.main-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.main-gallery-item:hover img {
    transform: scale(1.08);
}
.main-gallery-item .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.main-gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.main-gallery-item .gallery-item-overlay span {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ivory);
}
@media (max-width: 1200px) {
    .main-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .main-gallery-section { padding: 60px 25px; }
    .main-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .gallery-filter-main { gap: 10px; }
    .gallery-filter-main .filter-btn { padding: 10px 18px; font-size: 10px; }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(44, 95, 123, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    transform: translateY(-5px);
    background: rgba(44, 95, 123, 1);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.scroll-to-top img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 150px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .scroll-to-top img {
        width: 24px;
        height: 24px;
    }
}

/* Cookie Policy Page Styles */
.policy-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-sea);
    overflow: hidden;
}
.policy-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean) 100%);
    opacity: 0.8;
}
.policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ivory);
}
.policy-hero-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}
.policy-hero-content p {
    font-family: var(--font-body);
    font-size: 16px;
    opacity: 0.8;
}
.policy-content {
    background: var(--ivory);
    padding: 80px 0;
}
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.policy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--deep-sea);
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(44, 95, 123, 0.2);
}
.policy-section {
    margin-bottom: 40px;
}
.policy-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--deep-sea);
    margin-bottom: 20px;
    font-weight: 500;
}
.policy-section p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.policy-section ul {
    margin: 15px 0 15px 25px;
}
.policy-section li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}
.policy-section a {
    color: var(--ocean);
    text-decoration: underline;
}
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}
.cookie-table {
    width: 100%;
    border-collapse: collapse;
}
.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(44, 95, 123, 0.15);
    font-size: 14px;
}
.cookie-table th {
    background: var(--deep-sea);
    color: var(--ivory);
    font-family: var(--font-ui);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cookie-table td {
    color: #555;
    font-family: var(--font-body);
}
.cookie-table tr:hover {
    background: rgba(44, 95, 123, 0.05);
}
.policy-contact {
    background: rgba(44, 95, 123, 0.05);
    padding: 25px;
    border-radius: 5px;
    margin-top: 20px;
}
.policy-contact p {
    margin-bottom: 8px;
}
.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(44, 95, 123, 0.2);
}
.policy-footer p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 32px;
    }
    .policy-container {
        padding: 0 20px;
    }
    .policy-content {
        padding: 50px 0;
    }
    .policy-section h2 {
        font-size: 20px;
    }
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* Mobile footer padding for reservation bar */
@media (max-width: 768px) {
    footer {
        padding-bottom: 120px;
    }
}
@media (max-width: 480px) {
    footer {
        padding-bottom: 140px;
    }
}


/* ============================================
   POLICY PAGES (Cookie Policy, Privacy Policy etc.)
   ============================================ */

.policy-section {
    padding: 80px 20px;
    background: #faf8f5;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.policy-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C5F7B;
    margin: 30px 0 15px;
}

.policy-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-content a {
    color: #2C5F7B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 15px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h2 {
        font-size: 22px;
    }
    
    .policy-content h3 {
        font-size: 16px;
    }
    
    .policy-content p {
        font-size: 14px;
    }
}

/* ============================================
   MOBILE TOUCH DEVICES - Disable Hover Effects
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Header Buttons */
    .btn-signin:hover {
        color: var(--ivory);
        background: transparent;
        border-color: rgba(250, 248, 245, 0.3);
        transform: none;
        box-shadow: none;
    }
    .btn-signin:hover span {
        color: var(--ivory);
    }
    
    .btn-reserve:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Premium Buttons */
    .btn-premium-primary:hover {
        background-position: 0% 0%;
        transform: none;
        box-shadow: 0 8px 25px rgba(44, 95, 123, 0.25);
    }
    
    .btn-premium-secondary:hover {
        color: var(--deep-sea);
        border-color: var(--deep-sea);
        transform: none;
        box-shadow: none;
    }
    .btn-premium-secondary:hover::before {
        height: 0;
    }
    
    /* Hero CTA Button */
    .hero-cta:hover::before {
        transform: translateY(100%);
    }
    .hero-cta:hover span,
    .hero-cta:hover svg {
        color: var(--deep-sea);
    }
    .hero-cta:hover svg {
        transform: none;
    }
    
    /* Slayt Fancy Button */
    .slaytfancy-button:hover .slaytfancy-button-text {
        transform: none;
    }
    .slaytfancy-button:hover::after {
        top: 120%;
    }
    
    /* Member CTA Button */
    .member-cta-btn:hover::before {
        transform: translateX(-100%);
    }
    .member-cta-btn:hover svg {
        transform: none;
    }
    
    /* Hamburger Menu */
    .hamburger:hover .hamburger-line:nth-child(1) {
        transform: none;
    }
    .hamburger:hover .hamburger-line:nth-child(3) {
        transform: none;
    }
    
    /* Menu Social Links */
    .menu-social a:hover {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.3);
        transform: none;
    }
    
    /* Footer Social Links */
    .footer-social a:hover {
        background: transparent;
        transform: none;
    }
    
    /* Gallery Filter Buttons */
    .filter-btn:hover,
    .gallery-filter-main .filter-btn:hover {
        background: transparent;
        color: var(--deep-sea);
        transform: none;
    }
    
    /* Slide Dots */
    .slide-dot:hover {
        border-color: rgba(248, 246, 243, 0.5);
    }
    
    /* Scroll To Top */
    .scroll-to-top:hover {
        transform: none;
    }
    
    /* General Link Hovers */
    a:hover {
        transform: none;
    }
    
    /* Room Cards Hover */
    .premium-room-block:hover .premium-room-main-image img {
        transform: scale(1);
    }
    .premium-room-block:hover .premium-room-secondary-image {
        transform: none;
    }
}
