/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding-bottom: 70px;
}

.container {
    width: 90%;
    margin: auto;
    overflow: visible;
}

.header-container, .footer-container {
    max-width: 1200px;
}

.content-container {
    max-width: 800px;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    color: #0C4B33; /* Marka yeşili */
}

/* Header ve Navigasyon */
header { background: #333; color: #fff; padding: 1rem 0; border-bottom: #007bff 4px solid; position: sticky; top: 0; z-index: 999; }
header .container { display: flex; justify-content: space-between; align-items: center; }
header a { color: #fff; text-decoration: none; }
header h1 { margin: 0; color: #fff; font-size: 1.5rem; }
header nav ul { list-style: none; }
header nav li { display: inline; margin-left: 20px; }
header nav a { font-size: 1.1rem; transition: color 0.3s ease; }
header nav a:hover { color: #007bff; }
header nav a.active { color: #007bff; font-weight: bold; border-bottom: 2px solid #007bff; padding-bottom: 5px; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
.nav-phone { background-color: #007bff; padding: 8px 15px; border-radius: 5px; font-weight: bold; transition: background-color 0.3s ease; }
.nav-phone i { margin-right: 8px; }
.nav-phone:hover { background-color: #0056b3; color: #fff !important; text-decoration: none; border-bottom: none; }

/* Ana İçerik Alanı */
main {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* YENİ TASARIM STİLLERİ: HERO KARTI ve YORUMLAR */
:root {
    --brand-green: #0C4B33;
    --light-green-bg: #EBF8F0;
    --light-green-border: #A3E1C7;
    --star-yellow: #FFC107;
    --text-grey: #555;
}

.hero-card, .reviews-section, .content-section {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.hero-card { overflow: hidden; }

/* ======================================================= */
/* DEĞİŞTİRİLEN BÖLÜM: Hero Image Boyutlandırması */
/* ======================================================= */

.hero-image {
    /* Resim konteynerine sabit bir yükseklik veriyoruz. Bu değeri artırıp azaltabilirsiniz. */
    height: 300px; 
    overflow: hidden; /* Gerekli olmasa da tedbir amaçlı */
}

.hero-image img {
    width: 100%;
    height: 100%; /* Konteynerin yüksekliğini tamamen doldur */
    display: block;
    /* Bu en önemli kısım: Resmin oranını bozmadan alanı kaplamasını sağlar */
    object-fit: cover; 
    /* Resmin hangi kısmının odakta olacağını belirler (genellikle 'center' en iyisidir) */
    object-position: center; 
}
/* ======================================================= */
/* DEĞİŞTİRİLEN BÖLÜM SONU */
/* ======================================================= */


.hero-content { padding: 20px 25px; }
.status-bar { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-grey); }
.status-dot { width: 10px; height: 10px; background-color: #28a745; border-radius: 50%; }
.status-text { font-weight: bold; color: #28a745; }
.hero-title { font-size: 2.5rem; color: var(--brand-green); margin: 10px 0 5px 0; font-weight: 800; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-grey); margin-bottom: 25px; }
.stats-grid { display: flex; justify-content: space-between; text-align: center; margin-bottom: 25px; padding: 0 10px; }
.stat-item span { display: block; font-size: 1.4rem; font-weight: bold; color: var(--brand-green); }
.stat-item p { font-size: 0.9rem; color: var(--text-grey); }
.availability-box { background-color: var(--light-green-bg); border: 1px solid var(--light-green-border); border-radius: 12px; padding: 15px; display: flex; align-items: center; gap: 15px; }
.availability-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.availability-details { flex-grow: 1; }
.availability-title { font-weight: bold; color: var(--brand-green); margin-bottom: 2px !important; }
.availability-details p { margin: 0; font-size: 0.9rem; color: var(--text-grey); }
.availability-perks { display: flex; gap: 20px; margin-top: 8px; font-size: 0.9rem; color: var(--text-grey); }
.availability-perks i { color: var(--brand-green); margin-right: 5px; }
.availability-perks .fa-star { color: var(--star-yellow); }

/* Müşteri Yorumları */
.reviews-section { padding: 25px; }
.reviews-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.reviews-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-card { display: flex; flex-direction: column; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.reviewer-info { font-weight: bold; display: flex; align-items: center; gap: 8px; }
.reviewer-info i { font-size: 1.5rem; }
.stars { color: var(--star-yellow); }
.review-text { font-style: italic; color: var(--text-grey); font-size: 0.95rem; }

/* ESKİ BÖLÜM STİLLERİ */
.content-section { padding: 30px; }
.content-section p, .content-section li { font-size: 1.1rem; color: var(--text-grey); margin-bottom: 15px; }
.content-section ul { list-style-position: inside; padding-left: 0; }
.image-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; aspect-ratio: 1 / 1; }
.gallery-item img:hover { transform: scale(1.05); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }

/* SABİT BUTONLAR */
.fixed-contact-buttons { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; display: flex; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15); }
.fixed-contact-buttons a { flex-grow: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 10px; text-align: center; color: #fff; font-size: 1.1rem; font-weight: bold; text-decoration: none; transition: background-color 0.3s ease; }
.fixed-contact-buttons a i { font-size: 1.3rem; }
.fixed-contact-buttons .whatsapp { background-color: #25d366; }
.fixed-contact-buttons .whatsapp:hover { background-color: #128c7e; }
.fixed-contact-buttons .phone { background-color: #007bff; }
.fixed-contact-buttons .phone:hover { background-color: #0056b3; }

/* FOOTER */
footer { background: #333; color: #fff; text-align: center; padding: 20px 0; }

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    header nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #3e3e3e; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
    header nav.nav-open { display: block; }
    header nav ul { display: flex; flex-direction: column; align-items: center; padding: 15px 0; }
    header nav li { display: block; margin: 10px 0; width: 100%; text-align: center; }
    header nav a { display: block; padding: 10px 0; }
    header nav a.active { border-bottom: none; background-color: rgba(0, 123, 255, 0.2); }
    .nav-phone { display: inline-block; margin-top: 5px; padding: 10px 20px; }
    .menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .container { width: 95%; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-content { padding: 15px; }
    .stats-grid { flex-direction: column; gap: 15px; }
    .reviews-container { grid-template-columns: 1fr; }
    .image-gallery { gap: 10px; }
    
    /* Mobil cihazlar için hero resmini daha da küçük yapalım */
    .hero-image {
        height: 200px;
    }
}