:root {
    --bg-color: #F9F8F4;
    /* Warmer Cream/Off-white from Logo Background */
    --surface-color: #FFFFFF;
    /* White */
    --text-color: #3D3B38;
    /* Dark Grey/Brown from Logo Text */
    --text-light: #6E6B65;
    /* Muted Brown/Grey */
    --accent-color: #7C9082;
    /* Sage Green from Logo Background */
    --accent-hover: #5E7063;
    /* Darker Sage */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;

    --border-radius: 4px;
    /* Minimalist soft corner */
    --shadow-soft: 0 4px 25px rgba(61, 59, 56, 0.05);
    /* Softer shadow with theme color */
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 400;
    /* Elegant, not too bold */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 18px 36px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    box-shadow: none;
    background-color: transparent;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

/* Logo img controlled inline or default */
.logo img {
    /* No specific styles in CSS previously, was inline width */
    mix-blend-mode: normal;
}

.btn-nav {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 0;
    background-color: transparent;
}

.btn-nav:hover {
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    /* Almost full screen mobile */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darker overlay for better logo contrast */
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content .subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Benefits Grid */
.grid-benefits {
    display: grid;
    grid-template-columns: 1fr;
    /* 1 col mobile */
    gap: 20px;
    margin-bottom: 1rem;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: row;
    /* Horizontal on mobile for compactness */
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.benefit-card .icon {
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.note-text {
    font-size: 0.8rem;
    text-align: right;
    margin-top: 10px;
}

/* Conceptual Block */
.bg-alt {
    background-color: #EAEAE5;
}

/* Slightly darker sand */
.split-layout {
    display: block;
    /* Stack on mobile */
}

.image-block img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.text-block h2 {
    font-size: 2rem;
}

/* Suites */
.suite-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

.suite-image {
    height: 250px;
    overflow: hidden;
}

.suite-image img {
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-info {
    padding: 30px;
}

.suite-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.suite-info ul li::before {
    content: '•';
    color: var(--accent-color);
}

/* Breakfast & Convenience */
.bg-soft {
    background-color: #F9F9F7;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.info-item {
    background: white;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Location */
.map-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
}

/* Final CTA */
.cta-final {
    background-color: var(--accent-color);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-final .btn-primary {
    background-color: white;
    color: var(--accent-color);
}

.cta-final .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations (Classes to be controlled by JS/Observer) */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}


/* System Link (Subtle) */
.system-link {
    color: var(--text-color);
    opacity: 0.4;
    font-size: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.system-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Dev Signature - Innovative Pill */
.dev-trigger {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    padding: 5px;
    width: 30px;
    /* Initial icon width */
    height: 30px;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.dev-trigger:hover {
    width: 180px;
    /* Expand to fit text */
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dev-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    font-family: monospace;
    font-weight: bold;
    font-size: 12px;
    color: var(--accent-color);
}

.dev-text {
    opacity: 0;
    margin-left: 10px;
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    transform: translateX(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    /* Delay for slide effect */
}

.dev-trigger:hover .dev-text {
    opacity: 1;
    transform: translateX(0);
}


/* DESKTOP Responsive (min-width: 768px for tablet, 1024px for desktop) */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .grid-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-card {
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
    }

    .split-layout {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .split-layout>div {
        flex: 1;
    }

    .image-block img {
        height: 400px;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}