/* ✅ Hero Bölümü */
.hero {
    background: url('/images/hero-bg.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

/* ✅ Hakkımızda Bölümü */
.about-content {
    width: 80%;
    margin: 60px auto;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.about-text p, .about-text ul {
    font-size: 1.2rem;
    color: #5C4033;
    line-height: 1.6;
}

/* ✅ İletişim Çağrısı */
.contact-cta {
    text-align: center;
    background: #8B4513;
    color: white;
    padding: 40px;
    margin-top: 40px;
}

.contact-cta h2 {
    font-size: 2.2rem;
}

.contact-btn {
    background: white;
    color: #8B4513;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.contact-btn:hover {
    background: #5C4033;
    color: white;
}
