/*
Theme Name: Sesa Estetik Teması
Author: Polat
Description: Sesa Estetik ve Güzellik merkezi için özel WordPress teması.
Version: 1.0
*/

:root {
    --gold: #c5a059;
    --dark: #222;
    --light-bg: #fdfaf7;
    --text: #555;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 90%;
    z-index: 100;
    background: transparent;
}

.logo { color: #fff; font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #fff; font-weight: 500; font-size: 14px; }

/* 1. Hero / Slider (image_39e020.jpg) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 { font-size: 60px; margin-bottom: 20px; }
.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

/* 4. Yorumlar ve Kartlar (image_39d95c.jpg) */
.reviews-section { padding: 80px 0; background: #fff; text-align: center; }
.reviews-section h2 { color: #5cb8e6; margin-bottom: 40px; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-bottom: 4px solid red;
    text-align: left;
}
.feature-card i { color: red; font-size: 30px; }

/* 2. Hakkımızda (image_39dd3c.jpg) */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-img { flex: 1; position: relative; }
.about-img img { width: 100%; border-radius: 5px; }
.about-content { flex: 1; }
.hours-box {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 3. Hizmetler Grid (image_39dcbd.jpg) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 300px;
}
.service-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}
.service-item:hover .service-overlay { opacity: 1; }

/* Sesa Yazı Detay Sayfası Tasarımı */
.post-detail-content {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: sans-serif; /* Sitede kullandığın font hangisiyse onunla değiştirebilirsin */
}

.container-sesa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.post-flex-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Sol Görsel Alanı */
.post-images-side {
    flex: 1;
    position: relative;
    min-height: 450px;
}

.image-box-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-featured-img img {
    width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
}

.secondary-featured-img img {
    width: 55%;
    height: auto;
    border-radius: 15px;
    position: absolute;
    bottom: -30px;
    right: 10%;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Sağ Metin Alanı */
.post-text-side {
    flex: 1;
}

.post-main-title {
    font-size: 38px;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-weight: 700;
}

.post-entry-content {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-entry-content p {
    margin-bottom: 15px;
}

/* Buton Tasarımı */
.post-cta-wrapper {
    margin-top: 20px;
}

.btn-sesa-cta {
    display: inline-block;
    background-color: #b39353; /* Fotoğraftaki gold/vizon tonu */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-sesa-cta:hover {
    background-color: #987b41;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 768px) {
    .post-flex-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .post-images-side {
        min-height: auto;
        margin-bottom: 40px;
    }
    .main-featured-img img {
        width: 100%;
    }
    .secondary-featured-img img {
        width: 60%;
        right: 0;
        bottom: -20px;
    }
    .post-main-title {
        font-size: 28px;
    }
}