/* --- Elegant Petals Değişkenleri --- */
:root {
    --primary-rose: #d4a5a5;   /* Gül Kurusu */
    --soft-cream: #fff9f5;     /* Krem Arka Plan */
    --accent-sage: #9cadce;    /* Yumuşak Mavi/Yeşil */
    --text-dark: #4a4a4a;      /* Koyu Gri */
    --text-light: #ffffff;
    
    /* Yaprak Şekli (Petal Shape) */
    --radius-petal: 20px 0 20px 0;
    --radius-petal-rev: 0 20px 0 20px;
    
    --shadow-soft: 0 10px 25px rgba(212, 165, 165, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --max-width: 1200px;
}

/* --- Fontlar --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Temel Ayarlar --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--soft-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

/* --- Tipografi --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
p { margin-bottom: 1.5rem; font-weight: 300; }

/* Başlık altı dekoratif çizgi */
h2::after {
    content: '❀';
    display: block;
    color: var(--primary-rose);
    font-size: 1.5rem;
    margin-top: 10px;
}

/* --- Header --- */
header {
    background-color: rgba(255, 249, 245, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-rose);
    font-weight: bold;
}

.nav-links { display: flex; gap: 40px; }

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-rose); }

/* Mobil Menü */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background-color: var(--text-dark); margin: 6px; }

/* --- Hero Bölümü --- */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 249, 245, 0.5), rgba(255, 249, 245, 0.5)), url('https://images.pexels.com/photos/3762875/pexels-photo-3762875.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-petal); /* Petal şekli */
    box-shadow: var(--shadow-soft);
    border: 1px solid white;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-rose);
    color: white;
    font-family: var(--font-heading);
    border-radius: 50px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-sage);
    transform: translateY(-3px);
}

/* --- Düzen --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 80px 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* --- Kart Tasarımı (Petal) --- */
.petal-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-petal); /* Köşeler asimetrik */
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(212, 165, 165, 0.1);
}

.petal-card:hover {
    transform: translateY(-10px);
    border-radius: var(--radius-petal-rev); /* Hover'da şekil değişimi */
}

.icon-box svg {
    width: 50px; height: 50px;
    fill: var(--primary-rose);
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background-color: #fff0f0;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 2px solid var(--primary-rose);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 { font-family: var(--font-heading); margin-bottom: 20px; color: var(--primary-rose); font-size: 1.2rem; }
.footer-col a { display: block; margin-bottom: 10px; color: var(--text-dark); opacity: 0.8; }
.footer-col a:hover { color: var(--primary-rose); opacity: 1; }

.german-phone {
    font-weight: bold;
    color: var(--accent-sage);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright { text-align: center; margin-top: 40px; font-size: 0.9rem; opacity: 0.6; }

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 70px; right: 0;
        height: 100vh; width: 70%;
        background-color: white;
        flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    }
    .nav-links.active { transform: translateX(0); }
    .burger { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .hero-content { margin: 0 20px; padding: 30px; }
}   