/* ================================================
   AFYON SEÇİL SUCUKLARI — Ürün Odaklı Web Sitesi
   Saf HTML/CSS — Serif + Sans Premium Tasarım
   ================================================ */

:root {
    --brand: #b31b1b;
    --brand-dark: #8a1313;
    --dark: #111111;
    --text: #2c2c2c;
    --gray: #6b6b6b;
    --light: #f8f6f3;
    --border: #e8e0d8;
    --white: #ffffff;
    --star: #d4a017;
    --green: #25D366;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* ========== TOP BANNER ========== */
.top-banner {
    background: var(--dark);
    color: #ccc;
    font-size: 12.5px;
    padding: 10px 0;
    letter-spacing: 0.04em;
}
.tb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tb-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ddd;
    font-weight: 500;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 48px;
}
.logo img { height: 76px; object-fit: contain; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}
.nav-links a:hover { color: var(--brand); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--dark);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    border-radius: 2px;
    transition: all 0.25s;
}
.btn-outline:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.hamburger { font-size: 26px; color: var(--dark); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 8, 5, 0.88) 0%,
        rgba(10, 8, 5, 0.65) 55%,
        rgba(10, 8, 5, 0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 680px;
    padding: 80px 0;
}
.badge {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    margin-bottom: 28px;
    border-radius: 2px;
}
.hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}
.hero-content h1 em {
    font-style: italic;
    color: #e8b49a;
}
.hero-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: var(--white);
    padding: 15px 34px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-primary.large-btn { padding: 18px 44px; font-size: 16px; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.hf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.hf-item i { color: #90EE90; font-size: 18px; }

/* ========== SECTION TITLES ========== */
.section-title {
    margin-bottom: 60px;
}
.section-title.text-center { text-align: center; }
.subtitle {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}
.section-title h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-title h2 em { font-style: italic; color: var(--brand); }
.section-title p {
    font-size: 17px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== ANATOMY SECTION ========== */
.anatomy-section {
    padding: 110px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}
.anatomy-text { display: flex; flex-direction: column; gap: 32px; }
.a-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 32px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.a-box:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-2px); }
.a-box h3 {
    font-family: var(--serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}
.a-box p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7;
}
.left-text .a-box { border-left: 3px solid var(--brand); }
.right-text .a-box { border-right: 3px solid var(--brand); text-align: right; }
.anatomy-center {
    width: 280px;
    flex-shrink: 0;
    position: relative;
}
.anatomy-center img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(179, 27, 27, 0.2);
    border: 6px solid var(--white);
}

/* ========== PRODUCT SHOWCASE ========== */
.showcase-section {
    padding: 110px 0;
    background: var(--white);
}
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.p-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.p-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.09); transform: translateY(-6px); }
.p-img {
    height: 280px;
    overflow: hidden;
}
.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.p-card:hover .p-img img { transform: scale(1.06); }
.p-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}
.p-info h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}
.p-desc {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

/* Ürün lezzet profili — baharat/acılık göstergesi */
.p-profile {
    background: var(--light);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prof-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prof-item > span {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}
.dots {
    display: flex;
    gap: 5px;
}
.dots i {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    font-style: normal;
}
.dots i.active { background: var(--brand); }

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border: 2px solid var(--dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    border-radius: 3px;
    transition: all 0.25s;
}
.btn-order:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ========== STORY / PRODUCTION ========== */
.story-section {
    padding: 110px 0;
    background: var(--dark);
    color: var(--white);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-content .subtitle { color: #e8b49a; }
.story-content h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
}
.story-content h2 em { font-style: italic; color: #e8b49a; }
.story-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 20px;
}
.cert-logos {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.cert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 4px;
    color: rgba(255,255,255,0.85);
}
.cert i { color: #e8b49a; font-size: 18px; }
.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px;
    gap: 14px;
}
.img-large {
    grid-column: 1 / -1;
    border-radius: 6px;
    overflow: hidden;
}
.img-large img { width: 100%; height: 100%; object-fit: cover; }
.img-small { border-radius: 6px; overflow: hidden; }
.img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 110px 0;
    background: var(--light);
}
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}
.test-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
    position: relative;
}
.test-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--serif);
    font-size: 80px;
    color: var(--border);
    line-height: 1;
}
.stars {
    color: var(--star);
    font-size: 16px;
    margin-bottom: 16px;
}
.test-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}
.author {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ========== FOOTER CTA ========== */
.footer-cta {
    background: linear-gradient(135deg, var(--brand) 0%, #7a0e0e 100%);
    padding: 100px 24px;
    text-align: center;
    color: var(--white);
}
.footer-cta h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 52px);
    margin-bottom: 16px;
}
.footer-cta p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* ========== FOOTER ========== */
footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.f-logo {
    height: 110px;
    margin-bottom: 20px;
}
.f-brand p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}
.socials {
    display: flex;
    gap: 14px;
}
.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: background 0.25s;
}
.socials a:hover { background: var(--brand); }
.f-links h4, .f-contact h4 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.f-links a {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}
.f-links a:hover { color: var(--white); padding-left: 4px; }
.f-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}
.f-contact i { font-size: 17px; color: rgba(255,255,255,0.35); }
.footer-bottom {
    padding: 22px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .anatomy-grid { grid-template-columns: 1fr; gap: 40px; }
    .anatomy-center { width: 220px; margin: 0 auto; }
    .left-text .a-box, .right-text .a-box { border-right: none; border-left: 3px solid var(--brand); text-align: left; }
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-images { grid-template-rows: 240px 140px; }
    .product-showcase { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    .nav-inner { gap: 0; justify-content: space-between; }
    .hero { min-height: 80vh; }
    .hero-content { padding: 60px 0; }
    .hero-features { gap: 16px; }
    .anatomy-section { padding: 70px 0; }
    .showcase-section { padding: 70px 0; }
    .product-showcase { grid-template-columns: 1fr; }
    .story-section { padding: 70px 0; }
    .story-images { display: none; }
    .testimonials { padding: 70px 0; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-cta { padding: 70px 24px; }
}
