/* =========================================
   4. YEREL FONTLAR (LOCAL FONTS)
   ========================================= */
/* Fontları bilgisayarına indirip 'fonts' klasörüne koymalısın */

/* Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap; /* Font yüklenene kadar sistem fontunu gösterir (Hız için önemli) */
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* Dancing Script */
@font-face {
    font-family: 'Dancing Script';
    src: url('fonts/DancingScript-Bold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

/* =========================================
   1. GLOBAL SETTINGS (Devamı...)
   ========================================= */
:root {
    /* ... Buradan sonrası önceki verdiğim CSS kodlarının aynısı ... */
    /* ... Sadece kopyalayıp yapıştır ... */
    --primary-dark: #0A2647; 
    --accent-gold: #FFD25D;
    /* ... vb ... */
}

/* =========================================
   1. GLOBAL SETTINGS
   ========================================= */
:root {
    --primary-dark: #0A2647; 
    --accent-gold: #FFD25D;
    --soft-white: #F9F7F2;
    --glass-dark: rgba(10, 38, 71, 0.98); 
    
    --gallery-bg: #0a2647;
    --amenities-bg: #0D2A1F;
    --reviews-bg: #2A163D;
    
    --airbnb: #FF5A5F;
    --booking: #003580;
    --vrbo: #3b63a3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 0; }

html { scroll-behavior: smooth; }

body { 
    font-family: 'Montserrat', sans-serif; 
    overflow-x: hidden; 
    overflow-y: auto;
    color: var(--primary-dark);
    background-color: #000;
}

.main-container { 
    height: 100vh; 
    width: 100vw; 
    overflow-y: scroll; 
    scroll-snap-type: y mandatory; 
    scroll-behavior: smooth;
}

section { 
    min-height: 100vh; 
    width: 100%; 
    scroll-snap-align: start;
    position: relative; 
    overflow: hidden; 
    padding-top: 90px; 
    padding-bottom: 0;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 4vw, 3.5rem); 
    margin-bottom: 2rem; 
    text-transform: uppercase; 
    text-align: center; 
    letter-spacing: -1px; 
    position: relative; 
    z-index: 5; 
}

.mobile-section-title { display: none; }

/* =========================================
   2. NAVBAR
   ========================================= */


.logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 1; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


.nav-links-container { flex: 2; display: flex; justify-content: center; }

.nav-item::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-gold); transition: 0.3s; }
.nav-item:hover::after { width: 100%; }
.nav-item.active { color: var(--accent-gold); }
.nav-item.active::after { width: 100%; }

.nav-right-cta { flex: 1; display: flex; justify-content: flex-end; }
.dropdown { position: relative; display: inline-block; }

.rez-btn-nav { cursor: pointer; transition: 0.3s; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.rez-btn-nav:hover { background: #fff; }
.dropdown-content { display: none; position: absolute; right: 0; top: 100%; min-width: 250px; z-index: 1001; padding-top: 10px; }
.dropdown-inner { background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s; }
.dd-link { padding: 15px 20px; text-decoration: none; display: flex; align-items: center; gap: 15px; font-weight: 600; color: #333 !important; transition: 0.3s; font-size: 1rem; }
.dd-link:hover { filter: brightness(1.15); padding-left: 25px; }
.dd-airbnb { background: var(--airbnb) !important; color: white !important; }
.dd-booking { background: var(--booking) !important; color: white !important; }
.dd-vrbo { background: var(--vrbo) !important; color: white !important; }

.equalizer-nav-container {
    position: fixed; right: 40px; top: 50%; transform: translateY(-50%);
    z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
    transition: 0.3s;
}
.scroll-text-hint { 
    display: block; 
    writing-mode: vertical-rl; 
    text-orientation: mixed; 
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    font-weight: 600;
    margin-bottom: 10px;
    transform: rotate(180deg);
    transition: color 0.3s;
}
.eq-bar {
    width: 30px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px;
    cursor: pointer; transition: 0.3s; position: relative;
}
.eq-bar:hover { width: 45px; background: var(--accent-gold); opacity: 0.7; }
.eq-bar.active { width: 60px; height: 4px; background: var(--accent-gold); box-shadow: 0 0 10px rgba(255, 210, 93, 0.6); }
.eq-bar::after {
    content: attr(data-label); position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    color: white; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    opacity: 0; transition: 0.3s; white-space: nowrap; pointer-events: none;
}
.eq-bar:hover::after { opacity: 1; right: 50px; }

.equalizer-nav-container.dark-mode .scroll-text-hint { color: rgba(10, 38, 71, 0.8); }
.equalizer-nav-container.dark-mode .eq-bar { background: rgba(10, 38, 71, 0.3); }
.equalizer-nav-container.dark-mode .eq-bar:hover { background: var(--primary-dark); }
.equalizer-nav-container.dark-mode .eq-bar.active { background: var(--primary-dark); box-shadow: none; }
.equalizer-nav-container.dark-mode .eq-bar::after { color: var(--primary-dark); }

/* =========================================
   3. HERO
   ========================================= */
#home { padding-top: 0; } 



.hero-content-central { 
    position: relative; z-index: 2; 
    display: flex; flex-direction: column; 
    align-items: center; justify-content: center; 
    text-align: center; color: white; 
    max-width: 1100px; padding: 0 20px; margin-top: 50px; 
}


.hero-stats-box { display: flex; align-items: center; justify-content: center; background: rgba(10, 38, 71, 0.4); backdrop-filter: blur(8px); border: 1px solid rgba(255, 210, 93, 0.3); border-radius: 15px; padding: 20px 40px; box-shadow: 0 15px 30px rgba(0,0,0,0.3); opacity: 0; animation: fadeUp 1s ease 0.9s forwards; }
.stat-item-styled { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 35px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item-styled:last-child { border-right: none; }
.stat-item-styled i { color: var(--accent-gold); font-size: 1.8rem; margin-bottom: 5px; }
.stat-item-styled strong { font-size: 1.2rem; font-weight: 700; line-height: 1; color: #fff; }
.stat-item-styled span { font-size: 0.85rem; text-transform: uppercase; opacity: 0.9; letter-spacing: 1px; color: var(--soft-white); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.booking-bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 90px; display: flex; z-index: 20; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(10, 38, 71, 0.3); backdrop-filter: blur(5px); }
.book-now-label { width: 300px; background-color: var(--primary-dark); color: var(--accent-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
.platform-links { flex: 1; display: flex; }
.platform-link { flex: 1; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: 0.3s; position: relative; gap: 12px; }
.platform-link i { margin: 0; font-size: 1.6rem; }
.platform-link:hover { flex: 1.4; filter: brightness(1.2); }
.airbnb-bg { background-color: var(--airbnb) !important; color: white !important; }
.booking-bg { background-color: var(--booking) !important; color: white !important; }
.vrbo-bg { background-color: var(--vrbo) !important; color: white !important; }

/* =========================================
   4. ABOUT
   ========================================= */
#about { 
    padding: 90px 5% 0 5%; align-items: center; color: white;
    background-color: #0d1b2a;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.about-container { position: relative; display: flex; width: 100%; max-width: 1200px; gap: 80px; z-index: 2; align-items: flex-start; margin: 40px 0; }
.design-box-wrapper { flex: 1; position: relative; margin-top: 50px; }
.design-box-wrapper::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 1px solid var(--accent-gold); z-index: -1; box-shadow: 0 0 20px rgba(255, 210, 93, 0.2); }
.design-highlight { background: rgba(13, 27, 42, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); padding: 50px 40px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); text-align: left; position: relative; }
.design-title { font-family: 'Playfair Display'; font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 25px; line-height: 1.1; color: #fff; }
.design-title span { color: var(--accent-gold); font-style: italic; }
.design-desc { color: #ccc; font-size: 1.1rem; line-height: 1.8; font-weight: 300; }
.swatch-icon { font-size: 3.5rem; color: var(--accent-gold); margin-top: 30px; display: block; opacity: 0.5; }
.about-grid { flex: 1.1; display: flex; flex-direction: column; gap: 40px; }

.about-list-item { display: flex; gap: 25px; align-items: center; padding-bottom: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s; }
.about-list-item:hover { transform: translateX(10px); border-color: var(--accent-gold); }
.big-icon { font-size: 3rem; color: var(--accent-gold); transition: 0.4s ease; flex-shrink: 0; margin-top: 0; }
.about-list-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 500; margin-bottom: 8px; color: white; }
.about-list-text p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* =========================================
   5. AMENITIES
   ========================================= */
#amenities { 
    color: white; padding: 90px 5% 0 5%; align-items: center; 
    background-color: #0E3B2E;
    background-image: radial-gradient(#0b2f24 2px, transparent 2px), radial-gradient(#0b2f24 2px, #0E3B2E 2px);
    background-size: 80px 80px;
    background-position: 0 0,40px 40px;
}
.amenities-container { text-align: center; max-width: 1200px; width: 100%; z-index: 2; padding: 40px 0; }
.amenities-intro { max-width: 700px; margin: 0 auto 50px auto; }
.amenities-intro h2 { margin-bottom: 15px; }
.amenities-intro p { font-size: 1.1rem; opacity: 0.8; font-weight: 300; }
.amenities-grid-highlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.amenity-card { 
    background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 35px 20px; border-radius: 8px; transition: 0.4s ease; display: flex; flex-direction: column; align-items: center; gap: 15px; 
    position: relative; overflow: hidden;
}
.amenity-card:hover { background: rgba(0, 0, 0, 0.5); transform: translateY(-10px); border-color: var(--accent-gold); box-shadow: 0 15px 50px rgba(0,0,0,0.4); }
.amenity-card i { font-size: 2.2rem; color: var(--accent-gold); opacity: 0.9; transition:0.3s; }
.amenity-card:hover i { transform: scale(1.1); opacity:1; text-shadow: 0 0 15px rgba(255,210,93,0.6); }
.amenity-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; letter-spacing: 1px; color:#fff; }
.amenity-card p { font-size: 0.85rem; opacity: 0.6; font-family: 'Montserrat', sans-serif; }
.view-all-btn { padding: 15px 40px; background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: 0.3s; }
.view-all-btn:hover { background: var(--accent-gold); color: #0E3B2E; box-shadow: 0 0 20px rgba(255,210,93,0.4); }

.amenities-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.4s ease; margin-top:40px;}
.amenities-modal.active { opacity: 1; visibility: visible; }
.modal-content { background: #fff; width: 95%; max-width: 1000px; height: 85vh; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.modal-header { padding: 25px 40px; background: #0E3B2E; color: white; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid var(--accent-gold); }
.close-modal { font-size: 2rem; color: var(--accent-gold); cursor: pointer; }
.modal-body { padding: 20px 40px 20px 40px; overflow-y: auto; color: #333; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.modal-cat-title { font-size: 1.2rem; font-weight: 700; color: #0E3B2E; border-bottom: 1px solid #eee; margin-bottom: 10px; }
.modal-list { list-style: none; }
.modal-list li { margin-bottom: 8px; }
.modal-list li i { color: #0E3B2E; margin-right: 8px; }
.modal-category {margin-top:20px;}


/* =========================================
   6. GALLERY
   ========================================= */
#gallery {
    background-color: #0a2647;
    background-image: linear-gradient(to right, #0b2f24, #0b2f24 2px, #0a2647 2px, #0a2647 );
    background-size: 4px 100%;
    height: 100vh; padding: 0; display: flex; flex-direction: column;
    padding-top: 90px;
}

.gallery-split-layout { 
    display: flex; 
    width: 100%; 
    flex: 1; /* height: 100% yerine esnek olarak alanı doldurmasını sağlıyoruz */
    overflow: hidden; /* Taşmaları önleyip içteki kaydırma çubuğunu mecburi kılar */
    padding-right: 0; 
}
.gallery-stage { 
    flex: 1.5; 
    position: relative; background-size: cover; background-position: center; 
    transition: background-image 0.5s ease-in-out; display: flex; align-items: flex-end; padding: 50px; 
    cursor: zoom-in; overflow: hidden; border-right: none; 
}
.gallery-stage::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1), transparent 50%); z-index: 1; pointer-events: none; }
.stage-caption { position: relative; z-index: 2; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.8); opacity: 0; animation: fadeInStage 0.5s forwards; max-width: 80%; }
@keyframes fadeInStage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stage-cat { color: var(--accent-gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 15px; display: block; }
.stage-desc { font-family: 'Playfair Display', serif; color: white; font-size: 1.3rem; line-height: 1.6; font-style: italic; }

.gallery-sidebar { 
    flex: 1; 
    background: transparent; display: flex; flex-direction: column; padding: 40px;
    padding-right: 120px;
    overflow: hidden; border-left: 1px solid rgba(255,255,255,0.1); 
}
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 2; }
.filter-btn { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); color: #ccc; padding: 8px 16px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); }

.catalog-grid { 
    flex-grow: 1; 
    overflow-y: auto; 
    padding-right: 10px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px; 
    gap: 15px; 
    align-content: start; 
    z-index: 2; 
    min-height: 0; /* Chrome'daki meşhur flex-grid kaydırma çökmesi hatasının sihirli çözümü */
}
.catalog-item { position: relative; width: 100%; height: 100%; border-radius: 0; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; opacity: 0.7; }
.catalog-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: grayscale(50%); }
.catalog-item:hover, .catalog-item.active { border-color: var(--accent-gold); opacity: 1; }
.catalog-item:hover img, .catalog-item.active img { transform: scale(1.1); filter: grayscale(0%); }

.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); z-index: 99999; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s; flex-direction: column; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 85%; max-height: 80vh; border: 1px solid #333; }
.close-lightbox { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: white; cursor: pointer; z-index: 10; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 2.5rem; color: white; cursor: pointer; padding: 20px;
    background: rgba(0,0,0,0.3); border-radius: 50%;
    transition: 0.3s; z-index: 5;
}
.lightbox-nav:hover { background: rgba(255,210,93,0.8); color: #000; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
    color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem;
    margin-top: 15px; text-align: center; max-width: 80%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}


/* =========================================
   7. LOCATION
   ========================================= */
#location {
    padding: 90; 
    display: flex; flex-direction: row; 
    height: 100vh; width: 100%;
    background-color: #0E1621;
    align-items: stretch; 
}
.loc-info-panel { 
    flex: 0 0 35%; 
    background: #0E1621; 
    color: white; 
    padding: 130px 40px 40px 40px; 
    display: flex; flex-direction: column; justify-content: center; 
    border-right: 1px solid rgba(255,255,255,0.1); 
    overflow-y: auto; 
    position: relative; z-index: 2; 
    background-image: repeating-radial-gradient(#151e2b 0, #151e2b 2px, #0E1621 3px, #0E1621 10px); 
}
.loc-header h2 { font-size: 2.5rem; text-align: left; margin-bottom: 10px; color: white; }
.loc-header p { font-size: 1rem; color: var(--accent-gold); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.loc-features-list { display: flex; flex-direction: column; gap: 40px; }
.loc-feature { display: flex; align-items: flex-start; gap: 20px; transition: 0.3s; }
.loc-feature:hover { transform: translateX(10px); }
.l-icon { font-size: 2rem; color: var(--accent-gold); flex-shrink: 0; margin-top: 5px; }
.l-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 10px; }
.l-text p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
.loc-map-wrapper { flex: 1; position: relative; overflow: hidden; }
.map-frame { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(90%) contrast(1.2); transition: filter 0.8s ease; }
.loc-map-wrapper:hover .map-frame { filter: none; }
.fake-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; pointer-events: none; display: flex; justify-content: center; align-items: center; transition: opacity 0.3s; }
.loc-map-wrapper:hover .fake-map-pin { opacity: 0; }
.pin-pulse { width: 20px; height: 20px; background: var(--accent-gold); border-radius: 50%; animation: pulse-gold 2s infinite; }
.pin-icon { font-size: 3rem; color: var(--accent-gold); position: absolute; bottom: 15px; filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5)); }
@keyframes pulse-gold { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 210, 93, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 210, 93, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 210, 93, 0); } }


/* =========================================
   8. HOST
   ========================================= */
#host { 
    background-color: #FFD25D; color: #0A2647;
    background-image: radial-gradient(rgba(255,255,255,0.4) 10%, transparent 10%), radial-gradient(rgba(255,255,255,0.4) 10%, transparent 10%);
    background-size: 40px 40px; background-position: 0 0, 20px 20px;
    padding: 90px 5% 0 5%; display: flex; justify-content: center; align-items: center;
}
.host-section-split { display: flex; width: 100%; max-width: 1300px; gap: 80px; align-items: center; z-index: 2; margin: 50px 0; }

.host-left { 
    flex: 1; background: #fff; padding: 60px 40px; 
    box-shadow: 15px 15px 0px rgba(10, 38, 71, 0.8); 
    display: flex; flex-direction: column; align-items: center; text-align: center; 
    border: 3px solid #0A2647; 
}
.host-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 25px; border: 4px solid #0A2647; }
.host-signature { font-family: 'Dancing Script', cursive; font-size: 2.6rem; color: #0A2647; margin-bottom: 10px; transform: rotate(-5deg); }
.host-title { font-size: 1.5rem; font-family: 'Playfair Display'; margin-bottom: 20px; color: #0A2647; font-weight: 700; }

.host-bio { font-size: 1rem; color: #444; line-height: 1.8; margin-bottom: 20px; font-weight: 500; }
.read-more-btn {
    background: none; border: none; color: #0A2647; font-weight: 700; cursor: pointer;
    border-bottom: 2px solid #0A2647; margin-bottom: 30px; font-family: 'Montserrat';
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
}
.read-more-btn:hover { color: #E07A5F; border-color: #E07A5F; }

.lang-badge { border: 2px solid #0A2647; color: #0A2647; padding: 6px 18px; font-size: 0.75rem; font-weight: 700; margin: 0 5px; letter-spacing: 1px; text-transform: uppercase; }
.guides-right { flex: 1.3; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.guide-card { position: relative; overflow: hidden; cursor: pointer; height: 260px; background: #000; border: 4px solid #fff; }
.guide-card:hover { transform: translateY(-5px); box-shadow: 10px 10px 0 rgba(0,0,0,0.2); border-color: #0A2647; }
.guide-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; opacity: 0.7; filter: grayscale(20%); }
.guide-card:hover .guide-img { transform: scale(1.1); opacity: 0.4; filter: grayscale(0%); }
.guide-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 25px; background: rgba(10, 38, 71, 0.6); transition: 0.3s; }
.guide-card:hover .guide-overlay { background: rgba(10, 38, 71, 0.85); }
.guide-subtitle { color: #FFD25D; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; background: #0A2647; padding: 4px 8px; }
.guide-title { color: white; font-size: 1.5rem; font-family: 'Playfair Display', serif; text-align: center; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

.guide-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); z-index: 10000; display: none; justify-content: center; align-items: center; padding: 0px; }

.guide-modal.active { display: flex;}

.guide-content { background: #fff; padding: 50px; width: 95%; max-width: 900px; max-height: 90vh; overflow-y: auto; text-align: left; color: #333; border: 4px solid #0A2647; position: relative; background-color: #fff;
opacity: 1;
background-image:  linear-gradient(#f6f6f6 0.7000000000000001px, transparent 0.7000000000000001px), linear-gradient(to right, #f6f6f6 0.7000000000000001px, #fff 0.7000000000000001px);
background-size: 3px 3px;}
.guide-content img { width: 100%; height: 300px; object-fit: cover; margin-bottom: 20px; border-radius: 4px; }
.guide-content h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; color: #0A2647; border-bottom: 2px solid #FFD25D; padding-bottom: 10px; }
.guide-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 15px; }


/* =========================================
   9. REVIEWS
   ========================================= */
#reviews { 
    background-color: #2A163D;
    background-image: radial-gradient(#452d5c 2px, transparent 3px), radial-gradient(#452d5c 2px, #2A163D 3px);
    background-size: 80px 80px;
    background-position: 0 0,40px 40px;
    color: white;
    min-height: 100vh; width: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: relative; overflow: hidden; 
    padding-top: 90px;
}

.reviews-split-wrapper {
    display: flex; width: 100%; max-width: 1400px;
    align-items: center; justify-content: space-between;
    padding: 0 50px; z-index: 2; height: 100%;
}

.reviews-left-col {
    flex: 0 0 30%;
    text-align: left;
    position: relative;
}
.reviews-left-col h2 { 
    color: white; font-size: clamp(3rem, 5vw, 5rem); margin: 0; line-height: 1; text-align: left;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}
.reviews-left-col p { 
    color: var(--accent-gold); text-transform: uppercase; letter-spacing: 6px; 
    font-size: 1rem; margin-top: 20px; font-weight: 700;
}
.reviews-left-col::after {
    content: ''; display: block; width: 60px; height: 4px; background: var(--accent-gold); margin-top: 30px;
}

.reviews-mosaic-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 50px;
    padding-bottom: 80px; 
}

.rw-big { grid-column: span 2; }

.review-white-card {
    background: #fff;
    padding: 25px; 
    border-top: 5px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; justify-content: space-between;
    transition: 0.3s; opacity: 0.95;
    color: #333;
}
.review-white-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.5); opacity: 1; z-index: 5; }

.rs-stars { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.rs-text { 
    font-size: 0.9rem; line-height: 1.5; color: #444; margin-bottom: 15px; 
    font-family: 'Playfair Display', serif; font-style: italic; 
}
.rs-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #eee; padding-top: 12px; }
.rs-avatar { width: 35px; height: 35px; background: #2A163D; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.rs-name { font-weight: 700; font-size: 0.8rem; color: #2A163D; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
MACBOOK & LAPTOP KESİN ÇÖZÜM (AMENITIES + REVIEWS)
========================================= */
@media screen and (min-width: 992px) and (max-width: 1600px) {

 /* --- REVIEWS (YORUMLAR) - AYNI KALDI (DOKUNMA) --- */
 #reviews {
     display: flex !important;
     flex-direction: column !important;
     justify-content: center !important;
     height: auto !important;
     min-height: 100vh !important;
     padding-top: 120px !important;   
     padding-bottom: 180px !important;
     position: relative !important;
 }

 .reviews-split-wrapper {
     display: flex !important;
     flex-direction: row !important;
     align-items: center !important;
     justify-content: space-between;
     width: 100%;
     max-width: 1300px;
     padding: 0 40px;
     gap: 40px;
 }

 .reviews-left-col {
     flex: 0 0 35%; 
     text-align: left !important; 
     margin-top: 0 !important; 
 }
 .reviews-left-col h2 { font-size: 3rem !important; text-align: left !important; }
 .reviews-left-col p { text-align: left !important; margin-top: 15px; }
 .reviews-left-col::after { margin: 20px 0 !important; }

 .reviews-mosaic-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px !important;
     margin: 0 !important;
     padding: 0 !important;
 }

 .review-white-card { padding: 15px !important; }
 .rs-text { font-size: 0.8rem !important; line-height: 1.4 !important; }
 .rs-stars { font-size: 0.75rem !important; margin-bottom: 5px !important; }
 
 .booking-bar {
     height: 90px !important;
     bottom: 0 !important;
     position: absolute !important;
     z-index: 100 !important;
 }

 /* --- AMENITIES (OLANAKLAR) - GENİŞLETİLDİ --- */
 #amenities { 
     padding-top: 100px !important; /* Header payı */
     justify-content: center;       /* Dikeyde ortala */
 }
 
 .amenities-container { 
     padding: 20px 0; /* İçeriği biraz yaydık */
 }
 
 .amenities-intro { 
     margin-bottom: 40px; /* Başlık ile kartların arasını açtık */
 }
 .amenities-intro h2 { font-size: 2.5rem; } /* Başlığı büyüttük */
 
 .amenities-grid-highlight { 
     gap: 25px !important; /* Kartlar arası boşluğu artırdık */
     margin-bottom: 40px; 
 }
 
 .amenity-card { 
     padding: 30px 20px !important; /* Kartları şişirdik, büyüttük */
     gap: 15px; 
 }
 
 .amenity-card i { font-size: 2rem !important; } /* İkonları eski boyutuna yaklaştırdık */
 .amenity-card h4 { font-size: 1.1rem !important; } /* Yazıları büyüttük */
 .amenity-card p { font-size: 0.85rem !important; line-height: 1.5; display: block; }
 
 .view-all-btn { 
     padding: 15px 40px; 
     font-size: 1rem; 
     margin-top: 10px;
 }
}

/* =========================================
   MEDIA QUERIES - MOBILE & TABLET
   ========================================= */
@media (max-width: 1200px) {
  
    .modal-body { padding: 10px 20px 10px 20px; overflow-y: auto; color: #333; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .modal-list {font-size:0.7rem;}
    .main-container { height: auto; width: 100%; overflow: visible; scroll-snap-type: none; }
    section { height: auto; min-height: auto; padding: 60px 20px; scroll-snap-align: none; border-bottom: 1px solid rgba(255, 210, 93, 0.3); }
    .nav-links-container, .equalizer-nav-container { display: none; }
    .nav-bar { padding: 0 20px; height: 70px; }
    .logo-text { font-size: 1.1rem; }
    .rez-btn-nav { padding: 8px 12px; font-size: 0.75rem; }
    
    #home { min-height: 85vh; padding: 40px 20px 20px 20px; background-position: center center !important; border-bottom: none; justify-content: center; }
    .hero-content-central { margin-top: 0; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 3px; margin-bottom: 15px; }
    .hero-title { font-size: 2.8rem; line-height: 1.1; margin-bottom: 30px; }
    
    .hero-stats-box { display: flex; justify-content: space-around; width: 100%; padding: 10px; gap: 10px; }
    .stat-item-styled { padding: 5px; border: none; gap: 4px; }
    .stat-item-styled i { font-size: 1.5rem; margin: 0; }
    .stat-item-styled strong { font-size: 1.1rem; }
    .stat-item-styled span { display: none; }
    
    .about-container { flex-direction: column; gap: 30px; margin: 0; }
    .design-box-wrapper { width: 100%; margin-top: 0; order: -1; }
    .design-highlight { padding: 25px; text-align: center; }
    .design-title { font-size: 2rem; margin-bottom: 15px; }
    .swatch-icon { margin-top: 20px; font-size: 2.5rem; }
    .about-grid { width: 100%; padding: 0 10px; }
    .about-list-item { padding-bottom: 15px; gap: 15px; align-items: center; }
    
    #amenities {
        padding-top:0px;
    }
    .amenities-intro { margin-bottom: 30px; }
    .amenities-intro h2 { font-size: 2rem; }
    .amenities-grid-highlight { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
    .amenity-card { padding: 20px 10px; gap: 8px; }
    .amenity-card i { font-size: 1.5rem; } 
    .amenity-card h4 { font-size: 1rem; margin: 0; }
    .amenity-card p { display: none; } 
    
    #gallery { height: auto; display: block; background-color: #0a2647; background-image: linear-gradient(to right, #0b2f24, #0b2f24 2px, #0a2647 2px, #0a2647 ); background-size: 4px 100%; padding-top: 0px;}
    .gallery-split-layout { flex-direction: column; padding-top: 20px; padding-bottom: 40px; }
    .gallery-stage { display: none; }
    .gallery-sidebar { width: 100%; flex: none; padding: 0 10px; height: auto; border: none; overflow: visible; }
    .mobile-section-title { display: block; color: white; text-align: center; font-family: 'Playfair Display'; font-size: 2rem; margin-bottom: 20px; }
    
    .gallery-filters { justify-content: center; border-bottom: none; }
    .filter-btn { padding: 6px 12px; font-size: 0.75rem; border-radius: 20px; margin: 2px; }
    
    /* 3-) MOBİL GALERİ: YATAY SCROLL (CAROUSEL) */
    .catalog-grid { 
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        grid-auto-rows: auto;
        gap: 15px;
        padding-bottom: 20px;
        max-height: none;
    }
    .catalog-grid::-webkit-scrollbar { height: 4px; } /* İnce scrollbar */
    
    .catalog-item {
        flex: 0 0 85%; /* Ekranda %85 genişlik kaplasın */
        width: 85%;
        height: 250px;
        scroll-snap-align: center;
        border: none;
    }
    .gallery-load-more { display: none !important; } /* Buton gizlendi */

    #reviews { padding: 60px 20px 150px 20px; }
    .reviews-left-col { width: 100%; text-align: center; align-items: center; margin-bottom: 30px; }
    .reviews-left-col h2 { font-size: 2.5rem; text-align: center; width: 100%; }
    .reviews-left-col::after { margin: 15px auto; }
    .reviews-split-wrapper { flex-direction: column; padding: 0 10px; }
    .reviews-mosaic-grid { display: flex; flex-direction: column; padding: 0; margin: 0; width: 100%; gap: 20px; }
    .review-white-card:nth-child(n+4) { display: none; }

    #host { padding: 60px 20px; flex-direction: column; height: auto; }
    .host-section-split { flex-direction: column; gap: 30px; margin: 0; width: 100%; }
    .host-left { width: 100%; padding: 30px 20px; }
    .guides-right { grid-template-columns: 1fr 1fr; width: 100%; gap: 10px; }
    .guide-card { height: 160px; }
    .guide-title { font-size: 1.1rem; }
    
    #location { flex-direction: column; height: auto; padding: 0; }
    .loc-info-panel { width: 100%; padding: 40px 20px; flex: none; align-items: center; text-align: center; }
    .loc-header h2 { text-align: center; }
    .loc-features-list { align-items: center; }
    .loc-feature { flex-direction: column; align-items: center; text-align: center; }
    .loc-map-wrapper { height: 350px; flex: none; }
    
    .booking-bar { flex-direction: column; height: auto; padding: 0; position: fixed; bottom: 0; background: rgba(10, 38, 71, 0.98); }
    .book-now-label { width: 100%; padding: 12px; font-size: 0.9rem; }
    .platform-links { width: 100%; }
    .platform-link { padding: 12px 0; font-size: 0.85rem; }
}

/* Rehber İçerik Alanı */
.guide-section {
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
}

/* Kategori Başlıkları (Street Food vb.) */
.guide-subtitle {
    color: #ffd25d !important;
    font-size: 1.6rem !important;
    font-weight: 700;
    margin: 40px 0 20px 0 !important;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 210, 93, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-item {
    cursor: pointer; /* İmleç el işareti olur */
    transition: all 0.3s ease;
    position: relative; /* Linkin kapsama alanı için */
}

/* Karta gelince biraz daha belirginleşsin */
.guide-item:hover {
    background: rgba(255, 210, 93, 0.08) !important; /* Hafif sarımsı bir parıltı */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Kartın içindeki linkin altındaki çizgiyi kaldır (opsiyonel) */
.guide-item h4 a {
    text-decoration: none !important;
}

.guide-subtitle:first-child { margin-top: 10px !important; }

/* Giriş Metni */
.guide-intro {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Her Bir Mekan Bloğu */
.guide-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid #ffd25d;
    transform: translateX(5px);
}

/* Mekan Başlığı ve Link */
.guide-item h4 {
    margin: 0 0 10px 0 !important;
}

.guide-item h4 a {
    color: #ffd25d;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.guide-item h4 a i {
    color: #ffd25d;
    font-size: 0.9rem;
}



.guide-item h4 a:hover {
    color: #ffd25d;
}

/* Mekan Açıklaması */
.guide-item p {
    margin: 0 !important;
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

/* Ayırıcı Çizgi (Kategoriler Arası) */
.guide-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-dark), transparent);
    margin: 40px 0;
    border: none;
}

/* Location Paneli İçindeki Adres Kutusu */
.loc-address-box {
    margin-top: 40px; /* Özellikler listesiyle arasına nefes alacak boşluk */
    padding-top: 25px;
    border-top: 1px dashed rgba(255, 210, 93, 0.3); /* Üstte zarif altın rengi kesik çizgi */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7); /* Soft beyaz/gri tonu */
    line-height: 1.6;
}

.loc-address-box strong a {
    display: flex;
    align-items: flex-start;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
}

.loc-address-box strong a:hover {
    color:#FFFFFF;
}

.loc-address-box strong i {
    margin-top: 3px;
    margin-right: 10px;
    font-size: 1rem;
}

.loc-address-box span {
    display: block;
    padding-left: 24px; /* İkonun hizasına gelmesi için içeriden ittik */
}

