/* ===========================
   Genel Stiller
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f0eb;
}

/* ===========================
   Hero Bölümü
=========================== */

.hero-section {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b2a1a, #7a5c3e);
    padding: 60px 20px;
}

.brand-title {
    font-size: 4rem;
    font-weight: 800;
    color: #f0d9b5;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
    margin-bottom: 16px;
}

.coming-soon {
    font-size: 1.3rem;
    color: #e8c99a;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ===========================
   Form Bölümü
=========================== */

.form-section {
    padding: 60px 20px 80px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(59, 42, 26, 0.12);
    border-top: 5px solid #7a5c3e;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3b2a1a;
}

.form-label {
    font-weight: 600;
    color: #5a3e28;
    margin-bottom: 6px;
}

.form-control {
    border: 1.5px solid #d4b896;
    border-radius: 8px;
    padding: 10px 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #7a5c3e;
    box-shadow: 0 0 0 3px rgba(122, 92, 62, 0.15);
}

.btn-send {
    background-color: #7a5c3e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-send:hover {
    background-color: #3b2a1a;
    color: #f0d9b5;
    transform: translateY(-2px);
}

.btn-send:disabled {
    background-color: #b8997a;
    cursor: not-allowed;
    transform: none;
}

/* ===========================
   Güvenlik - Honeypot
=========================== */

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 576px) {
    .brand-title {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}
