/* --- GENEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {
    --wine-red: #58111A;
    --wine-light: #722F37;
    --gold-warm: #C5A059;
    --bg-dark-cellar: #120E0E;
    --bg-wood: #1A1313;
    --text-cream: #F5EBE6;
    --text-muted: #A89A93;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-cellar);
    color: var(--text-cream);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- HEADER & NAVBAR --- */
header {
    background-color: rgba(18, 14, 14, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-family: var(--font-serif);
    color: var(--text-cream);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo h2 span {
    color: var(--gold-warm);
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.logo a {
    color: inherit;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-cream);
    margin: 0 18px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--gold-warm);
}

.header-btn {
    border: 1px solid var(--gold-warm);
    color: var(--gold-warm);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-style: italic;
    transition: var(--transition);
    background-color: transparent;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: var(--gold-warm);
    color: var(--bg-dark-cellar);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-cream);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-wood);
    z-index: 2000;
    padding: 80px 30px 30px;
    border-left: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: var(--text-cream);
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold-warm);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-cream);
    font-size: 24px;
    cursor: pointer;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.mobile-overlay.open {
    display: block;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    position: relative;
    background: url('images/hero.webp') no-repeat center center/cover,
                url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.page-hero {
    min-height: 45vh;
    position: relative;
    background: url('images/hero.webp') no-repeat center center/cover,
                url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.page-hero .overlay {
    background: linear-gradient(to bottom, rgba(18, 14, 14, 0.92), rgba(88, 17, 26, 0.5));
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18, 14, 14, 0.98), rgba(88, 17, 26, 0.4), rgba(18, 14, 14, 0.9));
    z-index: 1;
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 650px;
}

.premium {
    color: var(--gold-warm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-cream);
}

.hero-left p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: var(--wine-red);
    color: var(--text-cream);
    border: 1px solid var(--wine-light);
}

.whatsapp-btn:hover {
    background-color: var(--wine-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 17, 26, 0.3);
}

.call-btn {
    background-color: transparent;
    color: var(--text-cream);
    border: 1px solid rgba(245, 235, 230, 0.4);
}

.call-btn:hover {
    border-color: var(--gold-warm);
    color: var(--gold-warm);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 30px;
    flex-wrap: wrap;
}

.stats h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold-warm);
    margin-bottom: 5px;
}

.stats span {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* --- HIZLI LİNKLER --- */
.quick-links {
    padding: 30px 0;
    margin-top: 24px;
    position: relative;
    z-index: 5;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.quick-card {
    background-color: var(--bg-wood);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-cream);
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.quick-card i {
    font-size: 22px;
    color: var(--gold-warm);
}

.quick-card span {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
}

.quick-card:hover {
    transform: translateY(-5px);
    border-color: var(--wine-light);
    background-color: rgba(88, 17, 26, 0.2);
}

/* --- BÖLÜM BAŞLIKLARI --- */
.categories,
.reviews,
.content-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--gold-warm);
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
}

/* --- KATEGORİLER --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background-color: var(--bg-wood);
    padding: 50px 30px;
    text-align: left;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.05);
    position: relative;
    overflow: hidden;
}

.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 110px;
    color: rgba(88, 17, 26, 0.08);
    pointer-events: none;
    transition: var(--transition);
}

.primary-icon {
    font-size: 30px;
    color: var(--gold-warm);
    margin-bottom: 25px;
    display: block;
}

.category-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-warm);
    background-color: #211818;
}

.category-card:hover .card-bg-icon {
    color: rgba(197, 160, 89, 0.05);
    transform: scale(1.1) rotate(-10deg);
}

/* --- TESLİMAT --- */
.delivery {
    padding: 80px 0;
}

.delivery-box {
    background: linear-gradient(rgba(18, 14, 14, 0.85), rgba(18, 14, 14, 0.85)),
                url('https://images.unsplash.com/photo-1560624052-449f5ddf0c31?q=80&w=1200') center center/cover;
    padding: 80px 40px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.delivery-box h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--text-cream);
    margin-bottom: 20px;
}

.delivery-box p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-box a,
.btn-gold {
    background-color: var(--gold-warm);
    color: var(--bg-dark-cellar);
    padding: 14px 40px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.delivery-box a:hover,
.btn-gold:hover {
    background-color: var(--text-cream);
    transform: translateY(-2px);
}

/* --- YORUMLAR --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-wood);
    padding: 40px 30px;
    border-radius: 4px;
    border-top: 3px solid var(--wine-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.review-card .stars {
    color: var(--gold-warm);
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-cream);
    font-style: italic;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.review-author {
    display: block;
    color: var(--gold-warm);
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
}

/* --- KAMPANYALAR --- */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.campaign-card {
    background-color: var(--bg-wood);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.campaign-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-warm);
}

.campaign-image {
    height: 200px;
    background-color: rgba(88, 17, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-image i {
    font-size: 48px;
    color: var(--gold-warm);
    opacity: 0.5;
}

.campaign-body {
    padding: 30px;
}

.campaign-badge {
    display: inline-block;
    background-color: var(--wine-red);
    color: var(--text-cream);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.campaign-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
}

.campaign-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.campaign-body a {
    color: var(--gold-warm);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.campaign-body a:hover {
    color: var(--text-cream);
}

.campaign-body a i {
    margin-left: 6px;
    font-size: 12px;
}

/* --- BLOG --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-wood);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-warm);
}

.blog-image {
    height: 200px;
    background-color: rgba(88, 17, 26, 0.3);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 28px;
}

.blog-meta {
    color: var(--gold-warm);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-body h3 a {
    color: var(--text-cream);
    transition: var(--transition);
}

.blog-body h3 a:hover {
    color: var(--gold-warm);
}

.blog-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.read-more {
    color: var(--gold-warm);
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 6px;
    font-size: 12px;
}

/* --- BLOG YAZISI --- */
.article-wrapper {
    padding: 120px 0 80px;
}

.article-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-meta {
    color: var(--gold-warm);
    font-size: 13px;
    letter-spacing: 2px;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.article-content h2 {
    font-family: var(--font-serif);
    color: var(--text-cream);
    font-size: 26px;
    margin: 40px 0 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    margin: 0 0 20px 24px;
    list-style: disc;
}

.article-content li {
    margin-bottom: 8px;
}

.breadcrumb {
    padding: 100px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--gold-warm);
}

.breadcrumb a:hover {
    color: var(--text-cream);
}

/* --- İLETİŞİM --- */
.contact-section {
    padding: 80px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background-color: var(--bg-wood);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-warm);
}

.contact-card i {
    font-size: 28px;
    color: var(--gold-warm);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--gold-warm);
}

/* --- FOOTER --- */
footer {
    background-color: #0A0808;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--gold-warm);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: 4px;
}

.footer-desc {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-address {
    color: var(--gold-warm);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-address i {
    margin-right: 5px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold-warm);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.7;
}

/* --- SABİT İLETİŞİM BUTONLARI --- */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.floating-instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.floating-phone {
    background: var(--gold-warm);
    color: var(--bg-dark-cellar);
    border-color: rgba(197, 160, 89, 0.4);
}

.floating-whatsapp {
    background: #25D366;
    border-color: rgba(255, 255, 255, 0.25);
}

/* --- HARİTA --- */
.map-wrapper {
    margin-top: 50px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-actions a {
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-directions {
    background-color: transparent;
    color: var(--gold-warm);
    border: 1px solid var(--gold-warm);
}

.btn-directions:hover {
    background-color: var(--gold-warm);
    color: var(--bg-dark-cellar);
}

.btn-call-mobile {
    background-color: var(--wine-red);
    color: var(--text-cream);
    border: 1px solid var(--wine-light);
}

.btn-call-mobile:hover {
    background-color: var(--wine-light);
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .hero-left h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 25px;
    }

    .delivery-box {
        padding: 40px 20px;
    }

    .delivery-box h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}
