/* --- Değişkenler ve Reset (Elegant Pastel Palette) --- */
:root {
    --sidebar-width: 280px;
    
    /* Renkler - Yumuşak ve Romantik */
    --color-bg: #FDFBFB;        /* Kırık Beyaz / Pudra Alttonlu */
    --color-sidebar: #FFFFFF;   /* Saf Beyaz Sidebar */
    --color-text: #666666;      /* Yumuşak Gri */
    --color-heading: #444444;   /* Koyu Gri */
    --color-gold: #C5A059;      /* Şampanya Altın */
    --color-gold-hover: #B08D55;
    --color-rose: #F8E8E8;      /* Çok açık pembe */
    --color-rose-dark: #D4A5A5; /* Gül Kurusu */
    --color-border: #F2EAEA;
    
    /* Fontlar */
    --font-script: 'Great Vibes', cursive;       /* El Yazısı (Başlıklar için) */
    --font-heading: 'Playfair Display', serif;   /* Zarif Serif */
    --font-body: 'Lato', sans-serif;             /* Temiz Sans-Serif */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; border-radius: 4px; }
ul { list-style: none; }

/* --- Ana Düzen --- */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- Sol Sidebar (White & Elegant) --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--color-sidebar);
    color: var(--color-heading);
    position: fixed;
    height: 100vh;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    border-right: 1px solid var(--color-border);
    box-shadow: 2px 0 20px rgba(0,0,0,0.02);
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-align: center;
}
.flower-icon { font-size: 1.5rem; vertical-align: middle; margin-left: 5px; opacity: 0.8; }

.nav-menu li { margin-bottom: 20px; text-align: center; }
.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #999;
    display: block;
    padding: 10px 0;
    font-style: italic; /* Romantik dokunuş */
    transition: all 0.4s ease;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-heading);
    font-weight: 600;
    /* Altın rengi alt çizgi yerine dekoratif bir süsleme */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 10 0 20 5 T 40 5' stroke='%23C5A059' fill='none' stroke-width='1' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: #AAA;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.phone-link { display: block; margin-top: 5px; color: var(--color-gold); font-family: var(--font-heading); font-size: 1.2rem; }
.social-text { margin-top: 10px; font-family: var(--font-script); font-size: 1.3rem; color: var(--color-rose-dark); }

/* --- Sağ Ana İçerik --- */
.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    display: flex;
    flex-direction: column;
}

/* --- Hero & Header --- */
.hero-header, .page-header {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-header.compact { height: 45vh; }

.overlay-light {
    background: rgba(255, 255, 255, 0.2); /* Hafif beyaz perde */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.hero-frame {
    background: rgba(255, 255, 255, 0.85);
    padding: 60px 80px;
    border: 1px solid var(--color-gold);
    outline: 6px solid rgba(255, 255, 255, 0.5); /* Çift çerçeve etkisi */
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.script-font { font-family: var(--font-script); font-weight: 400; }

.hero-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--color-heading);
    line-height: 1.1;
}
.page-header h1 { 
    font-family: var(--font-heading);
    font-size: 3.5rem; 
    color: #fff; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.2); 
}
.overlay-light h1.script-font { color: var(--color-gold); text-shadow: none; font-size: 5rem; }

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #666;
    font-family: var(--font-body);
}

/* --- İçerik Konteyneri --- */
.content-container {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 100px 60px;
    width: 100%;
    background-color: #FFF;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 30px rgba(0,0,0,0.02);
    border-radius: 4px;
}

/* --- Tipografi ve Bölümler --- */
.text-section { margin-bottom: 80px; }
.text-center { text-align: center; }

.script-title { font-family: var(--font-script); font-size: 3.5rem; color: var(--color-gold); margin-bottom: 15px; display: block; }

h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    color: var(--color-heading);
    font-weight: 400;
}
h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; color: var(--color-rose-dark); margin-top: 20px; font-style: italic; }
p { margin-bottom: 20px; text-align: justify; font-size: 1.05rem; color: #666; }
.text-center p { text-align: center; }

.bg-pastel {
    background-color: #FDF5F6; /* Çok açık pembe */
    padding: 60px;
    border: 1px solid #F5E6E8;
    border-radius: 8px;
}

/* --- Grid ve Kartlar (Kemerli/Oval) --- */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.grid-card { text-align: center; }
.img-oval, .img-arch { 
    border-radius: 200px 200px 0 0; /* Kemerli (Arch) şekil */
    overflow: hidden; 
    margin-bottom: 25px; 
    border: 8px solid #FFF;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 380px;
    transition: transform 0.4s ease;
}
.grid-card:hover .img-arch { transform: translateY(-10px); }

.grid-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.grid-card:hover img { transform: scale(1.05); }

/* Split Layout */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.img-frame { padding: 15px; border: 1px solid var(--color-gold); }
.split-layout img { width: 100%; }
.split-layout .split-content { width: 55%; }

/* --- Formlar --- */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.contact-info { background: #FFF9FA; padding: 40px; border: 1px solid var(--color-rose-dark); text-align: center; border-radius: 4px; }
.contact-info h3 { color: var(--color-gold); border-bottom: 1px solid #F0E0E0; padding-bottom: 10px; margin-bottom: 20px; }
.small-text { font-style: italic; color: #999; font-size: 0.85rem; }

.form-group { margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; margin-bottom: 8px; font-family: var(--font-heading); color: var(--color-heading); font-size: 1rem; font-style: italic; }
input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    background: #FFFEFE;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: 0.3s;
}
input:focus, textarea:focus { border-color: var(--color-gold); outline: none; background: #FFF; box-shadow: 0 0 8px rgba(197, 160, 89, 0.15); }

.btn {
    display: inline-block;
    padding: 16px 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
}
.btn-gold { background-color: var(--color-gold); color: #FFF; }
.btn-gold:hover { background-color: var(--color-gold-hover); }
.btn-outline-rose { background: transparent; border: 1px solid var(--color-rose-dark); color: var(--color-rose-dark); }
.btn-outline-rose:hover { background: var(--color-rose-dark); color: #FFF; }
.full-width { width: 100%; }

/* --- Yorumlar --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.review-card {
    background: #FFF;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #F5F5F5;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
}
.heart-icon { font-size: 2rem; color: var(--color-rose-dark); margin-bottom: 20px; }
blockquote { font-style: italic; color: #666; margin-bottom: 25px; font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.6; }
cite { font-weight: 600; font-size: 0.85rem; display: block; color: var(--color-gold); text-transform: uppercase; letter-spacing: 1px; }

/* --- Footer --- */
.page-footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #F0E6E6;
    color: #999;
    font-size: 0.85rem;
    margin-top: auto;
    background: #FCFCFC;
    font-family: var(--font-heading);
}

/* --- Mobil Menü Butonu --- */
.menu-toggle { display: none; }

/* --- Duyarlı Tasarım (Mobil) --- */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        transition: transform 0.5s ease;
        padding-top: 100px;
    }
    .sidebar.active { transform: translateX(0); }
    
    .main-content { margin-left: 0; width: 100%; }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: fixed;
        top: 25px;
        left: 25px;
        z-index: 1001;
        background: #FFF;
        border: 1px solid var(--color-gold);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .line {
        display: block;
        width: 20px;
        height: 1px;
        background: var(--color-gold);
    }

    .hero-header h1 { font-size: 2.5rem; }
    .hero-frame { padding: 40px 20px; border: none; outline: none; background: rgba(255,255,255,0.95); }
    .overlay-light h1.script-font { font-size: 3.5rem; }
    .content-container { padding: 60px 25px; margin-top: 0; }
    .grid-section, .split-layout, .contact-layout, .form-row { grid-template-columns: 1fr; display: block; }
    .split-layout img, .split-layout .split-content { width: 100%; }
    .split-layout img { margin-bottom: 30px; }
    .grid-card { margin-bottom: 50px; }
}