/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 120px;
    color: #333;
}

/* Header fijo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #d4af37, #f4e24c);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    border-bottom: 3px solid rgba(255,255,255,0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.hotel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Pestañas */
.tab-container {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    background: transparent;
    border: none;
    color: white;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Source Sans Pro', sans-serif;
}

.tab-button:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: #d4af37;
}

.tab-button.active {
    background: rgba(255,255,255,0.15);
    border-bottom-color: #d4af37;
}

/* Contenido de pestañas */
.tab-content {
    display: none;
    padding: 40px;
    min-height: 500px;
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

/* Enlaces web */
.web-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.link-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.link-card a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

/* Restaurantes */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.restaurant-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.restaurant-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
    object-fit: cover;
}

.restaurant-logo:hover {
    transform: scale(1.1);
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.restaurant-hours {
    color: #666;
    font-size: 1rem;
    text-align: left;
    margin-top: 15px;
}

.schedule-item {
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.schedule-day {
    font-weight: 600;
    color: #2c3e50;
}

.schedule-time {
    color: #666;
    margin-left: 10px;
}

/* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Actividades */
.activities-container {
    margin-top: 20px;
}

.day-activities {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

.activity-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px;
}

.activity-list li {
    padding: 12px 15px;
    font-size: 1rem;
    color: #555;
    background: white;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.activity-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Galería de imágenes */
.image-gallery {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-container {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-nav {
    text-align: center;
    margin-top: 20px;
}

.gallery-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 0 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.gallery-btn:hover {
    background: #b8941f;
}

/* Mapa */
.map-container {
    text-align: center;
    margin-top: 20px;
}

.map-image {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contactos */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-details {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pie de página */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hotel-title {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    body {
        padding-top: 140px;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 20px;
    }

    .tab-title {
        font-size: 2rem;
    }

    .activity-list {
        grid-template-columns: 1fr;
    }
}