/* oda.eflinahotel.com public galeri — açık tema, responsive */
:root {
    --brand: #4c6b6c;        /* logo rengi */
    --bg: #f5f6f8;
    --card: #e9ecef;
    --text: #2a2f36;
    --muted: #6b7682;
}
* { box-sizing: border-box; }
html, body {
    /* full-bleed galeri 100vw kullandığı için mobilde alt-piksel/scrollbar
       kaynaklı yatay kaymayı engelle */
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: system-ui, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.oda-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e4e7eb;
    padding: 12px 18px;
    text-align: center;
}
.oda-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.oda-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.oda-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 14px 90px;
}
.oda-empty { text-align: center; color: var(--muted); padding: 60px 0; }

.album-section { margin-bottom: 38px; }
.album-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand);
    display: inline-block;
}

/* Foto galeri: sayfayı kenardan kenara kaplayan (full-bleed) carousel.
   .oda-main max-width 1200 + padding'i kırıp tam viewport genişliğine taşırız. */
.album-section .gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 14px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 4px 14px 12px;
    scrollbar-width: thin;
}
.album-section .gallery::-webkit-scrollbar { height: 6px; }
.album-section .gallery::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .2); border-radius: 3px; }

/* Carousel slaytı: çoklu foto durumunda yan yana, kaydırılarak gezilir */
.album-section .g-item {
    flex: 0 0 88vw;
    max-width: 760px;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
}
@media (min-width: 768px) {
    .album-section .g-item { flex-basis: 60vw; aspect-ratio: 16 / 9; }
}

/* Tek fotoğraf: carousel yok, tam genişlik kapla */
.album-section .gallery.single { scroll-snap-type: none; }
.album-section .gallery.single .g-item {
    flex-basis: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
}

.g-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--card);
    cursor: zoom-in;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.g-item:hover img { transform: scale(1.06); }

/* Yüzen butonlar: Hemen Ara solda, WhatsApp sağda */
.fab {
    position: fixed;
    bottom: 18px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}
.fab:hover { transform: scale(1.06); }

/* WhatsApp: sağ alt, yeşil daire */
.wa-btn {
    right: 18px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
}

/* Hemen Ara: sol alt, metinli pill, marka rengi */
.call-btn {
    left: 18px;
    height: 56px;
    padding: 0 22px 0 18px;
    border-radius: 28px;
    background: var(--brand);
    font-weight: 700;
    font-size: 1rem;
    gap: 8px;
}
.call-btn .fab-label { white-space: nowrap; }
@media (max-width: 420px) {
    .call-btn { padding: 0 18px 0 16px; font-size: .95rem; }
}

/* ===================== Günlük Program ek stilleri ===================== */
.gp-section { margin-bottom: 34px; }

/* HTML yazı bölümü: okunaklı tipografi */
.gp-html {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    line-height: 1.65;
    font-size: 1.02rem;
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.gp-html pre { white-space: pre-wrap; overflow-x: auto; }
.gp-html h1, .gp-html h2, .gp-html h3, .gp-html h4 { color: var(--brand); margin: .2em 0 .5em; line-height: 1.3; }
.gp-html p { margin: 0 0 .8em; }
.gp-html ul, .gp-html ol { margin: 0 0 .8em 1.2em; padding: 0; }
.gp-html li { margin-bottom: .3em; }
.gp-html a { color: var(--brand); font-weight: 600; }
.gp-html blockquote {
    margin: 0 0 .8em;
    padding: .4em 1em;
    border-left: 4px solid var(--brand);
    background: #f3f6f6;
    color: var(--muted);
}
.gp-html img { max-width: 100%; height: auto; border-radius: 8px; }

/* Karşılama başlığı */
.gp-greeting {
    max-width: 1200px;
    margin: 6px auto 0;
    padding: 0 14px;
    color: var(--muted);
    text-align: center;
    font-size: 1.02rem;
}

/* Erişim dışı / kapanış mesaj sayfası */
.gp-msg-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}
.gp-msg {
    max-width: 460px;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}
.gp-msg .gp-msg-icon {
    font-size: 2.4rem;
    color: var(--brand);
    margin-bottom: 10px;
}
.gp-msg h1 { font-size: 1.3rem; color: var(--brand); margin: .2em 0 .4em; }
.gp-msg p { color: var(--muted); margin: .3em 0; line-height: 1.55; }
.gp-msg .gp-actions { margin-top: 18px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gp-msg .gp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-weight: 600;
    padding: 10px 18px; border-radius: 24px;
    background: var(--brand); color: #fff;
}
.gp-msg .gp-btn.alt { background: #25d366; }
