/* Sayfa İçi Yumuşak Kaydırma (Smooth Scrolling) */
html {
    scroll-behavior: smooth;
}

/* Genel Stil Ayarları */
:root {
    --primary-color: #e0a3ad; /* Hafif pembe/gül tonu */
    --secondary-color: #5d5d5d; /* Koyu gri */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-color);
}

.section-title {
    font-family: var(--font-heading);
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Navigasyon Stilleri */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

.nav-link.btn-primary:hover {
    background-color: #c98894 !important;
    border-color: #c98894 !important;
}

/* Hero (Giriş) Alanı */
.hero-section {
    height: 80vh; 
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); 
}

.hero-section h1, .hero-section p {
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.custom-btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    font-weight: bold;
    transition: all 0.3s;
}

.custom-btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Randevu Alanı ve Buton Stilleri */
.custom-bg-color {
    background-color: var(--primary-color);
}

.custom-btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: bold;
    transition: all 0.3s;
}

.custom-btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Resim Orantı Kontrolü (Responsive Image Containment) - Tanıtım Alanı için korundu */
.image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 1. Tanıtım Alanı Resmi (Kare Oran) */
.square-image {
    padding-bottom: 100%; /* Resim Yüksekliğini Genişliğe Oranla %100 yapar (Kare) */
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin orantısını bozmadan kapsayıcıyı doldurur */
    display: block;
}

/* Carousel (Slayt) Resim Orantı Kontrolü */
.carousel-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* Yüksekliği genişliğin %56.25'i yapar (16:9) */
}

.carousel-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin orantısını bozmadan kapsayıcıyı doldurur */
    display: block;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}
/* Carousel CSS SONU */

/* Promosyon Alanı Stilleri */
.promo-card {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--secondary-color);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.promo-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 75%; /* 4:3 oranında görsel */
}

.promo-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Hizmet Kartı İkonları */
.service-icon {
    font-size: 3rem;
}

.service-card {
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Mobil Uyumluluk İyileştirmeleri */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        background-attachment: scroll; 
    }
    .section-title {
        font-size: 2rem;
    }
}
/* ===================================== */
/* YENİ: KURUMSAL LOGO STİLİ */
/* ===================================== */

.navbar-brand.custom-logo {
    display: flex; /* Öğeleri alt alta hizalamak için */
    flex-direction: column;
    line-height: 1; /* Satır aralığını daraltır */
    text-transform: uppercase;
    font-weight: 700;
    margin-top: -5px; /* Navbar'da daha iyi görünmesi için hafif yukarı kaydır (isteğe bağlı) */
}

.navbar-brand.custom-logo .main-title {
    /* Ana Başlık: SARA GÖÇER */
    font-family: var(--font-heading); /* Playfair Display */
    font-size: 1.5rem; 
    letter-spacing: 2px;
    /* Renk Paletindeki Pembe/Gül Tonunu Kullanır */
    color: var(--primary-color) !important; 
}

.navbar-brand.custom-logo .sub-title {
    /* Alt Başlık: STUDIO */
    font-family: var(--font-body); /* Roboto */
    font-size: 0.7rem; /* Daha küçük ve zarif */
    font-weight: 400;
    letter-spacing: 5px; /* Harf aralığını açarak lüks bir his verir */
    /* Renk Paletindeki Koyu Gri Tonunu Kullanır */
    color: var(--secondary-color) !important; 
    margin-top: 2px;
}

/* Mevcut navbar-brand stilini etkisiz hale getirelim, yeni stilimiz geçerli olsun */
.navbar-brand {
    /* Eski stilin üzerine yazar */
    font-family: inherit; 
    font-weight: inherit;
}