:root {
    --turquoise: #40E0D0;
    --ocean-blue: #008080;
    --sand: #F5F5DC;
    --white: #ffffff;
    --text-color: #444;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navigation */
.resort-nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; transition: 0.3s; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #333; letter-spacing: 1px; }
.turquoise { color: var(--turquoise); }

.desktop-menu { display: flex; gap: 30px; list-style: none; align-items: center; }
.desktop-menu a { font-size: 0.9rem; text-transform: uppercase; font-weight: 700; color: #555; }
.desktop-menu a:hover, .desktop-menu a.active { color: var(--turquoise); }

.btn-book { background: var(--turquoise); color: var(--white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3); }
.btn-book:hover { background: var(--ocean-blue); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background: #333; }
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--turquoise); }
.mobile-overlay a { font-family: var(--font-serif); font-size: 2rem; margin: 15px 0; color: #333; }

/* Parallax Hero */
.parallax-hero { height: 100vh; background-attachment: fixed; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.parallax-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); width: 90%; max-width: 800px; }
.hero-content h1 { font-family: var(--font-serif); font-size: 5rem; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.5rem; margin-bottom: 50px; font-weight: 300; }

.booking-bar { background: var(--white); padding: 20px; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: inline-block; }
#bookForm { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; align-items: flex-end; }
.input-grp { text-align: left; }
.input-grp label { display: block; font-size: 0.8rem; color: #777; margin-bottom: 5px; }
.input-grp input, .input-grp select { padding: 10px; border: 1px solid #ddd; border-radius: 3px; color: #333; width: 150px; }
#bookForm button { background: var(--ocean-blue); color: var(--white); border: none; padding: 12px 25px; border-radius: 3px; font-weight: bold; cursor: pointer; transition: 0.3s; }
#bookForm button:hover { background: var(--turquoise); }

/* Small Parallax (Inner Pages) */
.parallax-small { height: 50vh; background-attachment: fixed; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: var(--white); position: relative; }
.parallax-small::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.parallax-small h1 { position: relative; z-index: 10; font-family: var(--font-serif); font-size: 4rem; }

/* Sections */
.section-white { background: var(--white); }
.text-center { text-align: center; }
.script-font { font-family: var(--font-serif); font-size: 3rem; color: var(--ocean-blue); font-style: italic; }
.deco-line { width: 100px; height: 2px; background: var(--turquoise); margin: 20px auto 50px; }
.deco-line.left { margin: 20px 0 30px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-box { padding: 20px; transition: 0.3s; }
.feature-box:hover { transform: translateY(-10px); }
.feature-box img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.feature-box h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; color: #333; }

/* Secondary Parallax */
.parallax-section { height: 60vh; background-attachment: fixed; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.overlay-text { background: rgba(255,255,255,0.9); padding: 50px; text-align: center; max-width: 600px; }
.overlay-text h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--ocean-blue); margin-bottom: 10px; }
.btn-outline { border: 2px solid var(--ocean-blue); color: var(--ocean-blue); padding: 10px 30px; display: inline-block; margin-top: 20px; font-weight: bold; border-radius: 30px; }
.btn-outline:hover { background: var(--ocean-blue); color: var(--white); }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h1 { font-family: var(--font-serif); font-size: 3rem; color: #333; }
.amenities-list { margin-top: 30px; list-style: none; font-size: 1.1rem; }
.amenities-list li { margin-bottom: 10px; color: var(--ocean-blue); }
.img-block img { width: 100%; border-radius: 10px; box-shadow: 20px 20px 0 var(--sand); }

.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--sand); padding: 50px; border-radius: 10px; }
.info-box h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--ocean-blue); }
.contact-details { margin-top: 30px; font-weight: bold; color: #555; }
.clean-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 15px; border: none; border-radius: 5px; font-family: var(--font-sans); }
.clean-form textarea { margin-bottom: 20px; }
.btn-submit { width: 100%; padding: 15px; background: var(--ocean-blue); color: var(--white); border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.btn-submit:hover { background: var(--turquoise); }

/* Testimonials & Legal */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border: 1px solid #eee; text-align: center; border-radius: 10px; }
.review-card.highlight { border-color: var(--turquoise); box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1); }
.stars { color: #FFD700; margin-bottom: 15px; }
.review-card p { font-style: italic; margin-bottom: 20px; color: #666; }
.review-card cite { font-weight: bold; color: var(--ocean-blue); font-style: normal; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.legal-content h3 { color: var(--ocean-blue); margin-top: 30px; }

/* Footer */
.resort-footer { background: #333; color: #eee; padding: 60px 0 20px; margin-top: 80px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #555; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--turquoise); margin-bottom: 5px; }
.f-links a { color: #eee; margin: 0 15px; }
.f-links a:hover { color: var(--turquoise); }
.copyright { text-align: center; font-size: 0.8rem; color: #999; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--ocean-blue); color: var(--white); padding: 15px; text-align: center; z-index: 9999; display: none; }
.cookie-bar.active { display: flex; justify-content: center; gap: 20px; align-items: center; animation: slideUp 0.5s; }
.cookie-bar button { background: var(--white); color: var(--ocean-blue); border: none; padding: 5px 20px; font-weight: bold; cursor: pointer; border-radius: 20px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    #bookForm { flex-direction: column; }
    .input-grp input, .input-grp select, #bookForm button { width: 100%; }
    .feature-grid, .about-flex, .reviews-grid, .contact-split { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; text-align: center; gap: 20px; }
}