@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --background-color: #f8f9fa;
    --surface-color: #ffffff;
    --text-color-dark: #212529;
    --text-color-light: #495057;
    --footer-bg-color: #2c3e50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--background-color); 
    color: var(--text-color-dark); 
    line-height: 1.7; 
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--primary-color); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* NAVİGASYON MENÜSÜ (TÜM SAYFALAR İÇİN ORTAK) */
.site-header { 
    background: rgb(252, 254, 255, 0.1); 
    backdrop-filter: blur(10px); 
    padding: 15px 0; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
}

/* DEĞİŞİKLİK BURADA YAPILDI */
.site-header .container { 
    display: flex;
    justify-content: center; /* Bu komut, içindeki elemanları yatayda mükemmel bir şekilde ortalar. */
    align-items: center; 
}

.site-header .logo img { 
    max-height: 40px; /* Logonuzun boyutu için bu değeri değiştirebilirsiniz */
}

/* Navigasyon menüsünü sildiğimiz için bu kurallara artık gerek yok, silebilirsiniz */
.main-nav a { 
    /* Bu bölüm silinebilir */
}
.main-nav a:hover {
    /* Bu bölüm silinebilir */
}
.main-nav a.active {
    /* Bu bölüm silinebilir */
}

/* HERO SLIDER */
.hero-section { position: relative; width: 100%; height: 80vh; min-height: 500px; display: flex; align-items: center; justify-content: center; color: white; text-align: center; overflow: hidden; }
.hero-section.sub-page { height: 70vh; min-height: 450px; } /* İç sayfalar için daha kısa hero */
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.1); transition: opacity 1.5s ease-in-out, transform 8s linear; }
.slide.active { opacity: 1; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 10px auto 0; opacity: 0.9; }
.slider-nav-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }
.slider-nav-wrapper .container { height: 100%; display: flex; justify-content: space-between; align-items: center; }
.slider-nav { pointer-events: auto; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; width: 45px; height: 45px; cursor: pointer; color: white; font-size: 22px; display: flex; align-items: center; justify-content: center; }

/* ANA İÇERİK BÖLÜMLERİ */
.page-content { background-color: var(--background-color); padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-color-light); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* Hızlı Erişim Kartları (Ana Sayfa) */
.access-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 25px; }
.access-card { background-color: var(--surface-color); border-radius: 12px; padding: 25px 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 150px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
.access-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.card-icon i { font-size: 40px; margin-bottom: 15px; color: var(--primary-color); }
.card-label { font-weight: 600; font-size: 1rem; text-align: center; }

/* Plaj Kartları (Plajlar Sayfası) */
.beach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.beach-card { background: var(--surface-color); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.07); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.beach-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.beach-card-image { height: 220px; }
.beach-card-image img { width: 100%; height: 100%; object-fit: cover; }
.beach-card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.beach-tags { margin-bottom: 15px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; color: white; }
.tag-free { background-color: #28a745; } .tag-paid { background-color: #dc3545; } .tag-amenity { background-color: #6c757d; }
.beach-card-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.beach-card-content p { color: var(--text-color-light); margin-bottom: 20px; flex-grow: 1; }
.card-btn { display: inline-block; background: var(--primary-color); color: white; padding: 10px 20px; border-radius: 8px; font-weight: 600; text-align: center; margin-top: auto; }

/* Tanıtım Bölümü */
.discover-section { padding: 80px 0; background-color: var(--surface-color); }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.discover-image img { width: 100%; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.discover-text h3 { font-size: 2.5rem; margin-bottom: 20px; }
.discover-text p { color: var(--text-color-light); margin-bottom: 30px; }
.btn { display: inline-block; background: var(--primary-color); color: white; padding: 12px 30px; border-radius: 50px; font-weight: 600; }

/* FOOTER (TÜM SAYFALAR İÇİN ORTAK) */
.site-footer { background: var(--footer-bg-color); color: #bdc3c7; padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-column .logo img { max-height: 40px; filter: brightness(0) invert(1); opacity: 0.8; /* Koyu zeminde logonun beyaz görünmesini sağlar */ }
.footer-column p { font-size: 0.9rem; line-height: 1.8; margin-top: 15px; }
.social-links { margin-top: 20px; } .social-links a { color: #bdc3c7; margin-right: 15px; font-size: 1.2rem; }
.footer-column h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; list-style: none; }
.footer-links a { color: #bdc3c7; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid #34495e; text-align: center; padding-top: 20px; font-size: 0.9rem; }

/* Mobil Uyum */
@media (max-width: 992px) { .discover-grid, .footer-grid { grid-template-columns: 1fr 1fr; } .discover-image { order: -1; margin-bottom: 40px; } }
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title h2, .discover-text h3 { font-size: 1.8rem; }
    .access-grid, .beach-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .discover-grid, .footer-grid { grid-template-columns: 1fr; }
}