:root {
    --accent: #c0392b;
}

body {
    background: #111;
    color: #eee;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Navigasyon tıklandığında başlığın kesilmesini önler */
section {
    scroll-margin-top: 100px;
}

.navbar {
    background: rgba(17, 17, 17, 0.98) !important;
    backdrop-filter: blur(10px);
}

/* HERO IMAGE - Overlay updated to 0.4 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../images/emir-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
    transition: all 0.3s;
}

.btn-accent:hover {
    background: #e74c3c;
    transform: scale(1.05);
}

.section-title {
    color: var(--accent);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--accent);
}

/* Cards */
.card {
    background: #1a1a1a;
    border: none;
    color: #eee;
    transition: all 0.3s;
}

.card h5, .card h4, .card h2, .card p, .card li {
    color: #eee !important;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 30px rgba(192, 57, 43, 0.25);
}

/* Form */
.form-control, .form-select {
    background: #222;
    border: 1px solid #555;
    color: #fff !important;
}

.form-label {
    color: #ddd;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus, .form-select:focus {
    background: #222;
    border-color: var(--accent);
    color: #fff;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    color: white;
    font-size: 2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Galeri Geliştirmesi */
.gallery-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.03);
}

/* reCAPTCHA Rozetini Gizleme (Google Şartlarına Göre Yasal Metin Eklenmelidir) */
.grecaptcha-badge {
    visibility: hidden;
}
