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

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: #fef9ef;
    color: #1e2a2e;
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #055169;
    --primary-mid: #017f8d;
    --accent-gold: #ecb920;
    --accent-orange: #e17e23;
    --accent-green: #5f7044;
}

h1, h2, h3, .logo {
    font-family: 'Copperplate', 'Copperplate Gothic Light', fantasy;
}
h4, h5, .subtitle, .card h3, .menu a {
    font-family: 'Verdana', sans-serif;
}
p, li, .text-content, button, input, textarea, select {
    font-family: sans-serif;
}

header {
    background-color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--accent-orange);
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Verdana', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    transition: 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: 2px 0 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    nav ul li a {
        font-size: 1.1rem;
    }
    .logo-text h1 {
        font-size: 1.1rem;
    }
}

.hero {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 280px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-family: 'Verdana', sans-serif;
    font-size: 0.9rem;
}

.section {
    padding: 2rem 4%;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        padding: 1.5rem 4%;
    }
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    border-left: 6px solid var(--accent-gold);
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.descripcion-corta {
    background: #f0f3f0;
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    font-size: 1rem;
    margin: 1rem 0 1.5rem 0;
    color: var(--primary-dark);
    font-weight: 500;
}

.cards-habitaciones {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.card-room {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 280px;
    transition: transform 0.2s;
}

.card-room:hover {
    transform: translateY(-5px);
}

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

.card-room .info {
    padding: 1rem;
}

.card-room h3 {
    font-size: 1.2rem;
    color: var(--primary-mid);
}

.card-room p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
    color: #2d3e40;
}

.btn-detail, .btn-detail-lugar {
    background: var(--accent-gold);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    color: #1e2a2e;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .btn-detail, .btn-detail-lugar {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

.btn-detail:hover, .btn-detail-lugar:hover {
    background: var(--accent-orange);
    color: white;
}

.cta-reserva {
    background: var(--primary-dark);
    border-radius: 24px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: white;
}

.reserva-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 140px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 40px;
    border: none;
    font-size: 0.9rem;
}

.btn-reservar {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn-reservar {
        width: 100%;
    }
}

.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.servicio-item {
    background: white;
    padding: 0.9rem 1.2rem;
    border-radius: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: bold;
    color: var(--primary-dark);
}

.atractivos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.atractivo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.atractivo-card:hover {
    transform: translateY(-5px);
}

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

.atractivo-card .atractivo-info {
    padding: 1rem;
}

.atractivo-card strong {
    font-size: 1rem;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.atractivo-card p {
    font-size: 0.75rem;
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .atractivos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 550px) {
    .atractivos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .atractivo-card img {
        height: 140px;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    max-width: 90%;
    width: 500px;
    border-radius: 24px;
    padding: 1.2rem;
    text-align: center;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-gallery {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-gallery img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.precio-habitacion {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.8rem 0;
    display: inline-block;
    width: auto;
    padding: 0.5rem 1.2rem;
}

.close-modal {
    background: var(--primary-mid);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.8rem;
}

.contacto-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-contacto, .info-contacto {
    flex: 1;
    background: #eef2f1;
    padding: 1.2rem;
    border-radius: 24px;
}

.info-contacto {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-contacto input, .form-contacto textarea {
    width: 100%;
    margin: 8px 0;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-contacto textarea {
    border-radius: 20px;
}

.social-icons a {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-dark);
    display: inline-block;
    transition: 0.2s;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.75rem;
}

iframe {
    width: 100%;
    border-radius: 20px;
    height: 280px;
    border: none;
}

@media (max-width: 768px) {
    .contacto-flex {
        flex-direction: column;
    }
}
