/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --renk-ahsap: #8B6F47;
    --renk-ahsap-koyu: #6B5230;
    --renk-ahsap-acik: #B8956A;
    --renk-gri: #5A5A5A;
    --renk-gri-acik: #E8E8E8;
    --renk-bakir: #B87333;
    --renk-bakir-acik: #D4A574;
    --renk-beyaz: #FFFFFF;
    --renk-siyah: #2C2C2C;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--renk-siyah);
    background-color: var(--renk-beyaz);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--renk-ahsap-koyu) 0%, var(--renk-ahsap) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--renk-beyaz);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--renk-beyaz);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem;
}

nav a:hover {
    opacity: 0.8;
}

nav a.active {
    color: var(--renk-bakir-acik);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    margin-right: 1rem;
    padding: 0;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--renk-beyaz);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle::before {
    top: 0;
    box-shadow: 0 10.5px 0 var(--renk-beyaz);
}

.mobile-menu-toggle::after {
    bottom: 0;
}

.mobile-menu-toggle.active::before {
    top: 10.5px;
    transform: rotate(45deg);
    box-shadow: none;
}

.mobile-menu-toggle.active::after {
    bottom: 10.5px;
    transform: rotate(-45deg);
}

/* Ana İçerik */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(107, 82, 48, 0.8), rgba(107, 82, 48, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--renk-beyaz);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Kartlar */
.kartlar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.kart {
    background: var(--renk-beyaz);
    border: 2px solid var(--renk-ahsap-acik);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(107, 82, 48, 0.2);
}

.kart img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.kart h3 {
    color: var(--renk-ahsap-koyu);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.kart p {
    color: var(--renk-gri);
    margin-bottom: 1rem;
}

.kart a {
    display: inline-block;
    background: var(--renk-bakir);
    color: var(--renk-beyaz);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.kart a:hover {
    background: var(--renk-bakir-acik);
}

/* İkonlar - CSS ile oluşturulmuş */
.icon-cizgi {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.icon-cizgi::before,
.icon-cizgi::after {
    content: '';
    position: absolute;
    background: var(--renk-bakir);
}

/* Çekiç İkonu */
.icon-cekic::before {
    width: 12px;
    height: 20px;
    left: 6px;
    top: 2px;
    border-radius: 2px;
}

.icon-cekic::after {
    width: 16px;
    height: 4px;
    left: 4px;
    top: 0;
    border-radius: 2px;
}

/* Tornavida İkonu */
.icon-tornavida::before {
    width: 3px;
    height: 18px;
    left: 10px;
    top: 3px;
    border-radius: 1px;
}

.icon-tornavida::after {
    width: 12px;
    height: 3px;
    left: 6px;
    top: 0;
    border-radius: 1px;
}

/* Pense İkonu */
.icon-pense::before {
    width: 4px;
    height: 16px;
    left: 6px;
    top: 4px;
    border-radius: 2px;
}

.icon-pense::after {
    width: 14px;
    height: 4px;
    left: 5px;
    top: 4px;
    border-left: 2px solid var(--renk-bakir);
    border-right: 2px solid var(--renk-bakir);
}

/* Bölümler */
.bolum {
    margin: 3rem 0;
}

.bolum h2 {
    color: var(--renk-ahsap-koyu);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--renk-bakir);
}

.bolum h3 {
    color: var(--renk-ahsap);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.bolum p {
    margin-bottom: 1rem;
    color: var(--renk-gri);
}

.bolum ul, .bolum ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--renk-gri);
}

.bolum li {
    margin-bottom: 0.5rem;
}

/* Form */
.form-container {
    background: var(--renk-gri-acik);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--renk-ahsap-koyu);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--renk-ahsap-acik);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--renk-bakir);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
}

.btn-submit {
    background: var(--renk-bakir);
    color: var(--renk-beyaz);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--renk-bakir-acik);
}

/* Footer */
footer {
    background: var(--renk-siyah);
    color: var(--renk-beyaz);
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--renk-bakir-acik);
}

.footer-section a {
    color: var(--renk-gri-acik);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--renk-bakir-acik);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--renk-gri);
    color: var(--renk-gri-acik);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--renk-siyah);
    color: var(--renk-beyaz);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn-accept {
    background: var(--renk-bakir);
    color: var(--renk-beyaz);
}

.cookie-btn-essential {
    background: var(--renk-gri);
    color: var(--renk-beyaz);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--renk-beyaz);
    border: 2px solid var(--renk-gri);
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

nav {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--renk-ahsap-koyu);
        z-index: 1000;
        padding: 4rem 2rem 2rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .kartlar {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }
}

