/* Genel Stil */
body {
    background-color: #f4efe8;
    color: #3b1c06;
    font-family: 'Inter', sans-serif;
}

.main-wrapper {
    padding-top: 50px;
    padding-bottom: 100px;
}

/* Hero ve Görsel Bölümü */
.image-container img {
    border: 15px solid #d4af37;
    border-style: ridge;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    color: #d4af37;
    margin: 0;
    line-height: 0.5;
    text-shadow: 2px 2px 0 #3b1c06;
}

.main-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
    color: #3b1c06;
    letter-spacing: -1px;
}

/* İçerik */
.content-grid h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.custom-hr {
    border-top: 2px solid #d4af37;
    margin: 50px 0;
    opacity: 0.3;
}

/* Ürün Kartları */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    transition: 0.3s all ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.product-price {
    color: #8b5e3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-detail {
    border-radius: 0; /* Keskin köşeler */
    background-color: #3b1c06;
    border: none;
    padding: 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-detail:hover {
    background-color: #d4af37;
    color: #3b1c06;
}
/* Slider Kontrol Butonları */
.custom-control {
    width: 5%;
    background-color: rgba(59, 28, 6, 0.1); /* Çok hafif kahve arka plan */
    transition: all 0.3s;
}

.custom-control:hover {
    background-color: rgba(59, 28, 6, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) sepia(100%) saturate(200%) hue-rotate(10deg); /* İkonları kahverengi/altın tonuna çevirir */
}

/* Slider'ın yanlardan taşmaması için konteyner ayarı */
.carousel-inner {
    padding: 10px 0;
}

/* Ürün kartlarını slider içinde eşit boyda tutar */
.carousel-item .product-card {
    margin: 0 5px;
}

/* Mobilde butonları biraz dışarı alalım veya küçültelim */
@media (max-width: 768px) {
    .custom-control {
        width: 10%;
    }
}
/* Hero Slider Özel Ayarları */
.image-container #heroImageSlider {
    border: 15px solid #d4af37; /* Altın çerçeve slider'ın dışında kalsın */
    border-style: ridge;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
}

.image-container .carousel-item img {
    height: 450px; /* Slider yüksekliğini sabitledik */
    object-fit: cover; /* Resmin bozulmadan alanı kaplamasını sağlar */
}

/* Geçiş efekti daha yumuşak olsun (Fade efekti) */
.carousel-fade .carousel-item {
    transition-duration: 1.5s;
}

/* Çerçeveyi slider dışına taşıdığımız için img-container border'ını kaldırabilirsin */
.image-container > img {
    border: none !important;
}

/* 4'lü Kutu Tasarımı */
.info-box {
    background-color: rgba(255, 255, 255, 0.6); /* Hafif transparan beyaz */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Altın rengi ince kenarlık */
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-box:hover {
    background-color: #fff;
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.box-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #3b1c06;
    margin-bottom: 15px;
}

.box-text {
    font-size: 0.9rem;
    color: #5a4a3a;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Kutu İçi İncele Linki/Butonu */
.btn-box-link {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-box-link:hover {
    color: #3b1c06;
}
/* Header & Logo */
.main-header {
    background-color: #fff;
    width: 100%;
}

.main-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    color: #3b1c06;
}

.header-phone {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-form .form-control {
    border: 1px solid #eee;
    font-size: 0.8rem;
    max-width: 250px;
}

/* Navbar Ayarları */
.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #3b1c06 !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

/* HOVER İLE MENÜ AÇILMASI (Masaüstü için) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

.dropdown-item {
    font-size: 0.85rem;
    padding: 10px 20px;
    color: #3b1c06;
}

.dropdown-item:hover {
    background-color: #f4efe8;
    color: #d4af37;
}

/* Sticky Navbar Gölgesi */
.sticky-top {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Ana Slider Ayarları */
#mainHeroSlider {
    position: relative;
    max-height: 700px;
    overflow: hidden;
}

.slider-img {
    height: 700px;
    object-fit: cover;
}

/* Resim Üzerindeki Karartma */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Yazılar okunsun diye %40 siyahlık */
    z-index: 1;
}

/* Yazı Alanı */
.custom-caption {
    z-index: 2;
    bottom: 25%; /* Yazıları biraz daha yukarı çektik */
    text-align: center;
}

.slider-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slider-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #f8f9fa;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1.5s ease;
}

/* Slider Butonu */
.btn-slider {
    background-color: #d4af37;
    color: #3b1c06;
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 0;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid #d4af37;
}

.btn-slider:hover {
    background-color: transparent;
    color: #d4af37;
}

/* Animasyon Efekti */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ok Butonlarını Güzelleştirme */
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    background-size: 50%;
}

@media (max-width: 768px) {
    .slider-img { height: 450px; }
    .slider-title { font-size: 2rem; }
    .slider-text { font-size: 1rem; }
}/* Kategori Başlığı */
.category-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #3b1c06;
    letter-spacing: 2px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 10px auto;
}

/* Full Width Banner */
.full-width-banner {
    width: 80%;
    height: 300px;
    margin:auto;
    padding: auto;
    background-image: url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?auto=format&fit=crop&q=80&w=1600'); /* Kendi banner görselini buraya koy */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti verir */
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-sub-text {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    letter-spacing: 5px;
}

.banner-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Ürün Kartı Düzenlemeleri (Tekrar) */
.product-card {
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image img {
    height: 320px;
    object-fit: cover;
}