/* Variables de Colores Principales */
:root {
    --color-primary: #8B4513;
    --color-secondary: #A0522D;
    --color-accent: #CD853F;
    /* Estilos de actividades eliminados */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-accent) !important;
}

.btn-reserva {
    background: #228B22 !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    font-weight: 600 !important;
}

.btn-reserva:hover {
    background: var(--color-secondary);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 133, 63, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
    background: var(--color-dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(139, 69, 19, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section .container.hero-content {
    z-index: 3;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Animaciones de Entrada */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sección de Características */
.features-section {
    background: var(--color-light);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #0d3d0d;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #1a5c1a;
    transform: scale(1.1);
}

.feature-card h5 {
    color: #0d3d0d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Títulos de Sección */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Tarjetas de Habitaciones */
.room-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-card.featured {
    border: 3px solid var(--color-accent);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.room-body {
    padding: 1.5rem;
}

.room-body h4 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.room-features li {
    padding: 0.5rem 0;
    color: var(--color-text);
}

.room-features i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}

/* Sección de Servicios */
.services-section {
    background: linear-gradient(135deg, #228B22 0%, #2E8B57 50%, #556B2F 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 30 50 50 T100 50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></svg>') repeat;
    background-size: 100px 100px;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
}

.service-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #0d3d0d;
    margin-bottom: 1rem;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Galería */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: var(--color-white);
    font-size: 3rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonios */
.testimonials-section {
    background: var(--color-light);
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--color-primary);
    display: block;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Sección de Reserva */
.reservation-section {
    background: var(--color-white);
}

.contact-info {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-item strong {
    color: var(--color-primary);
    display: block;
}

.contact-item p {
    margin: 0;
    color: var(--color-text-light);
}

.reservation-form {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
}

.reservation-form .form-label {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reservation-form .form-control,
.reservation-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(160, 82, 45, 0.25);
}

/* Sección de Contacto */
.contact-section {
    background: var(--color-white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}

.footer h5, .footer h6 {
    color: var(--color-white);
    font-weight: 600;
}

.footer i.bi-tree-fill {
    color: var(--color-accent);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.newsletter-form input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

/* Botones */
.btn-primary {
    background: var(--color-secondary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card {
        margin-bottom: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .room-image {
        height: 200px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Efectos de Scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Card Link */
.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

.service-card-clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card-clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-card-clickable:hover::before {
    left: 100%;
}

.service-card-clickable:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.ver-mas-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: var(--color-accent);
    color: var(--color-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-clickable:hover .ver-mas-badge {
    background: var(--color-white);
    transform: translateX(5px);
}

.ver-mas-badge i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card-clickable:hover .ver-mas-badge i {
    transform: translateX(3px);
}