﻿
body {
    font-family: 'Inter',sans-serif;
    background: #f8f9fa;
    color: #212529;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat',sans-serif;
}

.section-padding {
    padding: 120px 0
}

.text-red {
    color: #c1121f
}

.btn-red {
    background: #c1121f;
    color: #fff;
    padding: 14px 40px;
    border-radius: 0;
    letter-spacing: 1px;
}

    .btn-red:hover {
        background: #9b111e;
        color: #fff
    }

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    padding: 25px 0;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 2px
}

.nav-link {
    color: #fff !important;
    margin-left: 25px;
}

    .nav-link:hover {
        color: #c1121f !important
    }

/* ---------- HERO ---------- */
.hero {
    height: 40vh;
    background: url('https://placehold.co/1200x500/eeeeee/000000?text=İletişim+Hero') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.25);
    }

    .hero h1 {
        position: relative;
        z-index: 2;
        font-size: 3rem;
        color: #212529;
    }

    .hero span.text-red {
        color: #c1121f;
    }

/* ---------- FORM ---------- */
.contact-section {
    background: #fff;
    padding: 80px 0;
}

.contact-form {
    background: #f1f3f5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

    .contact-form .form-control {
        border-radius: 5px;
        border: 1px solid #dee2e6;
        padding: 12px 15px;
    }

    .contact-form .btn-red {
        width: 100%;
    }

/* ---------- CONTACT INFO ---------- */
.contact-info h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    opacity: 0.85;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
footer {
    background: #212529;
    color: #fff;
    padding: 50px 0;
}

    footer h5 {
        color: #c1121f;
        margin-bottom: 15px;
    }

    footer a {
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            color: #c1121f;
        }

@media(max-width:768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
