/* --- Değişkenler --- */
:root {
    --color-orange: #FF9F1C;    /* Güneş Turuncusu */
    --color-orange-dark: #e68a0d;
    --color-blue: #2EC4B6;      /* Akdeniz Mavisi */
    --color-white: #FFFFFF;
    --color-off-white: #FDFFFC;
    --color-text: #011627;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius: 12px;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    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); }

/* --- Top Bar --- */
.sunny-bar { background-color: var(--color-blue); color: var(--color-white); padding: 8px 0; font-size: 0.9rem; font-weight: bold; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; }
.whatsapp-link { color: var(--color-white); border-bottom: 1px solid rgba(255,255,255,0.5); }

/* --- Header --- */
.resort-header { background: var(--color-white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-text); display: flex; align-items: center; gap: 5px; }
.sun-icon { color: var(--color-orange); font-size: 2rem; }
.orange-text { color: var(--color-orange); }

.sunny-nav ul { display: flex; gap: 25px; align-items: center; }
.sunny-nav a { font-weight: 600; color: var(--color-text); font-size: 0.95rem; }
.sunny-nav a:hover, .sunny-nav a.active { color: var(--color-orange); }

.btn-orange { background-color: var(--color-orange); color: var(--color-white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 6px rgba(255, 159, 28, 0.3); }
.btn-orange:hover { background-color: var(--color-orange-dark); transform: translateY(-2px); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.line { width: 25px; height: 3px; background-color: var(--color-text); border-radius: 2px; }

/* --- Mobile Menu --- */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--color-white); z-index: 2000; display: flex; flex-direction: column; padding: 40px; gap: 20px; transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.mobile-overlay.active { right: 0; }
.close-btn { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-orange); }
.mobile-overlay a { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-text); font-weight: 600; }

/* --- Hero --- */
.hero { position: relative; height: 500px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 50px; border-bottom-right-radius: 50px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; }
.hero-content { z-index: 1; padding: 40px; background: rgba(255,255,255,0.9); max-width: 600px; border-radius: var(--radius); margin-left: 5%; box-shadow: var(--shadow); }

.badge-blue { background: var(--color-blue); color: #fff; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; margin-bottom: 10px; display: inline-block; }
.hero h1 { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1.2; margin-bottom: 15px; color: var(--color-text); }
.hero p { font-size: 1.1rem; color: #555; margin-bottom: 25px; }

.search-box { display: flex; gap: 10px; }
.search-box select { flex: 1; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); }
.btn-search { background: var(--color-orange); color: #fff; border: none; padding: 12px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; }

/* --- Services Grid --- */
.section-padding { padding: 60px 0; }
.section-head, .page-head { text-align: center; margin-bottom: 50px; }
.section-head h2, .page-head h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-text); margin-bottom: 10px; }
.wave-icon { font-size: 1.5rem; color: var(--color-blue); font-weight: bold; letter-spacing: -3px; }

.cards-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; transition: 0.3s; border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--color-orange); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-left: auto; margin-right: auto; }
.bg-orange { background: rgba(255, 159, 28, 0.1); }
.bg-blue { background: rgba(46, 196, 182, 0.1); }
.bg-green { background: rgba(46, 196, 182, 0.1); } /* Reusing blue tint for harmony */

.service-card h3 { font-family: var(--font-heading); margin-bottom: 10px; color: var(--color-text); }
.service-card p { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.link-blue { color: var(--color-blue); font-weight: bold; }

/* --- Banner --- */
.orange-banner { background-color: var(--color-orange); padding: 50px 0; margin-top: 50px; color: #fff; border-radius: var(--radius); width: 95%; margin: 50px auto; }
.banner-flex { display: flex; justify-content: space-between; align-items: center; padding: 0 30px; }
.b-text h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; }
.btn-white { background: #fff; color: var(--color-orange); padding: 12px 30px; border-radius: 30px; font-weight: bold; text-decoration: none; }
.btn-white:hover { background: #f0f0f0; }

/* --- About & Split --- */
.split-view { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h2 { font-family: var(--font-heading); color: var(--color-blue); margin-bottom: 20px; }
.sun-list { margin-top: 20px; list-style: none; }
.sun-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.sun-list li::before { content: '☀'; color: var(--color-orange); position: absolute; left: 0; }
.photo-frame img { border: 10px solid #fff; box-shadow: var(--shadow); transform: rotate(2deg); }

/* --- Testimonials --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.review-bubble { background: var(--color-white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.flag-icon { font-size: 2rem; position: absolute; top: -15px; right: 20px; background: #fff; border-radius: 50%; padding: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.review-bubble p { font-style: italic; color: #555; margin-bottom: 15px; }
.review-bubble strong { display: block; color: var(--color-orange); font-family: var(--font-heading); }
.review-bubble span { font-size: 0.8rem; color: #888; }

/* --- Contact --- */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; background: var(--color-white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-side h3 { font-family: var(--font-heading); color: var(--color-blue); margin-bottom: 20px; }
.info-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.1rem; }
.map-placeholder { background: #eee; height: 150px; display: flex; align-items: center; justify-content: center; color: #888; border-radius: var(--radius); margin-top: 20px; }

.sunny-form .form-group { margin-bottom: 20px; }
.sunny-form label { display: block; margin-bottom: 5px; font-weight: 600; }
.sunny-form input, .sunny-form select, .sunny-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); }
.sunny-form input:focus { border-color: var(--color-orange); outline: none; }
.btn-blue { background: var(--color-blue); color: #fff; width: 100%; padding: 12px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; }
.btn-blue:hover { background: #25a094; }

/* --- Legal --- */
.legal-card { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-card h1 { color: var(--color-orange); font-family: var(--font-heading); }
.orange-line { height: 3px; background: var(--color-orange); width: 60px; margin: 20px 0; border: none; }
.legal-card h3 { color: var(--color-blue); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.main-footer { background-color: #f0f0f0; padding: 40px 0; margin-top: auto; text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: bold; margin-bottom: 15px; }
.footer-nav a { margin: 0 10px; color: #666; font-weight: 600; }
.footer-nav a:hover { color: var(--color-orange); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #888; }

@media (max-width: 992px) {
    .sunny-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-content { margin-left: 0; }
    .split-view, .contact-box { grid-template-columns: 1fr; }
    .banner-flex { flex-direction: column; text-align: center; gap: 20px; }
}