/* --- TEMEL AYARLAR VE SIFIRLAMA --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #1a1a1a;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* --- HEADER VE AÇILIR MENÜ (DÜZELTİLDİ) --- */
header {
    background: #1c2e4a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.menu-trigger {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px; /* Tıklama alanını genişlettik */
    display: inline-block;
}

/* Görünmez Köprü: İkonla menü arasındaki kopukluğu önler */
.menu-trigger::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px; /* Köprünün yüksekliği */
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Tam ikonun altından başlar */
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-top: 10px; /* Boşluğu azalttık */
    z-index: 1001;
}

.menu-trigger:hover .dropdown-content { 
    display: block; 
}

.dropdown-content a {
    color: #1c2e4a;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.dropdown-content a:hover { 
    background-color: #f8f9fa; 
    color: #d4af37; 
}

/* --- MANŞET SLIDER --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden; 
    border-radius: 10px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slider-info h2 { font-size: 2.8rem; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.badge { background: #d4af37; padding: 4px 12px; border-radius: 3px; font-weight: bold; font-size: 0.8rem; }

.btn-incele {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    background: rgba(0,0,0,0.2);
}

.btn-incele:hover { background: #d4af37; color: white; }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s;
    z-index: 10;
}
.next { right: 0; }
.prev:hover, .next:hover { background: #d4af37; }

/* --- KATEGORİ KUTULARI --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 40px;
}

.cat-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 4px solid #1c2e4a;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.cat-card:hover { 
    transform: translateY(-5px); 
    border-color: #d4af37; 
    color: #d4af37;
}

/* --- FOOTER --- */
footer {
    background: #1c2e4a;
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-top: 50px;
}

.social-links a {
    color: white;
    font-size: 2rem;
    margin: 0 15px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover { color: #d4af37; }