﻿:root {
    --primary: #F4A261; /* Warm Soft Orange */
    --primary-hover: #E76F51; /* Burnt Coral */
    --secondary: #2A9D8F; /* Soft Mint Green */
    --text-dark: #264653; /* Deep Teal */
    --text-light: #64748B;
    --bg-white: #FFFFFF; 
    --bg-warm: #FFFBF5; /* Very Light Warm Sand */
    --bg-soft-green: #F0F9F8; /* Extremely Light Mint */
    
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.05);
    --shadow-colored: 0 12px 30px rgba(244, 162, 97, 0.25);
    --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'M PLUS Rounded 1c', 'Nunito', sans-serif; background-color: var(--bg-white); color: var(--text-dark); line-height: 1.8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.4; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
h1 span { color: var(--primary); }
h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 20px; }
p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 15px; }
.text-center { text-align: center; }
.section-title { margin-bottom: 50px; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 0; }
.bg-warm { background-color: var(--bg-warm); }
.bg-soft-green { background-color: var(--bg-soft-green); }
.bg-white { background-color: var(--bg-white); }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; border: none; border-radius: 50px; font-family: 'M PLUS Rounded 1c', sans-serif; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--primary); color: #FFF; padding: 15px 35px; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--shadow-colored); }
.btn-large { padding: 18px 45px; font-size: 1.2rem; }
.btn-small { padding: 10px 20px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Glassmorphism */
.glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--radius); }
.glass-img { box-shadow: var(--shadow-colored); border: 8px solid var(--bg-white); border-radius: var(--radius); }
.soft-shadow { box-shadow: var(--shadow-soft); }

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--secondary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--text-light); transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Grids */
.hero-grid, .about-grid, .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Lists */
.benefits { margin-top: 25px; list-style: none; }
.benefits li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.05rem; color: var(--text-light); }
.benefits li::before { content: '✓'; position: absolute; left: 0; top: 5px; width: 22px; height: 22px; background: var(--secondary); color: var(--bg-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }
.benefits strong { color: var(--text-dark); }

/* Cards Grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-grid .glass-card { overflow: hidden; transition: transform 0.3s ease; }
.card-grid .glass-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-colored); }
.card-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.card-body { padding: 30px; }
.card-body h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.25rem; }

/* Stats */
.stat-flex { display: flex; justify-content: space-between; gap: 30px; text-align: center; }
.stat-item { flex: 1; padding: 40px 20px; }
.stat-num { display: block; font-family: 'Nunito', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 10px; }
.stat-desc { font-weight: 700; font-size: 1.1rem; }

/* Accordion FAQ */
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.acc-header { width: 100%; text-align: left; padding: 25px; background: transparent; border: none; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.acc-header::after { content: '+'; font-family: 'Nunito', sans-serif; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.acc-header[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 25px; }
.acc-body p { margin-bottom: 25px; }

/* Form */
.booking-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 15px; border: 2px solid transparent; background: #F8FAFC; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--text-dark); transition: all 0.3s; }
input:focus { outline: none; border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.2); }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 25px; }
.form-check input { margin-top: 6px; width: 18px; height: 18px; accent-color: var(--primary); }
.form-check label { font-size: 0.9rem; color: var(--text-light); }
.form-check a { color: var(--primary); text-decoration: underline; }
.success-box { text-align: center; padding: 30px; background: #E6F4F1; border-radius: 15px; border: 1px solid #2A9D8F; }
.success-box h3 { color: #1D7066; margin: 15px 0 10px; }
.hidden { display: none !important; }

/* Footer */
.footer { background: var(--bg-white); padding: 60px 0 20px; border-top: 1px solid #F1F5F9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer address { font-style: normal; color: var(--text-light); line-height: 1.8; }
.footer-nav a { display: block; color: var(--text-light); margin-bottom: 10px; transition: color 0.3s; }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #F1F5F9; font-size: 0.9rem; color: var(--text-light); }

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 50px; background: var(--bg-white); }
.legal-card h1 { color: var(--secondary); margin-bottom: 30px; font-size: 2rem; }
.legal-card h2 { margin: 30px 0 15px; font-size: 1.3rem; color: var(--text-dark); border-bottom: 2px solid var(--bg-warm); padding-bottom: 10px; }
.legal-card ul { padding-left: 20px; list-style: disc; margin-bottom: 15px; color: var(--text-light); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; width: 90%; max-width: 800px; }
.cookie-content { background: var(--bg-white); padding: 20px 30px; border-radius: 50px; box-shadow: var(--shadow-colored); border: 1px solid #F1F5F9; display: flex; align-items: center; gap: 20px; }
.cookie-content p { margin: 0; font-size: 0.9rem; flex: 1; }
.cookie-content a { color: var(--primary); text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content, .about-text, .booking-text { text-align: center; }
    .card-grid { grid-template-columns: 1fr; }
    .benefits li { text-align: left; }
    .stat-flex { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .form-row { flex-direction: column; gap: 0; }
    .cookie-content { flex-direction: column; border-radius: var(--radius); text-align: center; }
    .legal-card { padding: 30px; }
}
