/* TÜM SİTE İÇİN GEÇERLİ, TÜM SAYFALARI İÇEREN NİHAİ KOD */
:root {
    --bg-color: #ffffff;
    --text-color: #2c2c2c;
    --primary-color: #a88e79;
    --border-color: #eaeaea;
    --header-height: 80px;
    --font-family: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex-grow: 1;
    padding-top: var(--header-height);
}

/* Header ve Navigasyon Stilleri */
.main-header { height: var(--header-height); width: 100%; background-color: var(--bg-color); box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); position: fixed; top: 0; left: 0; z-index: 1000; display: flex; justify-content: center; align-items: center; }
.header-container { width: 100%; max-width: 1600px; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 55px; }
.desktop-nav { display: block; }
.desktop-nav ul { list-style: none; display: flex; gap: 45px; }
.desktop-nav ul li a { text-decoration: none; color: var(--text-color); font-weight: 500; font-size: 16px; padding: 5px 0; position: relative; transition: color 0.3s ease; }
.desktop-nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.4s ease; }
.desktop-nav ul li a:hover { color: var(--primary-color); }
.desktop-nav ul li a:hover::after { width: 100%; }

/* Header Sağ Taraf ve Dil Seçimi */
.header-right { display: flex; }
.lang-dropdown { position: relative; display: inline-block; }
.lang-dropbtn { background-color: transparent; border: 1px solid var(--border-color); padding: 8px 15px; border-radius: 20px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.lang-dropbtn .arrow-icon { transition: transform 0.3s ease; }
.lang-dropbtn.open .arrow-icon { transform: rotate(180deg); }
.lang-dropdown-content { display: none; position: absolute; background-color: var(--bg-color); min-width: 120px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); border-radius: 8px; z-index: 1; right: 0; top: calc(100% + 10px); }
.lang-dropdown-content.show { display: block; }
.lang-dropdown-content a { color: var(--text-color); padding: 12px 16px; text-decoration: none; display: block; font-size: 14px; }
.lang-dropdown-content a.active { color: var(--primary-color); font-weight: 700; }

/* Mobil Menü */
.hamburger-btn { display: none; width: 30px; height: 22px; position: fixed; top: 29px; right: 30px; z-index: 1002; cursor: pointer; background: none; border: none; }
.hamburger-btn span { display: block; position: absolute; height: 3px; width: 100%; background: var(--text-color); border-radius: 3px; left: 0; transition: .25s ease-in-out; }
.hamburger-btn span:nth-child(1) { top: 0px; }
.hamburger-btn span:nth-child(2) { top: 9px; }
.hamburger-btn span:nth-child(3) { top: 18px; }
.hamburger-btn.active span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; left: -30px; }
.hamburger-btn.active span:nth-child(3) { top: 9px; transform: rotate(-135deg); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-color); z-index: 1001; justify-content: center; align-items: center; }
.mobile-nav.active { display: flex; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin-bottom: 30px; }
.mobile-nav ul li a { text-decoration: none; color: var(--text-color); font-size: 28px; font-weight: 500; }

/* Genel Sayfa Stilleri */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 30px; }
.container-narrow { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 30px; }
.page-section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px; text-align: center; margin-bottom: 50px; color: var(--text-color); }
.text-center { text-align: center; }

/* Sayfa Başlığı Stilleri */
.page-header { padding: 60px 0; background-color: #fafafa; text-align: center; border-bottom: 1px solid var(--border-color); }
.page-title { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 10px; }
.page-subtitle { font-size: 18px; color: #777; max-width: 600px; margin: 0 auto; }
.page-header-enhanced { padding: 80px 0; text-align: center; background: #fdfdfd; }
.page-header-enhanced .page-title { font-size: 56px; }
.page-header-gallery { position: relative; padding: 120px 0; text-align: center; color: #ffffff !important; background-color: #1a1a1a; }
.page-header-gallery::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/anasayfafoto.jpg') center center / cover; filter: brightness(0.4); z-index: 1; }
.page-header-gallery .container { position: relative; z-index: 2; }
.page-header-gallery .page-title, .page-header-gallery .page-subtitle { color: #ffffff !important; text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7); }
.page-header-gallery .page-subtitle { color: rgba(255, 255, 255, 0.95) !important; }

/* Hero Alanı */
.hero { height: 60vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.6); }
.hero-content { position: relative; z-index: 2; color: #fff; text-align: center; padding: 20px; }
.main-title { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; margin-bottom: 15px; animation: fadeInDown 1s ease-out; }
.slogan { font-size: 20px; font-weight: 300; max-width: 600px; margin: 0 auto; animation: fadeInDown 1s ease-out 0.3s; animation-fill-mode: both; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

/* Paketler Bölümü (Ana Sayfa) */
.packages-section { background-color: #fafafa; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.package-card { background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.package-image img { width: 100%; height: 350px; object-fit: cover; display: block; }
.package-content { padding: 25px; }
.package-title { text-align: center; font-size: 22px; margin-bottom: 20px; color: var(--text-color); }
.package-features { list-style: none; padding: 0 0 20px 0; margin: 0 0 20px 0; border-bottom: 1px solid var(--border-color); }
.package-features li { font-size: 15px; margin-bottom: 10px; padding-left: 20px; position: relative; }
.package-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary-color); position: absolute; left: 0; top: 2px; }
.package-price { font-size: 28px; font-weight: 700; color: var(--primary-color); text-align: center; margin-bottom: 20px; }
.btn { display: inline-block; padding: 12px 30px; background-color: var(--primary-color); color: #fff; text-align: center; text-decoration: none; border-radius: 5px; font-weight: 500; transition: background-color 0.3s ease; }
.btn:hover { background-color: #8c735e; }

/* Galeri Bölümü */
.grid-sizer, .masonry-item { width: 23.5%; }
.masonry-grid { margin: 0 auto; }
.masonry-item { margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item a:hover img { transform: scale(1.05); }

/* Hakkımızda Bölümü (Ana Sayfa) */
.about-section-home { background-color: #fafafa; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.philosophy-item { background-color: #fff; padding: 40px 30px; border-radius: 8px; border: 1px solid #eee; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.philosophy-item:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.philosophy-icon { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; }
.philosophy-item h3 { font-size: 24px; margin-bottom: 15px; color: var(--dark-color); font-family: 'Playfair Display', serif; }
.philosophy-item p { font-size: 16px; line-height: 1.7; color: #555; }

/* Hakkımızda Sayfası (Detay) */
.lead-paragraph { font-size: 18px; line-height: 1.8; color: #555; max-width: 800px; margin: 0 auto 40px auto; }
.about-page-text-blocks h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 20px; }
.about-page-text-blocks h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-top: 30px; margin-bottom: 15px; }
.about-page-text-blocks p { max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* Paketler Sayfası Stilleri */
.packages-list-section { background-color: #f9f9f9; }
.package-row { display: grid; grid-template-columns: 40% 60%; background-color: #fff; margin-bottom: 40px; border-radius: 8px; box-shadow: 0 5px 30px rgba(0,0,0,0.07); overflow: hidden; }
.package-row-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.package-row-content { padding: 40px; }
.package-row-title { font-family: 'Playfair Display', serif; font-size: 32px; margin-top: 0; margin-bottom: 10px; }
.package-category-badge { display: inline-block; background-color: var(--primary-color); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 500; margin-bottom: 25px; }
.package-row-features { list-style: none; padding: 0; margin-bottom: 30px; }
.package-row-features li { padding-left: 25px; position: relative; margin-bottom: 15px; font-size: 16px; line-height: 1.6; }
.package-row-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary-color); position: absolute; left: 0; top: 4px; }
.package-row-footer { display: flex; justify-content: flex-end; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 25px; gap: 20px; }
.package-row-price { font-size: 36px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--dark-color); }

/* Paket Detay Sayfası Stilleri */
.package-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.package-detail-info h3, .package-extras-form h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-top: 0; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.package-detail-image { margin-bottom: 30px; border-radius: 8px; overflow: hidden; }
.package-detail-image img { width: 100%; display: block; }
.package-detail-info h4 { font-size: 20px; font-weight: 500; margin-bottom: 15px; }
.package-detail-price { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; font-size: 20px; }
.package-detail-price strong { font-size: 28px; font-weight: 700; color: var(--primary-color); }
.package-extras-form p { margin-bottom: 25px; line-height: 1.6; color: #555; }
.extras-list { margin-bottom: 30px; }
.extra-item { margin-bottom: 5px; }
.extra-item label { display: flex; justify-content: space-between; align-items: center; padding: 15px; background-color: #fdfdfd; border: 1px solid #eee; border-radius: 5px; cursor: pointer; transition: all 0.2s ease; }
.extra-item input[type="checkbox"] { display: none; }
.extra-item label::before { content: ''; display: inline-block; width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 4px; margin-right: 15px; transition: all 0.2s ease; }
.extra-item input[type="checkbox"]:checked + label::before { background-color: var(--primary-color); border-color: var(--primary-color); content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #fff; text-align: center; line-height: 18px; }
.extra-item input[type="checkbox"]:checked + label { border-color: var(--primary-color); background-color: #fff; }
.extra-name { font-weight: 500; }
.extra-price { font-weight: 700; color: var(--primary-color); }
.package-extras-form .btn { width: 100%; }

/* İletişim Sayfası Stilleri */
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.contact-form-wrapper h2, .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 20px; }
.contact-info p { line-height: 1.7; margin-bottom: 30px; }
.info-item { display: flex; align-items: center; margin-bottom: 20px; font-size: 16px; }
.info-item i { color: var(--primary-color); font-size: 20px; width: 30px; text-align: center; margin-right: 15px; }
.contact-info .info-item a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.contact-info .info-item a:hover { color: var(--primary-color); }

/* Ödeme Sayfası Stilleri */
.summary-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.order-summary, .booking-form { background-color: #fff; padding: 30px; border-radius: 8px; border: 1px solid #eee; }
.order-summary h3, .booking-form h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-top: 0; margin-bottom: 25px; }
.summary-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #eee; }
.summary-item span { font-weight: 500; }
.summary-item strong { font-weight: 700; }
.summary-extras h4 { font-size: 18px; font-weight: 500; margin-bottom: 15px; }
.summary-extras ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
.summary-extras li { display: flex; justify-content: space-between; font-size: 15px; color: #555; padding: 8px 0; }
.summary-total { margin-top: 20px; }
.total-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 16px; }
.total-line.grand-total { font-size: 20px; font-weight: 700; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.total-line.grand-total strong { font-size: 28px; color: var(--primary-color); }
.total-line-final { display: block; text-align: right; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.total-line-final strong { font-size: 20px; display: block; margin-bottom: 5px; }

/* --- Genel Form Stilleri (İletişim, Rezervasyon vb.) --- */
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; color: #333; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; font-family: var(--font-family); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(168, 142, 121, 0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.booking-form .btn, .contact-form-wrapper .btn { width: 100%; padding: 15px; font-size: 16px; font-weight: bold; }

/* ==========================================================================
   Footer Stilleri
   ========================================================================== */
.site-footer { background-color: #252525; color: #a0a0a0; padding: 60px 0 0 0; font-size: 15px; margin-top: auto; }

/* 5 SÜTUNA GÜNCELLENDİ */
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 40px; }

.footer-column h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; margin-bottom: 20px; font-weight: 500; }
.footer-logo { max-width: 150px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-slogan { line-height: 1.7; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 12px; }
.footer-links a, .footer-contact a { color: #a0a0a0; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; }
.footer-contact i { margin-right: 15px; margin-top: 5px; color: var(--primary-color); }
.footer-social a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: #333; color: #fff; border-radius: 50%; text-decoration: none; margin-right: 10px; font-size: 16px; transition: all 0.3s ease; }
.footer-social a:hover { background-color: var(--primary-color); transform: translateY(-3px); }
.footer-bottom-bar { padding: 20px 0; margin-top: 40px; border-top: 1px solid #333; text-align: center; font-size: 14px; color: #777; }

/* --- Footer Alt Bar ve Ödeme İkonları için Stiller --- */
.footer-bottom-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.copyright-text p { margin: 0; }
.footer-legal-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer-legal-links a { color: #a0a0a0; text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }
.footer-payment-title { margin: 0; padding: 0; } /* 5. sütundaki başlık için sıfırlama */
.footer-column .footer-payment-icons img { max-width: 150px; height: auto; margin-top: 10px; }

/* ==========================================================================
   Responsive Kodları
   ========================================================================== */
@media (max-width: 1024px) {
    .desktop-nav, .header-right { display: none; }
    .hamburger-btn { display: block; }
    .header-container { justify-content: flex-start; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-sizer, .masonry-item { width: 48%; }
    .main-title { font-size: 48px; }
    .slogan { font-size: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; } /* Tablette 2'li grid */
}

@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; }
    .package-detail-layout { grid-template-columns: 1fr; }
    .summary-layout { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; justify-content: center; text-align: center; gap: 20px; }
}

@media (max-width: 768px) {
    .page-section { padding: 60px 0; }
    .section-title { font-size: 36px; }
    .hero { height: 50vh; }
    .main-title { font-size: 38px; }
    .slogan { font-size: 16px; }
    .packages-grid { grid-template-columns: 1fr; }
    .grid-sizer, .masonry-item { width: 100%; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; } /* Mobilde tek sütun */
    .footer-logo { margin-left: auto; margin-right: auto; }
    .footer-contact li { justify-content: center; }
    .package-row { grid-template-columns: 1fr; }
    .package-row-image { height: 400px; }
    .footer-column .footer-payment-icons { margin-left: auto; margin-right: auto; max-width: 150px; }
}

/* ==========================================================================
   Yasal Sayfa Stilleri (Gizlilik Sözleşmesi, Mesafeli Satış vb.)
   ========================================================================== */
.legal-page-container { padding: 80px 0; background-color: #fdfdfd; }
.content-wrapper { max-width: 800px; margin: 0 auto; padding: 40px; background-color: #ffffff; border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); }
.content-wrapper h1 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--text-color); text-align: center; margin-bottom: 40px; border-bottom: 2px solid var(--primary-color); padding-bottom: 20px; }
.content-wrapper h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-color); margin-top: 40px; margin-bottom: 15px; }
.content-wrapper p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.content-wrapper p strong { color: var(--text-color); font-weight: 600; }
.content-wrapper ul { list-style: none; padding-left: 25px; margin-bottom: 20px; }
.content-wrapper ul li { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 10px; position: relative; }
.content-wrapper ul li::before { content: '\2022'; color: var(--primary-color); font-weight: bold; display: inline-block; width: 1em; margin-left: -1.2em; font-size: 1.2em; position: absolute; top: -2px; }