/* ===================================
   BOWLING CENTER OSORNO - MAIN STYLES
   Archivo principal que importa todos los módulos CSS
   Paleta de colores basada en el logo:
   - Morado primario: #7B5AEE (del texto "Bowling")
   - Naranja primario: #FF8A3D (del texto "Center") 
   - Morado oscuro: #5D4DBF (para elementos de contraste)
   - Naranja suave: #FFB380 (para elementos secundarios)
   - Gris minimalista: #F8F9FA (fondos)
   - Blanco: #FFFFFF (espacios limpios)
   =================================== */

/* Importar módulos CSS */
@import url('base.css');
@import url('header.css');
@import url('hero.css');
@import url('services.css');
@import url('sidebar.css');
@import url('reviews.css');
@import url('footer.css');
@import url('modal.css');
@import url('whatsapp.css');
@import url('responsive.css');
@import url('auth-modal.css');
@import url('components/info-modal.css');
@import url('about-section.css');

/* ===================================
   ESTILOS ADICIONALES ESPECÍFICOS
   Estilos que no encajan en otros módulos
   =================================== */

/* Header Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 90, 238, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(123, 90, 238, 0.1), rgba(255, 138, 61, 0.1));
    color: #7B5AEE;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 90, 238, 0.15);
    border-radius: 12px;
}

.nav-link i {
    font-size: 16px;
    margin-right: 6px;
}

/* Mi Cuenta Link - Estilo diferenciado */
.nav-link[href="#"] {
    background: transparent;
    border: none;
    color: #6c757d;
}

.nav-link[href="#"]:hover {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
    color: #495057;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.reviews-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #7B5AEE, #FF8A3D);
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #7B5AEE, #FF8A3D);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(123, 90, 238, 0.15);
    border-color: rgba(123, 90, 238, 0.2);
}

.review-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B5AEE, #FF8A3D);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(123, 90, 238, 0.3);
}

.review-content {
    text-align: center;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(37, 211, 102, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(37, 211, 102, 0.2);
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-family: serif;
    line-height: 1;
}

.review-author {
    font-weight: 600;
    color: #7B5AEE;
    font-size: 1rem;
    position: relative;
}

.review-author::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #7B5AEE, #FF8A3D);
}

/* Responsive for Header and Reviews */
@media (max-width: 768px) {
    /* Header mobile styles now handled in header.css */
    
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 18px;
        margin-right: 0;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}