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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Video Header */
.video-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navegación */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f2d;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #2c5f2d;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Contenido Principal */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    padding: 3rem 1rem;
}

.intro h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.rooms-preview {
    padding: 3rem 0;
}

.rooms-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.room-card {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.room-card h3 {
    padding: 1.5rem;
    text-align: center;
    background: #f9f9f9;
    color: #2c5f2d;
}

.contact {
    text-align: center;
    padding: 3rem 1rem;
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Páginas de Habitaciones - Slider */
.room-page {
    max-width: 100%;
    padding: 0;
}

.room-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin: 2rem 0;
    padding: 0 1rem;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.image-gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.gallery-image {
    min-width: 100%;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

/* Botones de navegación */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    color: #2c5f2d;
    font-weight: bold;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Indicadores de slides */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

/* Contador de imágenes */
.image-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .room-title {
        font-size: 1.8rem;
        margin: 1rem 0;
    }
    
    .gallery-image {
        height: 100vh;
    }
    
    .slider-btn {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }
    
    .slider-btn.prev {
        left: 0.5rem;
    }
    
    .slider-btn.next {
        right: 0.5rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .image-counter {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
/* Sección de Contacto - Botón Principal */
.contact-main-btn {
    background: #2c5f2d;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
    margin-top: 1rem;
}

.contact-main-btn:hover {
    background: #1f4520;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
}

.modal-content h2 {
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-content > p {
    color: #666;
    margin-bottom: 2rem;
}

.modal-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.modal-room-card {
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.modal-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.modal-room-info {
    padding: 1.2rem;
}

.modal-room-info h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.3rem;
}

.modal-room-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.modal-reserve-btn {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.modal-room-card:hover .modal-reserve-btn {
    background: #1f4520;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-main-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Sección de Especificaciones y Reserva */
.room-specs-section {
    background: #f9f9f9;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.room-specs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.specs-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-item svg {
    color: #2c5f2d;
    flex-shrink: 0;
}

.spec-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.reserve-action {
    text-align: center;
}

.reserve-main-btn {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.reserve-main-btn:hover {
    background: #1f4520;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

@media (max-width: 768px) {
    .room-specs-section {
        padding: 2rem 1rem;
    }
    
    .specs-content h2 {
        font-size: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reserve-main-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* Sección de Especificaciones en páginas de habitaciones */
.room-specs-section {
    background: #f9f9f9;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.room-specs {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.room-specs h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-item svg {
    color: #2c5f2d;
    flex-shrink: 0;
}

.spec-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.reserve-now-btn {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: #2c5f2d;
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.reserve-now-btn:hover {
    background: #1f4520;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

@media (max-width: 768px) {
    .room-specs-section {
        padding: 2rem 1rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .spec-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .reserve-now-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* Sección Descriptiva */
.about-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4520 100%);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
}

/* Control de Audio Flotante */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(44, 95, 45, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.audio-control:hover {
    background: rgba(31, 69, 32, 0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.audio-control svg {
    color: white;
    width: 28px;
    height: 28px;
}

.audio-control.muted svg {
    opacity: 0.5;
}

.audio-control.muted::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: white;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .audio-control {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .audio-control svg {
        width: 24px;
        height: 24px;
    }
}

/* Hero header log(only on index header-content) */
.hero-logo{
    height: 280px;
    width: auto;
    display: inline-block;
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-logo{
        height: 100px;
        opacity: 0.2;
    }
}

.logo-img {
    height: 28px;
    width: auto;
    display: inline-block;
}

.footer {
    background: #fff;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-logo{
    height: 40px;
    width: auto;
    opacity: 0.95;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-left {
    color: #666;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-center {
    flex: 0 0 auto;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    margin-top: 0.75rem;
    text-align: center;
}

.footer-privacy-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-privacy-link:hover {
    color: #2c5f2d;
    text-decoration: underline;
}

.social-link {
    color: #333;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-link:hover {
    color: #2c5f2d;
    background: #eaf0eb;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-left {
        order: 1;
    }

    .footer-center {
        order: 0;
    }

    .footer-right {
        order: 2;
    }
}