/* --- Variables --- */
:root {
    --color-emerald: #047857;
    --color-emerald-dark: #065f46;
    --color-cream: #FDF8F5;
    --color-cream-dark: #f5efe9;
    --color-text: #1f2937;
    --color-text-light: #4b5563;
    --color-accent: #f59e0b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Decorative Background Blobs --- */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.bg-blob-1 {
    width: 600px;
    height: 600px;
    background: #d1fae5;
    top: -200px;
    right: -100px;
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    background: #fef3c7;
    bottom: 10%;
    left: -150px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-emerald);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: 2rem;
}

.tag {
    display: inline-block;
    background: var(--color-emerald);
    color: var(--color-cream);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-cream);
}

.btn-primary:hover {
    background: var(--color-emerald-dark);
}

.btn-light {
    background: var(--color-cream);
    color: var(--color-emerald);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--color-cream);
    color: var(--color-cream);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: padding 0.3s;
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-emerald);
}

.logo-text .highlight {
    color: var(--color-accent);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-text);
}

.main-nav a:hover {
    color: var(--color-emerald);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--color-emerald);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #047857 0%, #065f46 50%, #047857 100%);
    z-index: 0;
}

.gradient-slice {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.slice-1 {
    width: 60%;
    height: 60%;
    background: rgba(253, 248, 245, 0.1);
    top: -10%;
    right: -10%;
}

.slice-2 {
    width: 40%;
    height: 40%;
    background: rgba(245, 158, 11, 0.2);
    bottom: 10%;
    left: -5%;
}

.slice-3 {
    width: 30%;
    height: 30%;
    background: rgba(253, 248, 245, 0.08);
    top: 40%;
    right: 20%;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 248, 245, 0.2);
    color: var(--color-cream);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(253, 248, 245, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-cream);
    margin-bottom: 24px;
    line-height: 1.05;
}

.text-outline {
    font-family: var(--font-serif);
    font-style: italic;
    -webkit-text-stroke: 2px var(--color-cream);
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(253, 248, 245, 0.85);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 280px;
    height: 360px;
    top: 0;
    right: 0;
    z-index: 2;
}

.card-2 {
    width: 240px;
    height: 200px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

/* --- About --- */
.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-emerald);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--color-text);
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.image-stack {
    position: relative;
    height: 600px;
}

.stack-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-main {
    width: 320px;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-accent {
    width: 280px;
    height: 240px;
    bottom: 0;
    right: 20px;
    z-index: 1;
}

.geo-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.9;
}

/* --- Stay --- */
.stay-section {
    padding: 100px 0;
    background: var(--color-emerald);
    position: relative;
}

.stay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.stay-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.stay-card:hover {
    transform: translateY(-8px);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-accent);
}

.card-accent.secondary {
    background: #10b981;
}

.card-accent.tertiary {
    background: #3b82f6;
}

.stay-card h3 {
    font-size: 1.5rem;
    color: var(--color-emerald);
    margin-bottom: 12px;
}

.stay-card p {
    color: var(--color-text-light);
}

/* --- Location --- */
.location-section {
    padding: 120px 0;
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.map-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 32px;
}

.map-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.location-visual {
    position: relative;
    height: 500px;
}

.geo-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 4px solid var(--color-emerald);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.info-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.info-card {
    background: var(--color-cream);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

.info-card strong {
    display: block;
    color: var(--color-emerald);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- CTA --- */
.cta-section {
    padding: 100px 0;
    background: var(--color-cream-dark);
}

.cta-box {
    background: var(--color-emerald);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(253, 248, 245, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .section-title {
    color: var(--color-cream);
}

.cta-content p {
    color: rgba(253, 248, 245, 0.85);
    font-size: 1.125rem;
}

.cta-form-wrapper {
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--color-cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-icon {
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--color-emerald);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--color-text-light);
}

/* --- Footer --- */
.site-footer {
    background: var(--color-emerald-dark);
    color: var(--color-cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-cream);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(253, 248, 245, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(253, 248, 245, 0.7);
}

.footer-links a:hover {
    color: var(--color-cream);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(253, 248, 245, 0.7);
}

.footer-contact a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 245, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(253, 248, 245, 0.5);
    font-size: 0.875rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-container,
    .about-grid,
    .location-split,
    .cta-box {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .stay-grid {
        grid-template-columns: 1fr;
    }
    
    .image-stack {
        display: none;
    }
    
    .location-visual {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        padding: 24px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
