.body_bg_color_cuma{
    background-color: #F7DBCE !important;
}
.body_bg_color_saloncuma{
    background-color: #F6EFE5 !important;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-header {
    background: url('/assets/images/header.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav-links {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    text-decoration: underline;
}
.hero-title {
    font-size: 44px !important;
    font-weight: 400;
    letter-spacing: 1rem;
}

.hero-title-white {
    font-size: 44px !important;
    font-weight: 400;
    letter-spacing: 1rem;
    color: white;
    font-family: 'Biennale', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

footer.footer {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.9rem;
}
.footer a:hover {
    text-decoration: underline;
}
.footer-logo {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-weight: 400;
    margin-top: 60px;
}
.footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-site {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 100px;
}

.splash-container {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.splash-left,
.splash-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-left::before,
.splash-right::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.4s ease;
}

.splash-left::before {
    background-image: url('./../../assets/images/header_splash_sc.png');
}

.splash-right::before {
    background-image: url('./../../assets/images/header_splash.png');
}

.splash-left:hover::before,
.splash-right:hover::before {
    transform: scale(1.05);
}

.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortalama */
    align-items: center;     /* Yatayda ortalama */
    text-align: center;
    position: relative;
    z-index: 1; /* Arka plandaki scale efektinden öne çıkmak için */
}
/*
.splash-left,
.splash-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.splash-left img,
.splash-right img {
    transition: transform 0.4s ease;
}

.splash-left:hover img,
.splash-right:hover img {
    transform: scale(1.05);
}

.splash-left {
    background-image: url('./../../assets/images/header_splash_sc.png');
}

.splash-right {
    background-image: url('./../../assets/images/header_splash.png');
}

.overlay {
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
*/
.splash-left h1,
.splash-right h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
    margin: 0;
}

.splash-left span,
.splash-right span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
}

.all-day {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-top: 5px;
}

.awards {
    margin-top: 20px;
    font-size: 0.9rem;
}

.gallery-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    width: 100%;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    background-color: white;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox container */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 16px;
    /* viewport unit fallback sırası */
    height: 100svh;              /* yeni nesil: safe viewport */
    height: 100dvh;              /* dinamik viewport (iOS/Android) */
    height: 100vh;               /* klasik fallback */
}

.lightbox-overlay.hidden { display: none; }

.lightbox-content {
    position: relative;
    max-width: 100vw;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
    max-height: calc(100dvh - 32px);
    max-height: calc(100vh - 32px);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 12px; right: 16px;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    padding: 8px 10px;
    background: rgba(0,0,0,.35);
    border-radius: 8px;
}

/** contact section **/
.contact-section {
    margin-top:100px;
    padding: 40px 20px;
    font-family: 'Biennale', sans-serif;
}

.contact-section2 {
    padding: 40px 20px;
    font-family: 'Biennale', sans-serif;
}

.contact-wrapper {

    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

.contact-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.contact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: #ccc;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 1rem;
}

.contact-item p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.contact-item a {
    text-decoration: none;
    color: black;
}

.contact-item a {
    text-decoration: none;
    color: black;
}

.salon-info-section {
    margin-top:100px;
    padding: 40px 20px;
    font-family: 'Biennale', sans-serif;
}

.salon-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.salon-info-block {
    position: relative;
    padding: 0 20px;
}

.salon-info-block:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: #ccc;
}

.salon-info-block h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.salon-info-block p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.italic {
    font-style: italic;
    font-size: 0.9rem;
}

.gallery-row-section {
    padding: 40px 0;
    text-align: center;
}

.gallery-heading {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-family: 'Biennale', sans-serif;
    color: #111;
}

.gallery-row {
    display: flex;
    justify-content: center;
}

.gallery-column {
    flex: 1;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.gallery-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-column:hover img {
    transform: scale(1.05);
}

.reservation-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Biennale', sans-serif;
}

.reservation-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.reservation-section h4 {
    font-size: 1rem;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.reservation-section p {
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
}

.index-hero {
    padding: 60px 20px;
    font-family: 'Biennale', sans-serif;
}

.logo-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-text img.logo {
    height: 60px;
    margin-bottom: 20px;
}

.logo-text p {
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}
.about-content-grid{
    margin-top:40px;
}

.content-grid-image-holder  {
    align-self: center;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.left-column img,
.right-column img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.left-column p,
.right-column p {
    font-size: 0.95rem;
    color: #222;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-form-section {
    /* açık bej */
    padding: 60px 20px;
    font-family: 'Biennale', sans-serif;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #222;
}

form label {
    display: block;
    margin: 16px 0 6px;
    font-size: 1rem;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #9d9d9d;
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    color:black;
    background-color: #f6eeea;
}

form button {
    margin-top: 20px;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    font-weight: 600;
    background-color: #BD6438;
}

form button:hover {
    background-color: #E8976F;
}

.aspect-header {
    aspect-ratio: 18 / 8;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.header-logo-cuma {
    width: 52%;
    height: auto;
    margin-top: 20px;
}
.header-logo-saloncuma {
    width: 65%;
    height: auto;
    margin-top: 20px;
}

.header-sublogo-cuma {
    width: 220px;
    height: auto;
    margin-top: 40px;
}

.header-sublogo-saloncuma {
    width: 240px;
    height: auto;
    margin-top: 40px;
}

.main-menu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    color: #111;
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
}
@media (max-width: 900px) {
    .menu-grid { grid-template-columns: 1fr; }
}
.menu-category__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: .2px;
}
.menu-category__rule {
    border: 0;
    border-top: 1px solid #bbb;
    margin: 6px 0 16px;
}
/* satırı grid yap: auto | 1fr | auto */
.menu-item{
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 12px;
    align-items: center;   /* dikey hizalama */
}

/* isim+açıklama tek satırda kalsın (taşarsa dots kısalır) */
.menu-item__name{
    flex: none;            /* grid'de gerek yok ama bırakabiliriz */
    font-weight: 600;
    white-space: nowrap;
}

.menu-item__desc{
    white-space: nowrap;
    font-weight: normal;
    font-style: italic;
    font-size: 0.8em;
    color: #888;
    margin-left: .4em;
}

/* dots şeridi: grid'in orta kolonu; yüksekliği 0, alt çizgi */
.menu-item__dots{
    border-bottom: 2px dotted #bbb;
    height: 0;
    min-width: 24px;
    margin: 0 8px;         /* alt marjini kaldır: satırı aşağı itmesin */
}

/* fiyat: tek satır, sayı hizası düzgün */
.menu-item__price{
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

/* Mobil için istenirse farklı oran */
@media (max-width: 768px) {
    .aspect-header {
        aspect-ratio: 16 / 9;
    }

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

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px){
    .menu-item{
        grid-template-columns: 1fr auto; /* dots kolonunu kaldır */
    }
    .menu-item__dots{ display: none; }
    .menu-item__name, .menu-item__desc{ white-space: normal; } /* metin sarabilir */
}

/* ========================= */
/* =====  MOBİL EKLER  ===== */
/* ========================= */

/* Üstte sabit & tıklanabilir alanlar üste gelsin */
.hero-header {
    position: relative;
    isolation: isolate;
}
.nav-links { z-index: 2; }
.nav-toggle { z-index: 3; }

/* Desktop menü mevcut hâli (baz alınıyor) */
.nav-links {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.75rem, 1.8vw, 0.95rem); /* responsive küçülme */
    letter-spacing: 1px;
    display: flex;
    gap: 24px;               /* boşluk biraz azaltıldı */
    flex-wrap: nowrap;        /* asla satıra sarma */
    white-space: nowrap;      /* linkler tek satırda kalsın */
    z-index: 2;
}

/* Mobil hamburger (isteğe bağlı) */
.nav-toggle {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.35);
    border: 0;
    padding: 8px 10px;
    border-radius: 8px;
    display: none;           /* > md gizli, mobilde görünecek */
    cursor: pointer;
}
.nav-toggle:focus { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 2px; }

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 1px;
}

/* Mobil çekme menü (isteğe bağlı) */
.nav-drawer {
    position: absolute;
    top: 56px;
    left: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 10px 12px;
}
.nav-drawer.hidden { display: none; }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer li { margin: 6px 0; text-align: center; }
.nav-drawer a { color: #fff; text-decoration: none; font-weight: 600; }

/* Logo/başlık mobil iyileştirmeleri */
.hero-title-white {
    font-size: clamp(22px, 5vw, 44px) !important;
    letter-spacing: clamp(0.2rem, 1.2vw, 1rem);
}

/* Header logoları dinamik ölçek */
.header-logo-cuma { width: clamp(220px, 52vw, 52%); }
.header-logo-saloncuma { width: clamp(240px, 65vw, 65%); }
.header-sublogo-cuma { width: clamp(140px, 38vw, 220px); }
.header-sublogo-saloncuma { width: clamp(150px, 42vw, 240px); }


/* Her ihtimale karşı hamburger ve çekme menüyü tamamen kapat */
.nav-toggle,
.nav-drawer { display: none !important; }

/* Header, menüye yer açsın ki içerik çakışmasın */
@media (max-width: 768px) {
    .hero-header {
        position: relative;
        padding-top: 64px;   /* Üstte menü yüksekliği kadar boşluk */
        max-height: 100vh !important;
    }
}
/* Desktop davranışı korunur; mobilde de ÜSTTE KALMAYA devam etsin */
.nav-links {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    z-index: 2;
}

@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        justify-content: space-evenly;  /* hepsini eşit aralıkla yay */
        gap: 12px;
        padding: 0 8px;
        flex-wrap: nowrap;             /* yine wrap kapalı */
    }
    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        margin: 0;                /* margin-left kaldırıldı */
    }

    /* Header oranı mobilde daha dikey kalabilir; istersen koru */
    .aspect-header { aspect-ratio: 16 / 12; }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.72rem;
        gap: 8px;
    }
    .aspect-header { aspect-ratio: 4 / 3; }
}



/* ==== Extra Gallery: responsive 3→2→1 kolon ve orantılı yükseklik ==== */
/* ==== ExtraGallery: tasarımı bozmadan responsive ==== */

/* Satır: mevcut flex yapısını koru ama sarmaya izin ver */
.gallery-row {
    display: flex;              /* zaten vardı */
    justify-content: center;    /* ortalı dursun */
    gap: 0px;                  /* kolonlar arası boşluk */
    flex-wrap: wrap;            /* küçük ekranda alt satıra geçsin */
    margin: 0 auto;
}

/* Kolon: yüksekliği sabit 600px yerine orantılı verelim */
.gallery-column {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    flex: 1 1 calc(33.333% - 16px); /* Desktop: 3 kolon */
    aspect-ratio: 3 / 4;            /* “uzun görsel” hissini koru */
    height: auto;                    /* sabit yükseklik kaldırıldı */
    min-width: 260px;                /* çok daralmayı engelle */
    background: #fff;
}

/* Görsel tam doldursun, taşanı kes */
.gallery-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-select: none;
    user-select: none;
    transition: transform .45s ease;
}

/* Hover yakınlaştırma (sadece mouse olan cihazlarda) */
@media (hover:hover) and (pointer:fine) {
    .gallery-column:hover img { transform: scale(1.04); }
}

/* Tablet: 2 kolon */
@media (max-width: 900px) {
    .hero-header {
        max-height: 550px;
    }
    .gallery-column {
        flex: 1 1 calc(50% - 16px);
        aspect-ratio: 4 / 5;     /* oranı hafif ayarla (isteğe bağlı) */
    }
}

/* Telefon: 1 kolon */
@media (max-width: 560px) {
    .gallery-row { gap: 12px; }
    .gallery-column {
        flex: 1 1 100%;
        min-width: 0;
        aspect-ratio: 4 / 5;     /* dikey hissi koru */
    }
}

/* Link tüm karta yayılsın (tıklama alanı geniş) */
.gallery-column a {
    position: absolute;
    inset: 0;
    display: block;
}

/* ==== Contact section responsive ==== */

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;      /* desktop’ta yan yana */
    text-align: center;
}

.contact-item {
    flex: 1;
    padding: 0 20px;
}

/* Tablet ve altı: dikey hizala */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;  /* alta alta */
        align-items: center;
        text-align: center;
    }
    .contact-item {
        padding: 16px 0;
        width: 100%;
        max-width: 320px;        /* çok geniş olmasın */
        border-bottom: 1px solid #ddd;
    }
    .contact-item:last-child {
        border-bottom: none;
    }
}

/* Contact: mobilde dikey çizgileri kaldır, yatay çizgi kullan */
/* Contact: mobilde ortala + yatay çizgi, solda toplanmayı düzelt */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;          /* kutuları ortala */
        text-align: center !important;/* iç metin ortalı */
        gap: 0;
    }

    .contact-item {
        width: 100%;
        max-width: 640px;             /* okunabilir bir satır genişliği */
        margin: 0 auto;               /* ortala */
        padding: 16px 12px;
        border: 0;
        text-align: center !important;
    }

    /* dikey çizgiyi kaldır */
    .contact-item:not(:last-child)::after {
        display: none !important;
        content: none !important;
    }

    /* kutular arasında yatay ayraç */
    .contact-item + .contact-item {
        border-top: 1px solid #ddd;
    }

    /* tipografi küçük ekranda dengeli kalsın */
    .contact-item h4 { font-size: clamp(1rem, 2.6vw, 1.1rem); margin: 10px 0; }
    .contact-item p  { font-size: clamp(0.95rem, 2.4vw, 1rem); margin: 6px 0; }
}

/* === Index page: left/right columns responsive === */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* desktop: iki sütun */
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Tablet ve mobilde tek sütun */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr; /* tek kolon */
        gap: 32px;
    }

    .left-column,
    .right-column {
        gap: 20px;
        align-items: center; /* görseller ve içerik ortalansın */
        text-align: center;
    }

    .left-column img,
    .right-column img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }
}

/* Çok küçük ekranlarda boşlukları sık */
@media (max-width: 480px) {
    .content-grid { gap: 40px; }
    .left-column p,
    .right-column p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.footer-menu a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

@media (max-width: 576px) {
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
    .footer-logo {
        flex-direction: column;
    }
}

.saloncuma_info_text{
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
}

/* Marka ile uyumlu özel rezervasyon butonu */
.btn-reserve {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    background-color: #BD6438;   /* mevcut form butonunla aynı ana renk */
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit; /* sitenin global fontunu aynen kullan */
    max-width: 500px;
}

.btn-reserve:hover {
    background-color: #E8976F;   /* mevcut hover rengin */
}

/* Bölüm genişliği ve başlık */
.past-projects-section {
    background: #F6EFE5; /* sitenizin arka plan rengiyle uyumlu */
    padding: 60px 0 30px;
}
.past-projects-section .container-narrow {
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 16px;
}
.past-projects-title {
    text-align: center;
    letter-spacing: .35em;
    font-weight: 500;
    font-size: 1em;
    margin: 0 0 24px;
}

/* Şerit */
.projects-strip {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 720px){
    .projects-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
    .projects-strip { grid-template-columns: repeat(3, 1fr); }
}

/* Kart + görsel */
.project-card {
    position: relative;
    display: block;
    overflow: hidden;
}
.project-media {
    position: relative;
    width: 100%;
    height: 56vw;           /* mobilde yüksek görünüm */
    max-height: 560px;
}
@media (min-width: 720px){
    .project-media { height: 48vw; max-height: 540px; }
}
@media (min-width: 1024px){
    .project-media { height: 520px; }
}
.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .5s ease;
}
.project-card:hover .project-media img {
    transform: scale(1.04);
}

/* Orta etiket kutusu */
.project-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(2px);
    padding: 18px 28px;
    min-width: 240px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.project-label span {
    display: block;
    font-size: 14px;
    letter-spacing: .25em;
    color: #222;
    line-height: 1.4;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Kenar boşlukları */
.past-projects-section .projects-strip .project-card:not(:last-child){
    border-bottom: 0px solid #F6EFE5;
}
@media (min-width: 1024px){
    .past-projects-section .projects-strip .project-card{
        border-right: 0px solid #F6EFE5;
        border-bottom: none;
    }
    .past-projects-section .projects-strip .project-card:nth-child(3n){
        border-right: none;
    }
}

/* Ama .no-hover class'ı hariç */
.splash-right .overlay span.no-hover,
.splash-right:hover .overlay span.no-hover {
    color: #fff !important; /* sabit beyaz */
}

/* Konumlandırma */
.hero-header .michelin-badge{
    position:absolute;
    left:clamp(12px,8vw,100px);
    bottom:clamp(12px,3vw,40px);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    z-index:3;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Logo boyutu ve görünürlük */
.hero-header .michelin-badge img{
    height:clamp(40px,8vw,70px);
    width:auto;
    display:block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.25));
}

/* Yıl metni — turuncuya dönmesin */
.hero-header .michelin-badge .no-hover,
.hero-header:hover .michelin-badge .no-hover{
    color:#fff !important;
    font-size:clamp(10px,1.6vw,14px);
    letter-spacing:.08em;
    opacity:.95;
}

/* === Splash default: desktop için mevcut görünüm === */
.splash-container {
    display: flex;
    flex-direction: row;   /* YAN YANA */
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.splash-left,
.splash-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

/* Mobil özel */
@media (max-width: 900px) {
    .splash-container {
        flex-direction: column;   /* ALTA ALTA */
    }
    .splash-left,
    .splash-right {
        height: 50vh;             /* yarı yarıya */
        min-height: 360px;
    }
    /* Sıra: önce CUMA (splash-right), sonra SALONCUMA (splash-left) */
    .splash-right { order: 1; }
    .splash-left  { order: 2; }
}

.splash_extra {
    margin-top:200px;
}
.splash_img_extra {
    max-width:70px;
}
.splash_img2_extra{
    max-width:140px;
}
@media (max-width: 900px) {
    .splash_extra {
        margin-top:0px;
    }
    .splash_img_extra {
        max-width:50px;
    }
    .splash_img2_extra{
        max-width:120px;
    }
}
/* menu tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px auto;

    .menu-tab {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #000;
        border-radius: 0px;
        cursor: pointer;
        transition: all 0.3s ease;
        height: 190px;
        width: 165px;
        padding-top: 14px;

    span {
        font-family: 'Courier New', monospace;
        letter-spacing: 1px;
        font-size: 19px;
        margin-bottom: auto;
    }

        .logo {
            position: absolute;
            bottom: 12px;
            img {
                max-width: 92%;
                height: auto;
                display: block;
            }
        }

        &.menu-breakfast {
            background-color: #B65D31;
        }

        &.menu-lunch {
            background-color: #E77B74;
        }

        &.menu-dinner {
            background-color: #D34732;
        }

        &:hover {
            opacity: 0.85;
        }
    }
}

@media (max-width: 720px){
    .menu-tabs {
        .menu-tab {
            height: 130px;
            min-width: 120px;
        }
    }
}

.menu-section {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;

    h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.menu-pdf-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-pdf {
    width: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.menu-pdf-wrapper canvas {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0 auto 40px auto;
}

.block-item {
    cursor: grab;
    position: relative;
}

.block-item::before {
    content: '☰'; /* ya da 🟰, ↕, ≡, etc. */
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.2rem;
    color: #888;
    cursor: grab;
}