/* Mangal Dünyası Genel Stil Dosyası 
    Tema: Koyu, Modern, Köz Renk Paleti
    Font: Poppins (200, 400, 600, 800)
*/

/* --- 1. RESET VE GENEL STİL --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-dark: #121212; /* Ana Arka Plan */
    --color-text: #f0f0f0; /* Ana Metin Rengi */
    --color-accent-primary: #FF5722; /* Köz Kırmızısı/Turuncusu (Önemli Vurgu) */
    --color-accent-secondary: #FF9800; /* Parlak Turuncu (Butonlar) */
    --color-dark-surface: #1e1e1e; /* Kartlar ve Yüzeyler */
    --color-light-gray: #b0b0b0; /* Alt Metinler */
}

body {
    background-color: var(--color-dark);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-accent-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 50px;
    font-weight: 400;
}

.highlight-text {
    color: var(--color-text);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- 2. HEADER VE NAVİGASYON --- */
header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-highlight {
    color: var(--color-accent-primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--color-light-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding: 5px 0;
}

nav a:hover, nav a.active {
    color: var(--color-accent-secondary);
    border-bottom: 2px solid var(--color-accent-secondary);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- 3. CTA BUTONLARI --- */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button i {
    margin-left: 8px;
}

.primary {
    background-color: var(--color-accent-primary); /* Köz Kırmızısı */
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.primary:hover {
    background-color: #e04a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.secondary {
    background-color: transparent;
    border: 2px solid var(--color-accent-secondary); /* Parlak Turuncu Çizgi */
    color: var(--color-accent-secondary);
}

.secondary:hover {
    background-color: rgba(255, 152, 0, 0.1);
    transform: translateY(-2px);
}

/* --- 4. HERO SECTION --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.95)); /* Koyu degrade ile içeriği öne çıkar */
    z-index: 1;
}

.hero-image-placeholder {
    /* Buraya arka plan görseli/videosu yerleştirilmelidir */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.5; /* Görseli hafifçe silikleştir */
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.hero-pre-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-accent-secondary);
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-slogan {
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--color-light-gray);
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- 5. ÖZELLİKLER (FEATURES) SECTION --- */
.dark-bg {
    background-color: var(--color-dark-surface);
}

.feature-card {
    background-color: var(--color-dark);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--color-accent-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-accent-secondary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--color-light-gray);
    font-weight: 400;
}


/* --- 6. ÜRÜN KARTLARI (POPULAR PRODUCTS) --- */

.product-card {
    background-color: var(--color-dark-surface);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #333; /* Placeholder arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.product-card h4 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent-secondary);
}

.product-card p {
    padding: 0 20px 15px;
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

.product-card .price {
    display: block;
    padding: 10px 20px 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-primary);
    border-top: 1px dashed #333;
}


/* --- 7. FOOTER --- */
footer {
    background-color: var(--color-dark-surface);
    padding: 30px 0;
    border-top: 3px solid var(--color-accent-primary);
}

footer p {
    font-size: 0.9rem;
    color: #666;
}

/* --- 8. MEDYA SORGULARI (RESPONSIVE TASARIM) --- */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    nav ul {
        gap: 10px;
        justify-content: space-around;
        padding-top: 10px;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        margin-bottom: 10px;
    }
}