:root {
    --primary: #FF385C; /* Airbnb-like accent just for tiny details, or we can use an elegant ocean blue for Manantiales */
    --accent: #132450; /* Deep blue from Manantiales branding */
    --gold: #be983f;
    --text-main: #222222;
    --text-light: #717171;
    --bg-light: #f7f7f7;
    --white: #ffffff;
    --border: #dddddd;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    padding: 8px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a:hover {
    background-color: var(--bg-light);
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-light);
}

/* Hero Title */
.hero-title {
    padding: 32px 0 24px;
}

.hero-title h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-meta {
    display: flex;
    gap: 16px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
    cursor: pointer;
}

/* Hero Gallery (Airbnb Style) */
.hero-gallery {
    padding-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

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

.item-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Optional overlay to darken slightly on hover, typical of Airbnb */
.gallery-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0);
    transition: var(--transition);
    pointer-events: none;
}

.gallery-grid:hover .gallery-item:not(:hover)::after {
    background: rgba(0,0,0,0.15);
}

.show-all-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    border: 1px solid var(--text-main);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.show-all-btn:hover {
    background: var(--bg-light);
    transform: scale(1.02);
}

/* Section Shared */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Accommodations */
.accommodations {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.room-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
}

.badge-gold {
    background: rgba(190, 152, 63, 0.9);
    color: white;
}

.room-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.room-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 2px;
}

.room-desc {
    font-size: 0.95rem;
    margin-top: 4px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-amenities {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.room-amenities span {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Experiences */
.experiences {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    /* Hide scrollbar for webkit but keep it scrollable */
    scrollbar-width: none; 
}
.experiences-grid::-webkit-scrollbar {
    display: none;
}

.exp-card {
    min-width: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
    border: 1px solid transparent;
}

.exp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.exp-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.exp-content {
    padding: 16px;
}

.exp-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.exp-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 64px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p, .footer-col li {
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .item-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 1.75rem;
    }
    .nav-links {
        display: none;
    }
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        border-radius: 0;
        margin: 0 -24px;
    }
    .gallery-item {
        min-width: 90vw;
        height: 300px;
        scroll-snap-align: center;
    }
    .experiences-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
