:root {
    /* --- COLOR PALETTE --- */
    --ocean-deep: #0A2E26;
    --ocean-light: #1A5F52;
    --accent-emerald: #1AAD7A;
    --accent-sand: #F5E6D3;
    --accent-amber: #F5A623;
    
    --white: #FFFFFF;
    --bg-light: #F9FBFA;
    --ink: #101820;
    --muted: #6B7280;
    --border: rgba(10, 46, 38, 0.1);
    
    /* --- TYPOGRAPHY --- */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* --- SPACING & SHADOWS --- */
    --container-max: 1200px;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.05);
    
    /* --- ANIMATION --- */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- REVEAL ON SCROLL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- THEME UTILS --- */
.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.btn-primary { background: var(--accent-emerald); color: var(--white); }
.btn-primary:hover { background: var(--ocean-deep); transform: translateY(-3px); }

.btn-outline { 
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.4); 
    color: var(--white); 
}
.btn-outline:hover { background: var(--white); color: var(--ocean-deep); }

/* --- NAVIGATION --- */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem; color: var(--white);
    text-decoration: none; font-weight: 800;
}
.logo span { color: var(--accent-emerald); }

.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }

.nav-links a {
    text-decoration: none; color: var(--white);
    font-size: 0.9375rem; font-weight: 500;
    opacity: 0.8; transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
    background: var(--accent-emerald);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px; opacity: 1 !important;
}

/* --- HERO --- */
.hero {
    height: 100vh; position: relative;
    display: flex; align-items: center;
    color: var(--white); overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: -1;
    transform: scale(1.05); /* Pre-zoom for parallax feel */
}

.hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 46, 38, 0.4) 0%, 
        rgba(10, 46, 38, 0.2) 50%,
        rgba(10, 46, 38, 0.6) 100%);
    z-index: -1;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1; margin-bottom: 2rem;
    font-weight: 800; letter-spacing: -0.02em;
}

.hero-title em { font-style: italic; font-weight: 400; color: var(--accent-sand); }

.hero-sub {
    font-size: 1.25rem; max-width: 600px;
    margin-bottom: 3rem; opacity: 0.9;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 1.5rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3.5rem; }
}

/* --- TICKER --- */
.scrolling-ticker {
    background: var(--ocean-deep);
    color: var(--accent-sand);
    padding: 1.5rem 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    animation: scroll-ticker 30s linear infinite;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

.ticker-dot {
    color: var(--accent-emerald);
    font-size: 1.5rem;
    font-style: normal;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- SECTIONS --- */
section { padding: 100px 0; overflow: hidden; }

.section-head {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1; margin-bottom: 1.5rem;
    font-weight: 800; color: var(--ocean-deep);
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 4rem; align-items: center;
}

.about-img-stack { position: relative; }
.about-img-main {
    border-radius: 24px; width: 100%;
    aspect-ratio: 4/5; object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--accent-amber); color: var(--white);
    padding: 2rem; border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge span { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.about-badge p { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.about-content p {
    font-size: 1.125rem; color: var(--muted);
    margin-bottom: 2rem; line-height: 1.8;
}

/* --- ACCOMMODATION --- */
.acc-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.acc-card {
    background: var(--white); border-radius: 30px;
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out);
    border: 1px solid var(--border);
}
.acc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.acc-img { height: 350px; overflow: hidden; position: relative; }
.acc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.acc-card:hover .acc-img img { transform: scale(1.1); }

.acc-price-tag {
    position: absolute; top: 20px; right: 20px;
    background: rgba(10, 46, 38, 0.8); backdrop-filter: blur(10px);
    color: var(--white); padding: 0.5rem 1rem;
    border-radius: 50px; font-weight: 600; font-size: 0.875rem;
}

.acc-info { padding: 2.5rem; }
.acc-name { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 1rem; }
.acc-desc { color: var(--muted); margin-bottom: 2rem; font-size: 0.9375rem; }

.acc-features { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.acc-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--ocean-light); }

/* --- ACTIVITIES --- */
.act-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
}

.act-card {
    position: relative; border-radius: 24px; height: 450px;
    overflow: hidden; cursor: pointer;
}

.act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.act-card:hover img { transform: scale(1.1); }

.act-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,46,38,0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.5rem; color: var(--white);
    transition: background 0.4s;
}

.act-name { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.act-price { font-size: 0.875rem; font-weight: 600; color: var(--accent-sand); }

/* --- REVEAL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Adaptations */
@media (max-width: 1024px) {
    .about-grid, .acc-grid, .act-grid { grid-template-columns: 1fr; }
    .about-badge { right: 0; bottom: -20px; }
}

/* --- PRICING & CONTACT --- */
.contact {
    position: relative;
    background-image: linear-gradient(rgba(10, 46, 38, 0.85), rgba(10, 46, 38, 0.85)), url('../img/img_bck.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
    align-items: center;
}

.contact-info .section-title { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.8); }

.info-item {
    display: flex; align-items: center; gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s var(--ease-out);
}
.info-item:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.1); }

.info-icon {
    width: 56px; height: 56px;
    background: var(--accent-emerald);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

/* --- MAP STYLING --- */
.map-container {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    line-height: 0; /* Fixes slight gap at bottom of iframe */
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.4s;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.map-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-sand);
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.form-group { margin-bottom: 2rem; }
.form-group label { 
    display: block; font-size: 0.75rem; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 0.75rem; color: var(--accent-sand); 
}

.form-group input, .form-group textarea {
    width: 100%; padding: 1.25rem; 
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: var(--white);
    font-family: var(--font-sans);
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--accent-emerald);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(26, 173, 122, 0.3);
}

/* --- FOOTER --- */
.footer {
    background: #051915; color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 60px; margin-bottom: 40px;
}

.footer-logo { font-family: var(--font-serif); font-size: 2.25rem; margin-bottom: 1.5rem; display: block; text-decoration: none; color: white; }
.footer-logo span { color: var(--accent-emerald); }

.footer-col h4 { font-size: 0.8125rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; color: var(--accent-sand); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; transition: 0.3s; font-size: 0.9375rem; }
.footer-col ul a:hover { color: var(--accent-emerald); padding-left: 5px; }

.footer-bottom { 
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8125rem; color: rgba(255,255,255,0.3); 
}

@media (max-width: 768px) {
    .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form { padding: 2.5rem; }
}

/* --- PRICING SECTION --- */
.pricing { background: var(--off-white); }

.pricing-table-wrapper {
    overflow-x: auto;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th, .pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--ocean-deep);
}

.pricing-table tr:last-child td { border-bottom: none; }

.price-value {
    color: var(--accent-emerald);
    font-weight: 600;
}

.pricing-notes {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.note-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-emerald);
}

/* --- GALLERY SECTION --- */
.gallery { background: white; }

.gallery-grid {
    display: columns;
    column-count: 4;
    column-gap: 1.5rem;
}

.gallery-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (max-width: 768px) { .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .gallery-grid { column-count: 1; } }

/* --- TESTIMONIALS --- */
.testimonials { background: var(--ocean-deep); color: white; }

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.test-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    transition: background 0.3s ease;
}

.test-card:hover { background: rgba(255,255,255,0.08); }

.test-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    font-family: var(--font-serif);
    opacity: 0.1;
}

.test-text {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-author-info strong { display: block; color: var(--accent-sand); }
.test-author-info span { font-size: 0.875rem; opacity: 0.6; }

/* --- AMENITIES SECTION --- */
.amenities { background: var(--off-white); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.amenity-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    border: 1px solid var(--border);
}

.amenity-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--accent-emerald);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.amenity-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* --- LIGHTBOX STYLES --- */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 46, 38, 0.98);
    display: none; align-items: center; justify-content: center;
    z-index: 2000; padding: 2rem; cursor: zoom-out;
}

.lightbox.active { display: flex; animation: fadeIn 0.4s ease; }

.lightbox-img {
    max-width: 90%; max-height: 85vh;
    border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.95); transition: transform 0.4s var(--ease-spring);
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
    position: absolute; top: 2rem; right: 2rem;
    color: white; font-size: 2.5rem; cursor: pointer;
    opacity: 0.6; transition: 0.3s;
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- BACK TO TOP & SCROLLSPY --- */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--accent-emerald); color: white;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 173, 122, 0.3);
    text-decoration: none; z-index: 999;
    opacity: 0; transform: translateY(20px);
    transition: 0.3s; pointer-events: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

.nav-links a.active {
    color: var(--accent-emerald);
    opacity: 1;
}

.nav-links a.active::after {
    content: ''; display: block; width: 20px; height: 2px;
    background: var(--accent-emerald); margin: 5px auto 0;
    border-radius: 2px;
}

/* --- DINING SECTION --- */
.dining { background: white; }

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dining-features {
    list-style: none;
    margin-top: 2rem;
}

.dining-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.dining-features i {
    color: var(--accent-emerald);
}

/* --- FAQ SECTION --- */
.faq { background: var(--bg-light); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--ocean-deep);
}

.faq-answer {
    padding: 0 2rem 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    color: var(--muted);
    font-size: 0.9375rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
