@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================
   RENKLER
========================= */

:root {
    --green: #10291b;
    --green-dark: #081a10;

    --cream: #f7f3e7;
    --cream-light: #fffdf7;

    --gold: #b58a3b;
    --gold-light: #d2ad63;

    --text: #17271c;
    --muted: #716e66;
}


/* =========================
   GENEL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(181, 138, 59, 0.06),
            transparent 30%
        ),
        var(--cream);

    color: var(--text);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
}


/* =========================
   ÜST ALAN
========================= */

.hero {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    background: var(--cream);

    border-bottom: 2px solid var(--gold);
}


/* Sol yeşil alan */

.hero::before {
    content: "";

    position: absolute;

    left: -110px;
    top: -80px;

    width: 360px;
    height: 470px;

    background: var(--green);

    border-radius: 0 50% 50% 0;

    transform: rotate(-7deg);
}


/* Sağ yeşil alan */

.hero::after {
    content: "";

    position: absolute;

    right: -110px;
    top: -80px;

    width: 360px;
    height: 470px;

    background: var(--green);

    border-radius: 50% 0 0 50%;

    transform: rotate(7deg);
}


.hero-content {
    position: relative;

    z-index: 2;

    max-width: 1500px;

    min-height: 330px;

    margin: auto;

    padding: 18px 4%;
}


/* =========================
   SOL BİLGİ
========================= */

.social-info {
    position: absolute;

    left: 5%;
    top: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    z-index: 5;
}

.social-info span {
    display: block;

    color: var(--gold-light);

    font-size: 14px;
}

.social-info strong {
    display: block;

    font-size: 16px;

    font-weight: 500;
}

.instagram-icon {
    font-family: Arial, sans-serif;

    color: var(--gold-light);

    font-size: 34px;
}


/* =========================
   LOGO
========================= */

.logo-area {
    position: absolute;

    left: 50%;
    top: 5px;

    transform: translateX(-50%);

    width: 550px;

    max-width: 50vw;

    text-align: center;
}


.logo {
    display: block;

    width: 100%;

    height: 145px;

    object-fit: contain;
}


.gold-line {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 13px;

    margin-top: -4px;

    color: var(--gold);
}


.gold-line span {
    width: 155px;

    height: 1px;

    background: var(--gold);
}


.gold-line b {
    font-size: 21px;

    font-weight: 400;
}


.logo-area h1 {
    margin-top: 7px;

    color: var(--green);

    font-family: "Playfair Display", serif;

    font-size: 40px;

    font-weight: 500;

    letter-spacing: 14px;

    margin-left: 14px;
}


.logo-area p {
    margin-top: 1px;

    color: var(--text);

    font-size: 22px;

    font-style: italic;

    letter-spacing: 1px;
}


/* =========================
   SAĞ BİLGİ
========================= */

.contact-info {
    position: absolute;

    right: 5%;
    top: 22px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    z-index: 5;
}


.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 9px;
}


.contact-icon {
    color: var(--gold);

    font-family: Arial, sans-serif;

    font-size: 23px;

    line-height: 1;
}


.contact-item span {
    display: block;

    color: var(--gold);

    font-size: 14px;
}


.contact-item strong {
    display: block;

    color: var(--text);

    font-size: 15px;

    line-height: 1.05;

    font-weight: 500;
}


/* =========================
   KATEGORİLER
========================= */

.category-section {
    padding: 20px 3% 8px;
}


.categories {
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 12px;
}


.category {
    min-height: 105px;

    padding: 9px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    cursor: pointer;

    border-radius: 15px;

    border: 1px solid rgba(181, 138, 59, .12);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .95),
            rgba(244, 240, 229, .92)
        );

    box-shadow:
        0 6px 20px rgba(20, 35, 25, .08);

    transition: all .25s ease;
}


.category:hover {
    transform: translateY(-3px);
}


.category.active {
    color: white;

    background: var(--green);

    border-color: var(--green);

    box-shadow:
        0 9px 24px rgba(16, 41, 27, .25);
}


.category-icon {
    margin-bottom: 7px;

    font-size: 34px;

    line-height: 1;
}


.category-name {
    font-size: 18px;

    font-weight: 600;

    line-height: 1.05;
}


/* =========================
   MENÜ ALANI
========================= */

.menu-container {
    max-width: 1300px;

    margin: 18px auto 110px;

    padding: 0 25px;
}


/* =========================
   BAŞLIK
========================= */

.section-title {
    text-align: center;

    margin-bottom: 26px;
}


.title-decoration {
    width: 110px;

    height: 1px;

    margin: 7px auto;

    background: var(--gold);
}


.section-title h2 {
    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 40px;

    font-weight: 500;

    letter-spacing: 3px;
}


.section-title p {
    color: var(--muted);

    font-size: 20px;

    font-style: italic;
}


/* =========================
   ÜRÜNLER
========================= */

.products {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.product {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.95),
            rgba(248,245,236,.92)
        );

    border: 1px solid rgba(181,138,59,.10);

    border-radius: 17px;

    box-shadow:
        0 6px 20px rgba(20,35,25,.08);

    transition: .25s ease;
}


.product:hover {
    transform: translateY(-3px);
}


.product-image {
    width: 100%;

    height: 175px;

    object-fit: cover;

    display: block;
}


.product-content {
    padding: 15px;

    text-align: center;
}


.product-name {
    color: var(--text);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 600;

    margin-bottom: 5px;
}


.product-description {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.4;
}


.product-price {
    margin-top: 11px;

    padding-top: 8px;

    border-top: 1px solid var(--gold-light);

    color: var(--green);

    font-size: 21px;

    font-weight: 600;
}


/* Fotoğraf olmayan ürün */

.product.no-image .product-content {
    padding-top: 23px;
}


/* =========================
   ALT MENÜ
========================= */

.bottom-navigation {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    height: 76px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 55px;

    z-index: 1000;

    background: var(--green-dark);

    border-top: 2px solid var(--gold);
}


.bottom-item {
    min-width: 70px;

    text-align: center;

    color: white;

    cursor: pointer;
}


.bottom-item span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 26px;

    margin-bottom: 2px;
}


.bottom-item small {
    font-size: 14px;
}


.bottom-item.active {
    color: var(--gold-light);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .categories {
        grid-template-columns:
            repeat(4, 1fr);
    }


    .products {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================
   TELEFON
========================= */

@media (max-width: 600px) {

    .hero {
        min-height: 265px;
    }


    .hero::before {
        left: -100px;
        top: -40px;

        width: 230px;
        height: 350px;
    }


    .hero::after {
        right: -100px;
        top: -40px;

        width: 230px;
        height: 350px;
    }


    .hero-content {
        min-height: 265px;

        padding: 10px;
    }


    /* SOL BİLGİ */

    .social-info {
        left: 13px;
        top: 17px;
    }


    .instagram-icon {
        font-size: 24px;
    }


    .social-info span {
        font-size: 9px;
    }


    .social-info strong {
        font-size: 10px;
    }


    /* SAĞ BİLGİ */

    .contact-info {
        right: 13px;
        top: 15px;

        gap: 5px;
    }


    .contact-icon {
        font-size: 17px;
    }


    .contact-item span {
        font-size: 8px;
    }


    .contact-item strong {
        font-size: 9px;
    }


    /* LOGO */

    .logo-area {
        top: 50px;

        width: 270px;

        max-width: 70vw;
    }


    .logo {
        height: 80px;
    }


    .gold-line {
        gap: 7px;
    }


    .gold-line span {
        width: 55px;
    }


    .gold-line b {
        font-size: 15px;
    }


    .logo-area h1 {
        font-size: 27px;

        letter-spacing: 8px;

        margin-left: 8px;
    }


    .logo-area p {
        font-size: 15px;
    }


    /* KATEGORİLER */

    .category-section {
        padding: 12px 9px 5px;
    }


    .categories {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;
    }


    .category {
        min-height: 86px;

        border-radius: 12px;

        padding: 6px;
    }


    .category-icon {
        font-size: 26px;

        margin-bottom: 5px;
    }


    .category-name {
        font-size: 15px;
    }


    /* MENÜ */

    .menu-container {
        padding: 0 12px;

        margin-top: 17px;

        margin-bottom: 95px;
    }


    .section-title {
        margin-bottom: 19px;
    }


    .title-decoration {
        width: 70px;
    }


    .section-title h2 {
        font-size: 27px;

        letter-spacing: 2px;
    }


    .section-title p {
        font-size: 16px;
    }


    /* ÜRÜNLER */

    .products {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .product-image {
        height: 205px;
    }


    .product-name {
        font-size: 23px;
    }


    .product-description {
        font-size: 14px;
    }


    .product-price {
        font-size: 20px;
    }


    /* ALT MENÜ */

    .bottom-navigation {
        height: 67px;

        justify-content: space-around;

        gap: 0;
    }


    .bottom-item {
        min-width: auto;
    }


    .bottom-item span {
        font-size: 21px;
    }


    .bottom-item small {
        font-size: 11px;
    }

}
/* =====================================================
   YOSUN - ORAN VE BOYUT DÜZELTMELERİ
===================================================== */

/* ÜST HAZIR GÖRSEL */

.menu-header {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.menu-header img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* =====================================================
   KATEGORİLER
===================================================== */

.category-section {
    width: 100%;
    padding: 22px 28px 8px;
}

.categories {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));

    gap: 14px;
}

.category {
    width: 100%;
    min-width: 0;
    min-height: 105px;
}


/* =====================================================
   MENÜ
===================================================== */

.menu-container {
    width: 100%;
    max-width: 1350px;

    margin: 20px auto 110px;

    padding: 0 28px;
}


/* =====================================================
   ÜRÜNLER
===================================================== */

.products {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 600px) {

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ÜST GÖRSEL */

    .menu-header {
        width: 100%;
    }

    .menu-header img {
        width: 100%;
        height: auto;
        min-width: 100%;
        object-fit: contain;
    }


    /* KATEGORİ ALANI */

    .category-section {
        width: 100%;

        padding: 12px 10px 5px;
    }


    .categories {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin: 0;
    }


    .category {
        width: 100%;

        min-width: 0;

        min-height: 88px;

        padding: 7px 4px;

        border-radius: 12px;
    }


    .category-icon {
        font-size: 27px;

        margin-bottom: 5px;
    }


    .category-name {
        font-size: 15px;

        line-height: 1.05;
    }


    /* MENÜ BAŞLIĞI */

    .menu-container {
        width: 100%;

        max-width: none;

        padding: 0 12px;

        margin:
            18px 0 95px;
    }


    .section-title {
        width: 100%;

        margin-bottom: 20px;
    }


    .section-title h2 {
        font-size: 27px;

        letter-spacing: 2px;
    }


    .section-title p {
        font-size: 16px;
    }


    .title-decoration {
        width: 70px;
    }


    /* ÜRÜNLER */

    .products {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* ALT MENÜ */

    .bottom-navigation {
        width: 100%;

        left: 0;
        right: 0;

        gap: 0;

        justify-content:
            space-around;
    }


    .bottom-item {
        min-width: 0;
    }

}


/* =====================================================
   KÜÇÜK TELEFONLAR
===================================================== */

@media (max-width: 380px) {

    .category-section {
        padding-left: 7px;
        padding-right: 7px;
    }

    .categories {
        gap: 6px;
    }

    .category {
        min-height: 82px;
    }

    .category-icon {
        font-size: 24px;
    }

    .category-name {
        font-size: 14px;
    }

}
/* =====================================================
   FOTOĞRAFLI KATEGORİ KARTLARI
===================================================== */

.category {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 105px;
    isolation: isolate;
}

.category-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    z-index: -2;

    transition: transform 0.3s ease;
}

.category-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.10)
        );

    z-index: -1;
}

.category-name {
    position: relative;

    z-index: 2;

    color: white;

    font-size: 19px;

    font-weight: 600;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.55);

    line-height: 1.05;
}

.category:hover .category-image {
    transform: scale(1.06);
}


/* Aktif kategori */

.category.active {
    border: 2px solid var(--gold);

    background: transparent;
}

.category.active .category-overlay {
    background:
        linear-gradient(
            to top,
            rgba(16, 41, 27, 0.88),
            rgba(16, 41, 27, 0.28)
        );
}


/* =====================================================
   TELEFON
===================================================== */

@media (max-width: 600px) {

    .category {
        min-height: 88px;

        height: 88px;
    }

    .category-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .category-name {
        font-size: 15px;

        padding: 5px;

        text-align: center;
    }

}


/* Çok küçük telefon */

@media (max-width: 380px) {

    .category {
        min-height: 82px;

        height: 82px;
    }

    .category-name {
        font-size: 14px;
    }

}

/* ================================
   ADMIN PANEL
================================ */

.admin-panel {
    min-height: 100vh;
    background: var(--cream);
}

.admin-header {
    background: var(--green);
    color: white;
    text-align: center;
    padding: 35px 20px;
}

.admin-header h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 36px;
    letter-spacing: 3px;
}

.admin-header p {
    margin: 8px 0 0;
    color: var(--gold-light);
    font-size: 15px;
}

.admin-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 25px;
}

.admin-card {
    background: var(--cream-light);
    border: 1px solid rgba(181, 138, 59, 0.25);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.admin-card h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--green);
    font-family: Georgia, serif;
}

.admin-card button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-bottom: 12px;
    padding: 15px 20px;

    border: 1px solid var(--gold);
    border-radius: 8px;

    background: var(--green);
    color: white;

    font-size: 16px;
    cursor: pointer;

    transition: 0.2s ease;
}

.admin-card button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

@media (max-width: 600px) {

    .admin-header {
        padding: 28px 15px;
    }

    .admin-header h1 {
        font-size: 30px;
    }

    .admin-content {
        padding: 25px 15px;
    }

    .admin-card {
        padding: 20px;
    }
}

/* =========================================
   AFİYETLER OLSUN
   ========================================= */

.menu-footer {
    width: 100%;
    min-height: 180px;
    margin-top: 35px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 2px solid var(--gold);
}

.footer-content {
    width: 100%;
    max-width: 850px;
    padding: 28px 20px;
    text-align: center;
}

.footer-title {
    margin: 10px 0;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-leaf {
    color: var(--gold-light);
    font-size: 28px;
    line-height: 1;
    margin: 8px 0;
}

.footer-line {
    width: 180px;
    height: 1px;
    margin: 0 auto;
    background: var(--gold);
}

/* AKKAYA DESIGN */

.akkaya-logo {
    width: 90px;
    height: 38px;
    margin: 8px auto 6px;
    padding: 3px;
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0.9;
}

.akkaya-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {

    .menu-footer {
        min-height: 155px;
        margin-top: 25px;
    }

    .footer-title {
        font-size: 30px;
    }

    .akkaya-logo {
        width: 75px;
        height: 32px;
    }

    .footer-line {
        width: 130px;
    }
}

/* FOOTER GÖRÜNÜRLÜK DÜZELTMESİ */

.menu-footer {
    display: flex !important;
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: 180px;
    background: var(--green);
    visibility: visible;
    opacity: 1;
}

/* =========================================
   SABİT AFİYETLER OLSUN BARI
   ========================================= */

.menu-footer {
    position: fixed !important;
    left: 50% !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;

    width: 100% !important;
    max-width: 1300px !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: none !important;

    display: block !important;

    z-index: 99999 !important;
    line-height: 0 !important;

    box-shadow: none !important;
}

.menu-footer img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
}

/* Sabit görsel ürünleri kapatmasın */
body {
    padding-bottom: 95px !important;
}

@media (max-width: 600px) {

    .menu-footer {
        width: 100% !important;
    }

    .menu-footer img {
        width: 100% !important;
    }

    body {
        padding-bottom: 85px !important;
    }
}