/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#youtube-player {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 250% !important;
    height: 250% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
}

#youtube-player iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border: none !important;
    object-fit: cover !important;
}

/* Ocultar elementos del reproductor de YouTube */
.video-background::before,
.video-background::after {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #666;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem 3%;
    }

    .hero {
        padding: 2rem 3%;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }

    #youtube-player {
        width: 300% !important;
        height: 300% !important;
    }
}

/* Estilos de Secciones */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Estilos de Habitaciones */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.room-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.room-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.room-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover img {
    transform: scale(1.1);
}

.room-card-content {
    padding: 1.5rem;
    text-align: center;
}

.room-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.room-card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Estilos de Ubicación */
.location-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.location-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.location-info p, 
.location-info ul {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4a90e2;
}

/* Media Queries Responsivas */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 3%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-card {
        max-width: 100%;
    }

    .room-card img {
        height: 250px;
    }

    .location-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .room-card img {
        height: 200px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}