/* static/css/style.css */

:root {
    --primary-color: #800000; /* Koyu Bordo */
    --secondary-color: #006400; /* Koyu Yeşil */
    --light-bg: #f5f5f5;
    --dark-text: #333;
    --font-serif: "Playfair Display", serif;
}

body {
    font-family: "Lato", sans-serif;
    color: var(--dark-text);
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Genel Başlık Stili */
h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--primary-color);
}

/* Banner referans alanı */
.page-banner {
    position: relative;
}

/* HERO banner başlığı SOL-ALT */
.hero-title {
    position: absolute;
    left: 200px;
    bottom: -250px;

    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* TEPELİ (büyük) */
.hero-title .title-main {
    font-size: clamp(3.1rem, 5.5vw, 4.1rem);
    display: block;
}

/* HUKUK BÜROSU (daha küçük) */
.hero-title .title-sub {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    display: block;
    margin-top: 6px;
    letter-spacing: 3px;
}

/* Basit Buton Stili */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hero-title {
        left: 20px;
        bottom: 20px;
    }

    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }
}
