/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #111;
}

/* Üst Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Menü ve Logo (Güncellendi) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.site-logo {
    max-width: 250px;
    height: auto;
    align-self: center;
}

nav a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #888;
}

/* Karşılama Ekranı (Hero) */
/* Karşılama Ekranı (Hero) - Arka Plan Görselli */
.hero {
    height: 70vh;
    /* Resmin üzerine %60 koyulukta siyah bir filtre atıyoruz ki beyaz yazılarımız okunsun */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('arkaplan.png');
    background-size: cover; /* Resmi sündürmeden tüm ekrana yayar */
    background-position: center; /* Resmin tam ortasına odaklanır */
    background-repeat: no-repeat; /* Resmin yan yana kopyalanmasını engeller */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ccc;
}

/* Üretim Süreci / Hakkımızda */
.about-process {
    padding: 60px 20%;
    text-align: center;
    background-color: #fff;
}

.about-process h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-process p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Vitrin (Galeri) */
.gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 10%;
}

.product-card {
    background-color: #fff;
    width: 30%;
    padding: 20px;
    text-align: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-card h3 {
    margin-bottom: 10px;
}

.product-card p {
    color: #777;
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.btn-small:hover {
    background-color: #333;
}

/* --- Yeni Kapsamlı Footer (Alt Bilgi) --- */
.site-footer {
    background-color: #fff;
    padding: 60px 10% 20px 10%;
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Telefondan girildiğinde menülerin düzgünce alt alta inmesini sağlar */
    gap: 20px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.footer-column ul {
    list-style: none; /* Madde işaretlerini (noktaları) kaldırır */
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #888; /* Görseldeki o şık açık gri ton */
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #000; /* Fareyle üzerine gelince siyah olur */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    color: #888;
    font-size: 14px;
}
/* İletişim Sayfası Düzenlemeleri */
.contact-page-section {
    padding: 60px 10%;
    background-color: #fff;
    min-height: 65vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-header p {
    color: #555;
    font-size: 16px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.contact-info {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form .btn {
    border: none;
    cursor: pointer;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background-color: #333;
}

/* --- SSS Sayfası Stilleri --- */
.faq-section {
    padding: 60px 10%;
    background-color: #fff;
    min-height: 60vh;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 300; /* İnce ve zarif başlık */
    margin-bottom: 50px;
    color: #111;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto; /* Sayfanın ortasına hizalar */
}

/* Soru kutusu (details) ayarları */
details {
    margin-bottom: 15px;
}

/* Soru başlığı (summary) ayarları - Gri Kutu */
summary {
    background-color: #f2f2f2;
    padding: 18px 20px;
    font-size: 16px;
    cursor: pointer;
    list-style: none; /* Varsayılan üçgeni kaldırır */
    border-radius: 2px;
    color: #222;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

summary:hover {
    background-color: #e8e8e8;
}

/* Webkit tarayıcılar (Chrome/Safari) için varsayılan üçgeni gizleme */
summary::-webkit-details-marker {
    display: none;
}

/* Kendi tasarladığımız v şeklinde ok işareti */
summary::before {
    content: '\2304'; /* Aşağı dönük ok işareti */
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s;
}

/* Kutu açıldığında ok işaretini yukarı çevirme */
details[open] summary::before {
    transform: rotate(180deg);
}

/* Cevap yazısı (p) ayarları */
details p {
    padding: 20px 20px 10px 45px; /* Yazıyı okun hizasına getirir */
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    background-color: #fff;
}

/* --- Sözleşmeler ve Politikalar Sayfası Stilleri --- */
.policy-section {
    padding: 60px 10%;
    background-color: #fcfcfc; /* Göz yormayan çok açık bir gri/beyaz tonu */
    min-height: 60vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Hafif, zarif bir gölge */
}

.policy-container h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #111;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
}

.policy-item {
    margin-bottom: 30px;
}

.policy-item h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.policy-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* --- Koleksiyon Sayfası (Gelişmiş Grid) --- */
.collection-page {
    padding: 40px 5%;
    background-color: #fff;
    min-height: 80vh;
}

.collection-header {
    margin-bottom: 20px;
}

.collection-header h2 {
    font-size: 32px;
    font-weight: 500;
}

.collection-header span {
    font-size: 14px;
    color: #888;
    font-weight: normal;
}

/* Filtre Çubuğu */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box input {
    padding: 15px 20px;
    border: none;
    background: transparent;
    width: 250px;
    font-size: 14px;
    outline: none;
}

.filter-menu {
    display: flex;
}

.filter-menu a {
    padding: 15px 25px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    border-left: 1px solid #eaeaea;
    transition: background 0.3s;
}

.filter-menu a:hover {
    background-color: #f1f1f1;
}

.filter-menu a.active {
    background-color: #eaeaea;
    color: #000;
    font-weight: bold;
}

/* Ürün Izgarası (Responsive Grid) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Ekrana göre otomatik 4'lü, 3'lü dizilir */
    gap: 30px;
}

.grid-card {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.image-container {
    width: 100%;
    aspect-ratio: 4/5; /* Resimleri dikey ve standart boyutta tutar */
    background-color: #111;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya taşırmadan sığdırır */
    transition: transform 0.5s ease;
}

.grid-card:hover .image-container img {
    transform: scale(1.05); /* Fareyle üzerine gelince resim hafifçe yakınlaşır */
}

.card-details {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-details h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #111;
}

.card-details p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.card-details .price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    margin-top: auto; /* Fiyatı ve butonu hep en alta iter */
}

.btn-grid {
    display: block;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-grid:hover {
    background-color: #333;
}

/* --- Üretim Süreci Sayfası --- */
.process-hero {
    background-color: #111;
    color: #fff;
    padding: 100px 10%;
    text-align: center;
}

.process-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.process-hero p {
    font-size: 18px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    padding: 80px 10%;
    background-color: #fff;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.step-item.reverse {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
}

.step-number {
    font-size: 60px;
    font-weight: bold;
    color: #f0f0f0; /* Arkada silik duran numara */
    display: block;
    line-height: 1;
    margin-bottom: -20px;
}

.step-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.step-image {
    flex: 1;
}

.placeholder-img {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    border-radius: 8px;
}

/* Telefonlarda alt alta düzgün dizilme */
@media (max-width: 768px) {
    .step-item, .step-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

/* Üretim Sürecindeki Gerçek Resimlerin Tasarımı */
.step-image img {
    width: 100%;
    aspect-ratio: 16/9; /* Resmi sinematik dikdörtgen formatta tutar */
    object-fit: cover; /* Resmi sündürmeden çerçevenin içine doldurur */
    border-radius: 8px; /* Köşeleri yumuşatır */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Şık ve hafif bir gölge verir */
}

/* --- Mobil Ekranlar İçin Menü Düzenlemesi --- */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Logoyu ve menüyü alt alta dizer */
        text-align: center;
        padding: 20px 5%;
    }

    .site-logo {
        margin-bottom: 15px; /* Logonun altına boşluk bırakır */
        max-width: 200px; /* Telefondaki logo boyutunu ayarlar */
    }

    header nav {
        display: flex;
        flex-wrap: wrap; /* Ekrana sığmazsa alt satıra kibarca taşır */
        justify-content: center; /* Linkleri ortalar */
        gap: 15px; /* Linklerin arasına nefes alacak boşluklar ekler */
    }

    header nav a {
        font-size: 15px; /* Mobilde yazıları biraz daha estetik boyuta getirir */
        margin-left: 0; /* Eski yan yana durma kuralını sıfırlar */
    }
}

/* --- Mobil Ekranlar İçin İletişim Sayfası Düzenlemesi --- */
@media (max-width: 768px) {
    /* Yan yana duran kutuları alt alta dizer */
    .contact-container, 
    .contact-wrapper,
    .contact-content {
        flex-direction: column !important;
        gap: 30px;
    }

    /* Bilgi kutusu ve formun ekranın tamamını kaplamasını sağlar */
    .contact-info, 
    .contact-form {
        width: 100% !important;
        min-width: 100%;
        margin-bottom: 20px;
    }

    /* Form içindeki kutucukların ve butonun taşmasını engeller */
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%;
        box-sizing: border-box;
    }
}