/* ============================================================
   3 EYLÜL BÜFE — ANA STİL DOSYASI
   Renk Paleti: Lacivert (#0D1B2A) + Altın (#D4A017)
   ============================================================ */

/* Ekran okuyucular için görünmez ama SEO için var */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

:root {
    --navy:        #0D1B2A;
    --navy-2:      #162436;
    --gold:        #D4A017;
    --gold-lt:     #F0BC2E;
    --cream:       #F7F3EC;
    --dark:        #111827;
    --gray-dk:     #374151;
    --gray:        #6B7280;
    --gray-lt:     #D1D5DB;
    --light:       #F9F7F4;
    --white:       #FFFFFF;

    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

    --r:           0.5rem;
    --r-lg:        1rem;
    --sh:          0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --sh-lg:       0 20px 25px -5px rgba(0,0,0,.15), 0 10px 10px -5px rgba(0,0,0,.08);
    --tr:          0.3s ease;

    --nav-h:       70px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- YARDIMCILAR ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section--alt { background: var(--cream); }

.label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.heading-2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-hdr {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}

.section-desc { color: var(--gray); font-size: 1.05rem; }

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem 1.6rem;
    border-radius: var(--r);
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--tr);
    white-space: nowrap;
}
.btn--lg { padding: .9rem 2.1rem; font-size: .95rem; }

.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,160,23,.35); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--gray-dk); border-color: var(--gray-lt); }
.btn--ghost:hover { border-color: var(--gray); background: var(--light); }

/* ============================================================
   YAŞ DOĞRULAMA
   ============================================================ */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.96);
    backdrop-filter: blur(10px);
}

.age-gate__card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.75rem 2.25rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--sh-lg);
    animation: popIn .45s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
    from { transform: scale(.8) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0);      opacity: 1; }
}

.age-gate__logo-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 6px rgba(212,160,23,.15);
}

.age-gate__logo { width: 100%; height: 100%; object-fit: cover; }

.age-gate__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: .9rem;
}

.age-gate__text { color: var(--gray-dk); line-height: 1.75; margin-bottom: 1rem; }

.age-gate__law {
    font-size: .78rem;
    color: var(--gray);
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: .7rem 1rem;
    border-radius: 0 var(--r) var(--r) 0;
    text-align: left;
    margin-bottom: 1.75rem;
}

.age-gate__actions { display: flex; flex-direction: column; gap: .75rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-h);
    background: transparent;
    transition: background var(--tr), box-shadow var(--tr);
}

.navbar.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.navbar__brand { display: flex; align-items: center; gap: .75rem; }

.navbar__logo {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.navbar__name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.navbar__list { display: flex; gap: 2rem; }

.navbar__link {
    color: rgba(255,255,255,.8);
    font-size: .875rem;
    font-weight: 500;
    position: relative;
    transition: color var(--tr);
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--tr);
}
.navbar__link:hover,
.navbar__link.active { color: var(--gold); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: .5rem;
}
.navbar__bar {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--tr), opacity var(--tr);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../photos/store-sign.jpeg') center/cover no-repeat;
    opacity: .12;
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.72) 100%);
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 9rem 1.5rem 6rem;
}

.hero__badge {
    display: inline-block;
    background: rgba(212,160,23,.18);
    border: 1px solid rgba(212,160,23,.6);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero__logo {
    width: 170px; height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(212,160,23,.15), 0 20px 40px rgba(0,0,0,.4);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__desc {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

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

.hero__scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
    color: rgba(255,255,255,.45);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color var(--tr);
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-icon { animation: arrowBounce 2s infinite; }
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ============================================================
   ÖZELLİKLER BARI
   ============================================================ */
.features {
    background: var(--navy-2);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.25rem 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}

.features__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,.08);
}
.features__item:last-child { border-right: none; }

.features__icon { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.features__item strong { display: block; font-size: .875rem; font-weight: 600; }
.features__item span   { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--cream);
}
.about__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-lg);
    transition: transform .6s ease;
}
.about__img-wrap:hover img { transform: scale(1.03); }

.about__badge {
    position: absolute;
    bottom: 1.5rem; right: -1.25rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 1.25rem;
    border-radius: var(--r);
    text-align: center;
    box-shadow: var(--sh-lg);
    z-index: 1;
}
.about__badge strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem; font-weight: 900;
    line-height: 1;
}
.about__badge span { font-size: .72rem; font-weight: 700; white-space: nowrap; }

.about__content .label { margin-bottom: .4rem; }
.about__lead { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: .9rem; }
.about__content p { color: var(--gray-dk); margin-bottom: 1.4rem; line-height: 1.78; }

.about__stats {
    display: flex; gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lt);
}
.about__stat { display: flex; flex-direction: column; }
.about__stat-num {
    font-family: var(--font-serif);
    font-size: 2rem; font-weight: 900;
    color: var(--gold); line-height: 1;
}
.about__stat-lbl { font-size: .78rem; color: var(--gray); margin-top: .2rem; }

/* ============================================================
   ÜRÜNLER
   ============================================================ */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.products__card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: transform var(--tr), box-shadow var(--tr);
}
.products__card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.products__card--dark .products__body { background: var(--navy); }
.products__card--dark h3 { color: var(--gold) !important; }
.products__card--dark p  { color: rgba(255,255,255,.72) !important; }

.products__img { aspect-ratio: 4/3; overflow: hidden; }
.products__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.products__card:hover .products__img img { transform: scale(1.07); }

.products__body { padding: 1.25rem; }
.products__body h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem; font-weight: 700;
    color: var(--navy); margin-bottom: .45rem;
}
.products__body p { color: var(--gray); font-size: .875rem; line-height: 1.6; }

.products__card--icon .products__icon-area {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.products__card--icon .products__icon-area svg {
    width: 64px; height: 64px;
    color: var(--gold);
    opacity: .85;
}
.products__card--icon.products__card--dark .products__body {
    background: var(--navy-2);
}

.products__warning {
    display: inline-block;
    margin-top: .6rem;
    font-size: .78rem; font-weight: 700;
    color: #D97706;
    background: rgba(217,119,6,.12);
    padding: .2rem .55rem;
    border-radius: 4px;
}

/* ============================================================
   GALERİ
   ============================================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
}

.gallery__item--promo img {
    object-fit: contain;
    background: #1a2e42;
}

.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.07); }

.gallery__overlay {
    position: absolute; inset: 0;
    background: rgba(13,27,42,0);
    display: flex; align-items: flex-end;
    padding: 1rem;
    transition: background var(--tr);
}
.gallery__overlay span {
    color: var(--white); font-weight: 600; font-size: .875rem;
    opacity: 0; transform: translateY(8px);
    transition: all var(--tr);
}
.gallery__item:hover .gallery__overlay { background: rgba(13,27,42,.55); }
.gallery__item:hover .gallery__overlay span { opacity: 1; transform: translateY(0); }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

.contact__item {
    display: flex;
    gap: 1.25rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--gray-lt);
}
.contact__item:last-of-type { border-bottom: none; padding-bottom: 0; }

.contact__icon-box {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact__icon-box svg { width: 20px; height: 20px; color: var(--gold); }

.contact__item h4 {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--gray); margin-bottom: .2rem;
}
.contact__item p { color: var(--dark); font-size: .95rem; }
.contact__link { color: var(--navy); font-weight: 700; font-size: 1.05rem; transition: color var(--tr); }
.contact__link:hover { color: var(--gold); }

.contact__socials { display: flex; gap: .9rem; margin-top: 1.5rem; }

.contact__social-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .55rem 1.1rem;
    border-radius: var(--r);
    font-weight: 600; font-size: .825rem;
    background: var(--navy); color: var(--white);
    transition: all var(--tr);
}
.contact__social-btn:hover { background: var(--navy-2); transform: translateY(-2px); }
.contact__social-btn--wa { background: #25D366; }
.contact__social-btn--wa:hover { background: #20BA57; }

.contact__map {
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 420px;
}
.contact__map iframe { width: 100%; height: 100%; border: none; display: block; }

.map-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .9rem; text-align: center; padding: 2rem;
    color: var(--gray);
    background: var(--cream);
    border: 2px dashed var(--gray-lt);
    border-radius: var(--r-lg);
}
.map-placeholder svg { color: var(--gold); opacity: .55; }
.map-placeholder strong { color: var(--gray-dk); }
.map-placeholder p { font-size: .85rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
    width: 76px; height: 76px;
    border-radius: 50%; object-fit: cover;
    margin-bottom: .9rem;
    border: 2px solid var(--gold);
}
.footer__tagline { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: .3rem; }

.footer__nav h4,
.footer__legal h4 {
    color: var(--white);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer__nav li + li { margin-top: .5rem; }
.footer__nav a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--tr); }
.footer__nav a:hover { color: var(--gold); }

.footer__legal ul { display: flex; flex-direction: column; gap: .45rem; }
.footer__legal li { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.5; }

.footer__bottom {
    padding: 1.2rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ============================================================
   WHATSAPP YÜZEN BUTON
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 1.75rem; right: 1.75rem;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.45);
    transition: all var(--tr);
    z-index: 800;
    color: var(--white);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(37,211,102,.55); }

/* ============================================================
   SCROLL ANİMASYONLARI
   ============================================================ */
[data-animate] {
    opacity: 0;
    transition: opacity .65s ease, transform .65s ease;
}
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-right"]{ transform: translateX(40px); }
[data-animate].animated     { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__item:nth-child(2) { border-right: none; }

    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__legal { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — MOBİL (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    /* Navbar mobile */
    .navbar__toggle { display: flex; }
    .navbar__nav {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--navy);
        padding: 1.25rem 1.5rem 1.75rem;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform var(--tr), opacity var(--tr);
        pointer-events: none;
        box-shadow: 0 12px 30px rgba(0,0,0,.35);
    }
    .navbar__nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .navbar__list { flex-direction: column; gap: 0; }
    .navbar__link {
        display: block;
        padding: .9rem 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: .95rem;
    }

    /* About */
    .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about__badge { right: 0; }

    /* Products */
    .products__grid { grid-template-columns: repeat(2, 1fr); }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery__item { min-height: 240px; }

    /* Contact */
    .contact__grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__legal { grid-column: span 1; }
    .footer__bottom { flex-direction: column; gap: .4rem; text-align: center; }
}

/* ============================================================
   RESPONSIVE — KÜÇÜK MOBİL (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
    .features__item:nth-child(even) { border-right: none; }

    .products__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }

    .hero__logo { width: 130px; height: 130px; }
    .hero__btns { flex-direction: column; }
    .about__stats { gap: 1.25rem; }
    .contact__socials { flex-direction: column; }
    .age-gate__card { padding: 1.75rem 1.25rem; }
}
