@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #00a699;
    --primary-dark: #008a80;
    --secondary: #ff5a5f;
    --dark: #222222;
    --gray: #717171;
    --light-gray: #f7f7f7;
    --border: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Exo 2", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navbar estilo Airbnb */
.airbnb-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: box-shadow 0.3s;
}

.airbnb-navbar.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #00c8b8;
    letter-spacing: -0.5px;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 15px;
}

.nav-menu a:hover {
    background: var(--light-gray);
}

.btn-reserve {
    background: linear-gradient(135deg, var(--primary), #00c8b8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.btn-reserve:hover {
    background: #e84c50;
    transform: scale(1.02);
}

/* Hero Section estilo Booking */
.hero-booking {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://s3.islandhub.cl/view/30052c43b9e1f23a227aee478ae59fef') center/cover;
    background-position: 0% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

/* Search Box estilo Booking */
.search-box {
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    display: flex;
    gap: 8px;
    max-width: 850px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
}

.search-field:focus {
    outline: none;
}

.search-divider {
    width: 1px;
    background: var(--border);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary), #00c8b8);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-btn:hover {
    background: #e84c50;
    transform: scale(1.02);
}

/* Cards estilo Airbnb */
.experience-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.card-description {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.card-price strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.price-badge {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Sección de Beneficios */
.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #00c8b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonios */
.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-location {
    font-size: 14px;
    color: var(--gray);
}

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Reserva CTA */
.booking-cta {
    background: url('https://s3.islandhub.cl/view/1cbba32e7f74e2b95016e47d617a175a') center/cover;
    background-position: 0% 70%;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Footer minimalista */
.minimal-footer {
    background: var(--light-gray);
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* Modal de Reserva */
.booking-modal {
    padding: 40px;
}

.modal-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 166, 153, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        border-radius: 16px;
    }

    .search-divider {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Estilos adicionales para botones de navegación */
.uk-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    background: var(--primary-dark) !important;
}

.uk-button-default:hover {
    background: var(--light-gray) !important;
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
}

@media (max-width: 768px) {
    .uk-margin-top {
        flex-direction: column !important;
    }

    .uk-width-1-2 {
        width: 100% !important;
    }
}