/* Anasayfa / Hero */
.section.home {
    padding: 0;
    min-height: 100vh;
    text-align: left;
    background-color: #0c2d48;
    color: #ffffff;
}

.hero {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(12,45,72,0.85), rgba(12,45,72,0.92)), url('img/premium-park-etap1-cover.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 80px;
}

.hero-overlay {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-logo {
    max-width: 320px;
    margin: 0 auto 18px;
    display: block;
}

.hero-title {
    font-size: 52px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Genel butonlar */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border: 2px solid transparent;
}

.btn.primary {
    background-color: #00bcd4;
    color: #0c2d48;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 188, 212, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn.secondary:hover {
    background-color: #ffffff;
    color: #0c2d48;
}

/* Hakkımızda sayfası */
.about-page {
    background-color: #f7f9fc;
}

.about-wrapper {
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.about-wrapper h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0c2d48;
}

.about-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.about-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.about-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #0c2d48;
}

.about-item p {
    margin: 0;
    font-size: 14px;
    color: #555555;
}

/* İletişim + Hızlı İletişim kutusu */
.iletisim-section {
    background-color: #ffffff;
    text-align: center;
}

.iletisim-section p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 15px;
    color: #333333;
}

.cta-box {
    max-width: 600px;
    margin: 24px auto 0;
    background-color: #f7f9fc;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cta-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0c2d48;
}

.cta-box p {
    font-size: 15px;
    margin-bottom: 18px;
    color: #333333;
}

/* WhatsApp butonu */
.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    font-size: 11px;
    text-align: center;
    padding: 6px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 220px;
    }

    .hero {
        padding: 140px 16px 60px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-tagline {
        font-size: 16px;
    }
}
