/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

/* Renk ve Değişken Tanımlamaları */
:root {
    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-muted: #6c757d;
}

/* Genel Stiller ve Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--primary-font);
    background-color: var(--white-color);
    color: var(--dark-color);
    line-height: 1.6;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.5em; text-decoration: none; color: var(--dark-color); }
.main-nav a { margin-left: 25px; text-decoration: none; color: var(--dark-color); font-weight: 500; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--primary-color); }

/* Hero (Ana Giriş) Bölümü */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}
.image-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}
.image-background img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content { z-index: 1; padding: 20px; }
.hero-title { font-family: var(--heading-font); font-size: 4em; margin-bottom: 0.5em; }
.hero-subtitle { font-size: 1.2em; max-width: 600px; margin: 0 auto 1.5em auto; opacity: 0.9; }

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-primary { background-color: var(--primary-color); color: var(--white-color); }
.btn-primary:hover { background-color: #0b5ed7; transform: translateY(-2px); }
.btn-secondary { background-color: var(--white-color); color: var(--dark-color); border-color: #ddd; }
.btn-secondary:hover { background-color: var(--light-color); }
.btn-block { display: block; text-align: center; }

/* Koleksiyon Bölümü */
.collection-section { padding: 80px 0; }
.section-title { text-align: center; font-family: var(--heading-font); font-size: 2.8em; margin-bottom: 60px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Ürün Kartı Stilleri */
.product-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.card-image-placeholder {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: var(--heading-font); margin-bottom: 10px; font-size: 1.4em; flex-grow: 1; }
.card-price { color: var(--text-muted); margin-bottom: 20px; }
.card-body .btn { width: 100%; }
.product-card template { display: none; } /* Gömme kodunu gizle */

/* Ürün Detay Modal (Pop-up) Stilleri */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--white-color);
    border-radius: 15px;
    width: 100%;
    max-width: 540px; /* Instagram gönderi genişliğine daha uygun */
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s ease;
    padding-bottom: 90px; /* Buton için yer aç */
    overflow: hidden;
}
.modal-overlay.active .modal-content { transform: scale(1); }
#modal-body {
    padding: 10px;
    min-height: 300px;
    max-height: calc(90vh - 120px); /* Ekran yüksekliğine göre ayarla */
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: transparent;
    border: none;
    font-size: 2.5em;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}
.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--white-color);
    border-top: 1px solid #eee;
}

/* Mobil Uyumlu Stiller */
@media (max-width: 992px) {
    .hero-title { font-size: 3em; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2em; }
    .hero-subtitle { font-size: 1em; }
    .main-nav { display: none; }
    .section-title { font-size: 2.2em; }
}
/* ======================================== */
/* YENİ - FOOTER STİLLERİ                   */
/* ======================================== */

.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #495057;
    padding-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--heading-font);
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: var(--white-color);
}

.footer-logo p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-contact h4 {
    font-size: 1.2em;
    margin: 0 0 15px 0;
    color: var(--white-color);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--light-color);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo p {
        margin: 0 auto;
    }
    .instagram-link {
        justify-content: center;
    }
}
