/* Palette: Aegean Teal, Sand, White, Slate */
:root {
    --teal: #006D77;
    --teal-light: #83C5BE;
    --sand: #EDF6F9;
    --white: #FFFFFF;
    --text: #2F3E46;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--sand);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header */
.resort-header { background: var(--white); padding: 25px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.03); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--teal); font-weight: 600; letter-spacing: 2px; }
.teal-wave { color: var(--teal-light); margin: 0 5px; font-weight: bold; }

.breeze-nav a { margin-left: 30px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; color: var(--text); font-weight: 600; }
.breeze-nav a:hover, .breeze-nav a.active { color: var(--teal); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--teal); color: var(--teal); padding: 5px 10px; cursor: pointer; font-family: var(--font-body); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--teal); z-index: 2000; padding: 50px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1rem; color: var(--white); margin-bottom: 30px; cursor: pointer; border-bottom: 1px solid var(--white); }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 20px; }

@media (max-width: 900px) {
    .breeze-nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-aegean { height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 109, 119, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }

.welcome-text { font-family: var(--font-head); letter-spacing: 3px; font-size: 1rem; display: block; margin-bottom: 20px; opacity: 0.9; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.wave-line { width: 100px; height: 3px; background: var(--white); margin: 0 auto 30px; border-radius: 2px; }
.wave-line.left { margin: 0 0 30px 0; background: var(--teal); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-teal { background: var(--teal); color: var(--white); padding: 15px 40px; font-family: var(--font-head); letter-spacing: 1px; border: none; cursor: pointer; transition: 0.3s; display: inline-block; }
.btn-teal:hover { background: var(--white); color: var(--teal); }

/* Highlights */
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--teal); margin-bottom: 10px; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.highlight-card { background: var(--white); padding: 40px 30px; text-align: center; border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); transition: 0.3s; }
.highlight-card:hover { transform: translateY(-10px); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.highlight-card h3 { font-family: var(--font-head); margin-bottom: 15px; color: var(--text); }

/* Services List */
.programs-list { display: flex; flex-direction: column; gap: 60px; max-width: 900px; margin: 0 auto; }
.program-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.program-item.reverse { direction: rtl; }
.program-item.reverse .p-content { direction: ltr; }
.p-image img { box-shadow: 15px 15px 0 var(--teal-light); }
.p-content h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--teal); margin-bottom: 10px; }
.badge { background: var(--sand); color: var(--teal); padding: 5px 10px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-bottom: 15px; }
.link-teal { color: var(--teal); font-weight: 600; border-bottom: 1px solid var(--teal); padding-bottom: 2px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1.1; color: var(--teal); margin-bottom: 20px; }
.features { list-style: none; margin-top: 30px; }
.features li { margin-bottom: 10px; padding-left: 20px; border-left: 3px solid var(--teal-light); font-size: 1.1rem; }

/* Contact */
.contact-card { background: var(--white); max-width: 800px; margin: 0 auto; padding: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-top: 5px solid var(--teal); }
.card-intro { text-align: center; margin-bottom: 40px; }
.card-intro h2 { font-family: var(--font-head); color: var(--teal); font-size: 2.5rem; margin-bottom: 15px; }
.locations { margin-top: 20px; color: var(--text); font-weight: 600; }

.breeze-form .form-group { margin-bottom: 20px; }
.breeze-form label { display: block; font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 5px; color: var(--text); }
.breeze-form input, .breeze-form select, .breeze-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; background: var(--sand); font-family: var(--font-body); }
.breeze-form input:focus, .breeze-form select:focus, .breeze-form textarea:focus { border-color: var(--teal); outline: none; background: var(--white); }
.full { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; }
.legal-content h1 { font-family: var(--font-head); color: var(--teal); }

/* Footer */
.resort-footer { background: var(--teal); color: var(--white); padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; letter-spacing: 1px; }
.f-nav a { margin-left: 20px; color: #ddd; font-size: 0.9rem; }
.f-nav a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.5rem; }
    .grid-3, .program-item, .about-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}