/* --- Değişkenler --- */
:root {
    --color-cobalt: #0047AB;    /* Ege Mavisi */
    --color-sky: #87CEEB;
    --color-olive: #708238;     /* Zeytin Yeşili */
    --color-white: #FFFFFF;
    --color-bg: #F9FAFC;        /* Kırık Beyaz / Çok açık mavi */
    --color-text: #444444;
    --font-head: 'Comfortaa', cursive;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 30px rgba(0, 71, 171, 0.05);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Header --- */
.aegean-header {
    background-color: var(--color-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex; align-items: center; gap: 5px;
}
.blue-text { color: var(--color-cobalt); }
.icon-olive { font-size: 1.5rem; }

.desktop-nav ul { display: flex; gap: 30px; align-items: center; }
.desktop-nav a { font-weight: 600; color: #666; font-size: 0.95rem; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--color-cobalt); }

.btn-pill {
    background-color: var(--color-cobalt);
    color: var(--color-white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 71, 171, 0.2);
}
.btn-pill:hover { background-color: var(--color-olive); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 30px; gap: 20px;
    transition: 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.05);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-text); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.2rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; color: var(--color-cobalt); font-weight: bold; }

/* --- Hero --- */
.hero {
    position: relative; height: 600px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.85); z-index: -1;
}
.hero-content { color: var(--color-white); padding: 0 20px; max-width: 800px; }
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.olive-text { color: #d4e157; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 300; }

.hero-search {
    background: var(--color-white); padding: 10px; border-radius: 50px;
    display: flex; max-width: 500px; margin: 0 auto; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.hero-search input { flex: 1; border: none; padding: 10px 20px; border-radius: 50px; font-size: 1rem; outline: none; font-family: var(--font-body); }
.btn-search { background: var(--color-cobalt); color: var(--color-white); border: none; padding: 10px 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-search:hover { background: var(--color-olive); }

/* --- Grid --- */
.section-padding { padding: 60px 0; }
.section-head, .page-title { text-align: center; margin-bottom: 50px; }
.section-head h2, .page-title h1 { font-family: var(--font-head); font-size: 2.2rem; color: var(--color-cobalt); margin-bottom: 10px; }
.wave-icon { color: var(--color-sky); font-size: 1.5rem; letter-spacing: 5px; font-weight: bold; }

.grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.dest-card { position: relative; overflow: hidden; border-radius: var(--radius); height: 350px; cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.dest-card:hover img { transform: scale(1.05); }
.large { grid-column: span 2; }

.card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px; color: var(--color-white);
    display: flex; flex-direction: column; align-items: flex-start;
}
.card-overlay h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.link-circle { display: inline-flex; width: 35px; height: 35px; background: var(--color-white); color: var(--color-cobalt); border-radius: 50%; align-items: center; justify-content: center; margin-top: 10px; font-weight: bold; transition: 0.3s; }
.dest-card:hover .link-circle { background: var(--color-olive); color: var(--color-white); }

/* --- Features Banner --- */
.features-banner { background-color: var(--color-white); padding: 60px 0; margin-top: 60px; }
.feature-flex { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.feature-item h4 { font-family: var(--font-head); color: var(--color-cobalt); margin: 15px 0 5px; font-size: 1.2rem; }
.icon-circle { width: 70px; height: 70px; background: #eef2ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 2rem; }

/* --- About & Split --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--color-olive); margin-bottom: 20px; }
.clean-list { margin-top: 20px; }
.clean-list li { margin-bottom: 10px; font-weight: 600; color: #555; }
.image-block img { box-shadow: 20px 20px 0 var(--color-sky); }

/* --- Testimonials --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.review-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--color-cobalt); }
.avatar-circle { width: 50px; height: 50px; background: var(--color-cobalt); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 15px; font-family: var(--font-head); }
.avatar-circle.olive { background: var(--color-olive); }
.avatar-circle.blue { background: var(--color-sky); color: var(--color-cobalt); }
.review-card p { font-style: italic; color: #666; margin-bottom: 20px; }
.author strong { display: block; font-family: var(--font-head); color: var(--color-text); }

/* --- Contact & Forms --- */
.contact-card { background: var(--color-white); padding: 50px; border-radius: 20px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; text-align: center; }
.contact-info { margin-bottom: 40px; }
.contact-info h3 { font-family: var(--font-head); color: var(--color-cobalt); margin-bottom: 10px; }
.email-link { font-size: 1.2rem; font-weight: bold; color: var(--color-olive); margin: 10px 0; }
.social-icons span { display: inline-block; width: 40px; height: 40px; line-height: 40px; background: #f0f0f0; border-radius: 50%; margin: 0 5px; font-weight: bold; color: var(--color-cobalt); cursor: pointer; }

.clean-form { max-width: 500px; margin: 0 auto; text-align: left; }
.clean-form .form-group { margin-bottom: 20px; }
.clean-form label { display: block; margin-bottom: 5px; font-weight: 600; color: #666; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 2px solid #f0f0f0; border-radius: 8px; font-family: var(--font-body); }
.clean-form input:focus, .clean-form select:focus, .clean-form textarea:focus { border-color: var(--color-cobalt); outline: none; }
.btn-blue { background: var(--color-cobalt); color: var(--color-white); width: 100%; padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-blue:hover { background: var(--color-olive); }

/* --- Legal --- */
.info-content { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-content h1 { font-family: var(--font-head); color: var(--color-cobalt); }
.blue-hr { border: 0; height: 2px; background: var(--color-sky); width: 100px; margin: 20px 0; }
.info-content h3 { color: var(--color-olive); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* --- Footer --- */
.main-footer { background-color: var(--color-white); padding: 50px 0; margin-top: auto; border-top: 1px solid #eee; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--color-text); }
.footer-links a { margin: 0 15px; color: #666; font-weight: 600; }
.footer-links a:hover { color: var(--color-cobalt); }
.copyright { font-size: 0.85rem; color: #999; }

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .dest-card.large { grid-column: span 1; }
    .split-section { grid-template-columns: 1fr; }
}