/* =============================================
   MONA BOSPHORUS HOTEL — site.css
   wwwroot/css/site.css
   ============================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #10243f;
    --blue: #1f3d63;
    --mid: #315f8c;
    --sky: #8fb7d7;
    --pale: #f4f1ea;
    --cream: #f7f3ec;
    --white: #ffffff;
    --gold: #b99a5b;
    --gold2: #d7bd7a;
    --text: #1f2933;
    --muted: #6b7280;
    --border: rgba(31,41,51,0.12);
}

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

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* =============================================
   NAVİGASYON
   ============================================= */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16,36,63,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

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

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pale);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.logo-m {
    color: var(--gold2);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

    .nav-links a {
        color: rgba(255,255,255,0.75);
        font-size: 0.75rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 400;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--gold2);
        }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold2);
    color: var(--gold2);
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

    .nav-cta:hover {
        background: var(--gold2);
        color: var(--navy);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

    .hamburger span {
        width: 22px;
        height: 1.5px;
        background: var(--pale);
        display: block;
        transition: 0.3s;
    }

/* =============================================
   YARDIMCI / ORTAK
   ============================================= */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.9rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.1;
}

    .section-title.light {
        color: var(--pale);
    }

.section-sub {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.78;
    max-width: 540px;
    margin-top: 1rem;
}

.gold-line {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin-top: 1.1rem;
}

    .gold-line.center {
        margin-left: auto;
        margin-right: auto;
    }

/* =============================================
   BUTONLAR
   ============================================= */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.88rem 2.4rem;
    font-size: 0.79rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
}

    .btn-gold:hover {
        opacity: 0.84;
    }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--pale);
    border: 1px solid rgba(255,255,255,0.38);
    padding: 0.88rem 2.4rem;
    font-size: 0.79rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    transition: border-color 0.2s, color 0.2s;
}

    .btn-ghost:hover {
        border-color: var(--gold2);
        color: var(--gold2);
    }

.btn-navy {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.65rem 1.4rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: opacity 0.2s;
}

    .btn-navy:hover {
        opacity: 0.82;
    }

/* =============================================
   HERO
   ============================================= */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
}

    .hero-bg img {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 9rem 1.5rem 5rem;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

    .hero-eyebrow::before, .hero-eyebrow::after {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

    .hero-eyebrow span {
        font-size: 0.7rem;
        letter-spacing: 0.26em;
        text-transform: uppercase;
        color: var(--gold2);
    }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 1.3rem;
    letter-spacing: 0.02em;
}

    .hero-title em {
        color: var(--gold2);
        font-style: italic;
        display: block;
    }

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 580px;
    margin: 0 auto 2.6rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: none !important;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

    .hero-scroll span {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
    }

    .hero-scroll::after {
        content: '';
        display: block;
        width: 1px;
        height: 38px;
        background: linear-gradient(to bottom, rgba(215,189,122,0.7), transparent);
    }

/* =============================================
   HAKKIMIZDA
   ============================================= */
#hakkimizda {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2rem;
    width: 52%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 55px rgba(16,36,63,0.15);
}

.about-gold-corner {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 72px;
    height: 72px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.6rem;
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.feat strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

.feat span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* =============================================
   ODALAR
   ============================================= */
#odalar {
    background: var(--cream) !important;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.35s, box-shadow 0.35s;
}

    .room-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 65px rgba(16,36,63,0.12);
    }

.room-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

    .room-img-wrap img {
        transition: transform 0.6s;
    }

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

.room-badge-wrap {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
}

.room-badge {
    background: rgba(16,36,63,0.86);
    color: var(--gold2);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.room-body {
    padding: 1.8rem 2rem 2rem;
}

.room-cat {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0.3rem 0 0.8rem;
}

.room-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.room-tag {
    background: var(--pale);
    color: var(--blue);
    padding: 0.28rem 0.8rem;
    font-size: 0.72rem;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 1.3rem;
    border-top: 1px solid var(--border);
}

.rooms-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--muted);
    font-size: 0.88rem;
}

    .rooms-note strong {
        color: var(--navy);
    }

/* =============================================
   GALERİ
   ============================================= */
#galeri {
    background: var(--navy);
    padding: 7rem 0;
}

    #galeri .section-title {
        color: var(--pale);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 10px;
    margin-top: 3rem;
}

.gal-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

    .gal-item img {
        transition: transform 0.5s;
        filter: saturate(0.9);
    }

    .gal-item:hover img {
        transform: scale(1.07);
        filter: saturate(1);
    }

    /* İlk ve her 5'inci öğe geniş */
    .gal-item:nth-child(5n+1) {
        grid-column: span 2;
    }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,36,63,0);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    transition: background 0.3s;
}

.gal-item:hover .gal-overlay {
    background: rgba(16,36,63,0.48);
}

.gal-caption {
    color: transparent;
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.gal-item:hover .gal-caption {
    color: rgba(255,255,255,0.88);
}

/* Galeri "Tümünü Gör" butonu */
.gallery-load-more {
    text-align: center;
    margin-top: 2.5rem;
}

/* =============================================
   GALERİ MODAL
   ============================================= */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 28, 0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .gallery-modal.open {
        display: flex;
    }

    .gallery-modal img {
        max-width: 90vw;
        max-height: 86vh;
        width: auto;
        height: auto;
        object-fit: contain;
        box-shadow: 0 30px 90px rgba(0,0,0,0.45);
    }

.gallery-close,
.gallery-prev,
.gallery-next {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: border-color 0.2s, color 0.2s;
}

    .gallery-close:hover,
    .gallery-prev:hover,
    .gallery-next:hover {
        border-color: var(--gold2);
        color: var(--gold2);
    }

.gallery-close {
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 1;
}

.gallery-prev,
.gallery-next {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 2.4rem;
    line-height: 1;
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

/* =============================================
   HİZMETLER
   ============================================= */
#hizmetler {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    padding: 2.4rem 1.8rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--white);
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 50px rgba(16,36,63,0.08);
    }

/* Resimli servis kartları (ana sayfa üçlü blok) */
.home-feature-grid .service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-feature-grid .srv-name {
    padding: 1.2rem 1.5rem 0.4rem;
}

.home-feature-grid .srv-desc {
    padding: 0 1.5rem 1.8rem;
}

.home-feature-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.home-feature-grid .service-card:hover .home-feature-img img {
    transform: scale(1.05);
}

.srv-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .srv-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--mid);
        fill: none;
        stroke-width: 1.5;
    }

.srv-name {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.srv-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
}

/* =============================================
   İLETİŞİM BANDI (rezervasyon yerine)
   ============================================= */
#rez-band {
    background: var(--navy);
    padding: 5rem 0;
}

.rez-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.rez-band-text .section-title {
    color: var(--pale);
}

.rez-band-text p {
    color: rgba(255,255,255,0.62);
    font-size: 0.93rem;
    margin-top: 0.5rem;
}

/* =============================================
   İLETİŞİM & FORM
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(16,36,63,0.08);
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid rgba(16,36,63,0.14);
        background: var(--white);
        font-family: 'Jost', sans-serif;
        font-size: 0.9rem;
        color: var(--text);
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--mid);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.val-error {
    color: #c0392b;
    font-size: 0.77rem;
    margin-top: 0.3rem;
    display: block;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ci-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--mid);
        fill: none;
        stroke-width: 1.5;
    }

.ci-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

.ci-text span {
    font-size: 0.84rem;
    color: var(--muted);
}

.map-embed {
    width: 100%;
    height: 280px;
    border: none;
    margin-top: 2rem;
    filter: saturate(0.75);
}

/* =============================================
   SAYFA HERO (İç sayfalar)
   ============================================= */
.page-hero {
    height: 50vh;
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

    .page-hero-bg img {
        opacity: 0.62;
    }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,36,63,0.68);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}

    .page-hero-content h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.4rem, 6vw, 4.8rem);
        font-weight: 600;
        color: #fff;
        line-height: 1.1;
    }

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

    .breadcrumb a, .breadcrumb span {
        font-size: 0.77rem;
        color: rgba(255,255,255,0.52);
        letter-spacing: 0.08em;
    }

    .breadcrumb .current {
        color: var(--gold2);
    }

/* =============================================
   ODALAR DETAY SAYFASI
   ============================================= */
.room-detail {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
}

    .room-detail:last-child {
        border-bottom: none;
    }

    .room-detail.reverse {
        direction: rtl;
    }

        .room-detail.reverse > * {
            direction: ltr;
        }

.room-detail-main {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.room-detail-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.room-detail-thumb {
    height: 110px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .room-detail-thumb img {
        transition: transform 0.4s;
    }

    .room-detail-thumb:hover img {
        transform: scale(1.06);
    }

.room-detail-info {
    padding-top: 1rem;
}

/* Amenity grupları */
.amenity-group {
    margin: 1.5rem 0;
}

.amenity-group-title {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--muted);
}

    .amenity::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #0b1c32;
    padding: 5rem 0 0;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pale);
    margin-bottom: 1.1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.72;
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.55);
        transition: 0.2s;
    }

        .footer-socials a:hover {
            border-color: var(--gold2);
            color: var(--gold2);
        }

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 1.3rem;
    font-weight: 500;
}

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

    .footer-col ul li {
        font-size: 0.83rem;
        color: rgba(255,255,255,0.52);
    }

    .footer-col ul a {
        font-size: 0.83rem;
        color: rgba(255,255,255,0.52);
        transition: color 0.2s;
    }

        .footer-col ul a:hover {
            color: var(--gold2);
        }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .footer-bottom p, .footer-bottom a {
        font-size: 0.77rem;
        color: rgba(255,255,255,0.28);
    }

        .footer-bottom a:hover {
            color: rgba(255,255,255,0.5);
        }

/* =============================================
   ANİMASYON
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: none;
    }

.fade-up-d1 {
    transition-delay: 0.1s;
}

.fade-up-d2 {
    transition-delay: 0.2s;
}

.fade-up-d3 {
    transition-delay: 0.3s;
}

/* =============================================
   RESPONSİVE — TABLET (max 1100px)
   ============================================= */
@media (max-width: 1100px) {
    .nav-inner {
        padding: 1.1rem 2rem;
    }

    .nav-links {
        gap: 1.8rem;
    }

    .about-grid {
        gap: 4rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   RESPONSİVE — TABLET KÜÇÜK (max 900px)
   ============================================= */
@media (max-width: 900px) {
    section {
        padding: 5.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11,28,50,0.98);
        padding: 2.5rem 2rem;
        gap: 1.8rem;
        overflow-y: auto;
        z-index: 999;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            font-size: 1rem;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.88);
        }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    /* Hero */
    .hero-content {
        padding: 8rem 1.5rem 5rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Hakkımızda */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-accent {
        right: 0;
        bottom: -2rem;
        width: 48%;
    }

    .about-img-main {
        aspect-ratio: 16/10;
    }

    /* Odalar */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Galeri */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gal-item:nth-child(5n+1) {
        grid-column: span 2;
    }

    /* Hizmetler */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    /* İletişim bandı */
    .rez-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* İletişim */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Odalar detay */
    .room-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr !important;
    }

        .room-detail.reverse {
            direction: ltr !important;
        }

    .room-detail-thumb-row {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-img-wrap {
        padding-bottom: 3rem;
    }

    /* Modal */
    .gallery-prev {
        left: 0.7rem;
    }

    .gallery-next {
        right: 0.7rem;
    }

    .gallery-close {
        top: 1rem;
        right: 1rem;
    }
}

/* =============================================
   RESPONSİVE — MOBİL (max 600px)
   ============================================= */
@media (max-width: 600px) {
    section {
        padding: 4.5rem 0;
    }

    .container {
        padding: 0 1.2rem;
    }

    /* Nav */
    .nav-inner {
        padding: 1rem 1.2rem;
    }

    .nav-logo {
        font-size: 1.35rem;
    }

    .nav-links {
        top: 62px;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

        .nav-links a {
            font-size: 1.05rem;
        }

    /* Hero */
    .hero-content {
        padding: 7rem 1.2rem 4rem;
    }

    .hero-eyebrow {
        margin-bottom: 1.2rem;
    }

        .hero-eyebrow::before, .hero-eyebrow::after {
            width: 20px;
        }

        .hero-eyebrow span {
            font-size: 0.62rem;
            letter-spacing: 0.18em;
        }

    .hero-title {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-gold, .btn-ghost {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    /* Hakkımızda */
    .about-img-accent {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-img-main {
        aspect-ratio: 4/3;
    }

    /* Bölüm başlıkları */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .section-sub {
        font-size: 0.9rem;
    }

    /* Odalar */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .room-name {
        font-size: 1.55rem;
    }

    .room-body {
        padding: 1.5rem;
    }

    /* Galeri */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .gal-item:nth-child(5n+1) {
        grid-column: span 2;
    }

    .gal-caption {
        color: rgba(255,255,255,0.7);
    }

    /* Hizmetler */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.8rem 1.2rem;
    }

    /* Odalar detay */
    .room-amenities {
        grid-template-columns: 1fr;
    }

    .room-detail-thumb-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .room-detail-thumb {
        height: 75px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.2rem 2.5rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    /* Page hero */
    .page-hero {
        height: 40vh;
        min-height: 260px;
    }

    .page-hero-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }
}

/* =============================================
   RESPONSİVE — ÇOK KÜÇÜK MOBİL (max 380px)
   ============================================= */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-eyebrow {
        display: none;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .rooms-grid {
        gap: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gal-item:nth-child(5n+1) {
        grid-column: span 1;
    }
}
