﻿/* ===== GENEL ===== */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ===== HERO (ANASAYFA GİRİŞ) ===== */
.hero {
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    color: white;
    padding: 80px 0;
    border-radius: 12px;
    margin-bottom: 30px;
}

    .hero h1 {
        font-weight: 700;
        font-size: 2.5rem;
    }

/* ===== ÜRÜN KARTLARI ===== */
.urun-kart {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    overflow: hidden;
}

    .urun-kart:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .urun-kart .card-img-top {
        height: 200px;
        object-fit: cover;
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .urun-kart .fiyat {
        color: #2d6a4f;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* ===== GOOGLE ADS ALANI ===== */
.reklam-alani {
    background-color: #fff;
    border: 1px dashed #dee2e6;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    min-height: 100px;
}

    .reklam-alani small {
        color: #adb5bd;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* ===== FORM KARTI (Giriş/Kayıt) ===== */
.form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
}

    .form-card h2 {
        color: #2d6a4f;
        margin-bottom: 25px;
        text-align: center;
    }

/* ===== BUTONLAR ===== */
.btn-success {
    background-color: #2d6a4f;
    border-color: #2d6a4f;
}

    .btn-success:hover {
        background-color: #1b4332;
        border-color: #1b4332;
    }

.btn-outline-success {
    color: #2d6a4f;
    border-color: #2d6a4f;
}

    .btn-outline-success:hover {
        background-color: #2d6a4f;
        border-color: #2d6a4f;
    }

/* ===== MOBİL UYUMLULUK ===== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 20px;
    }

        .hero h1 {
            font-size: 1.8rem;
        }

    .form-card {
        padding: 25px;
        margin: 20px 10px;
    }
}
