/* Karşılama alanına koyu bir fırın arka planı ekliyoruz */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
}

.shadow-text { text-shadow: 2px 2px 4px rgba(0,0,0,0.9); }
.bg-dark { background-color: #1a1a1a !important; }

/* Butonlar ve Vurgular */
.btn-warning {
    background-color: #FF6600; 
    border-color: #FF6600;
    color: #FFFFFF;
    font-weight: bold;
}
.btn-warning:hover {
    background-color: #CC5200; 
    border-color: #CC5200;
    color: #FFFFFF;
}

/* --- Logonun Rengini Ayarlama --- */
.navbar-brand img {
    height: 100px; 
    width: auto;  
    object-fit: contain; 
    display: block;
    filter: hue-rotate(-30deg) saturate(1.5); 
}

/* --- Menü Linkleri --- */
.navbar-nav .nav-item { margin-left: 10px; }
.navbar-nav .nav-link {
    color: #ffffff !important; 
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 8px; 
    padding: 8px 18px !important; 
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease; 
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #FF6600 !important; 
    border-color: #FF6600 !important; 
    color: #ffffff !important; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4); 
}

/* --- Premium Vitrin Ürün Kartları --- */
.urun-karti {
    background-color: #1a1a1a !important; 
    border: 1px solid #333 !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.urun-karti:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 25px rgba(255, 102, 0, 0.25) !important; 
    border-color: #FF6600 !important;
}
.urun-resmi {
    height: 240px; 
    object-fit: cover;
    width: 100%;
    border-bottom: 3px solid #FF6600; 
}
.urun-baslik {
    color: #FF6600 !important; 
    font-weight: 800 !important; 
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}
.urun-aciklama {
    color: #ffffff !important; 
    font-size: 1.05rem;
    line-height: 1.6;
}
.btn-siparis {
    background-color: transparent;
    color: #FF6600;
    border: 2px solid #FF6600;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.btn-siparis:hover {
    background-color: #FF6600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    transform: scale(1.05); 
}
/* --- Kategori Sekme Butonları --- */
.kategori-buton {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.kategori-buton:hover {
    border-color: #FF6600 !important;
    color: #FF6600 !important;
}

.kategori-buton.active {
    background-color: #FF6600 !important;
    color: #ffffff !important;
    border-color: #FF6600 !important;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}
