/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@400;500&display=swap');

/* Genel ayarlar */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #3E3E3E; /* Genel metin rengi */
}

/* HERO */
.hero {
    position: relative;
    background: url('../assets/women.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-text {
    position: relative;
    color: #FADADD; /* Gül pembesi başlık */
    text-align: center;
    z-index: 1;
    padding: 0 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #E8DFF5; /* lavanta tonu */
}

/* NEDEN KALME */
.neden {
    text-align: center;
    padding: 50px 20px;
}

.neden h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #A0526F; /* gül kurusu */
    margin-bottom: 2rem;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #3E3E3E;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2rem;
    color: #A0526F;
}

.card h3 {
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #6D6875; /* lavanta grisi */
}

.card p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #3E3E3E;
}

/* Renk temaları */
.pink { background-color: #FADADD; }
.purple { background-color: #E8DFF5; }
.beige { background-color: #FDF6F0; border: 1px solid #FADADD; }

/* RESPONSIVE DESIGN */

/* Mobil cihazlar */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-position: top center; /* üst kısmı göster */
        padding: 0 1rem;
    }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 1rem; max-width: 90%; }

    .cards { flex-direction: column; align-items: center; }
    .card { width: 80%; }
}

/* Küçük mobil ekranlar */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        background-position: center top; /* önemli kısmı göster */
    }
    .hero-text h1 { font-size: 22px; }
    .hero-text p { font-size: 0.9rem; }
    .neden h2 { font-size: 1.6rem; }
    .card h3 { font-size: 1rem; }
    .card p { font-size: 0.85rem; }
}