/* ========================================
   TEMA: NAIL STUDIO - Sal�n de U�as Moderno
   ======================================== */

/* Variables del tema */
:root {
    /* Paleta de colores - Rosa nude y tonos pastel elegantes */
    --theme-primary: #E8B4B8;
    --theme-primary-dark: #D89FA4;
    --theme-primary-light: #F5D5D8;
    --theme-accent: #C89FA3;
    --theme-accent-strong: #B08589;
    --theme-accent-soft: #F0D4D6;
    
    --theme-secondary: #F4E4E6;
    --theme-gold: #D4AF37;
    --theme-rose-gold: #B76E79;
    
    /* Gradientes */
    --theme-header-gradient-start: #F5D5D8;
    --theme-header-gradient-end: #E8B4B8;
    --theme-gradient-elegant: linear-gradient(135deg, #F5D5D8 0%, #E8B4B8 50%, #D89FA4 100%);
    
    /* Tipograf�a */
    --theme-heading-font: 'Playfair Display', serif;
    --theme-body-font: 'Poppins', sans-serif;
    
    /* Colores de texto */
    --theme-text-dark: #4A4A4A;
    --theme-text-light: #6B6B6B;
    --theme-muted: #8B8B8B;
    
    /* Bordes y fondos */
    --theme-border: #F0D4D6;
    --theme-bg-soft: #FFF8F9;
    --theme-white: #FFFFFF;
    
    /* Sombras */
    --theme-shadow-soft: 0 8px 24px rgba(232, 180, 184, 0.15);
    --theme-shadow-medium: 0 12px 32px rgba(232, 180, 184, 0.2);
    --theme-shadow-strong: 0 16px 48px rgba(232, 180, 184, 0.25);
}

/* ===== ESTILOS GLOBALES ===== */
body {
    font-family: var(--theme-body-font);
    background: var(--theme-bg-soft) !important;
    color: var(--theme-text-dark);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--theme-gradient-elegant);
    border-bottom: 3px solid var(--theme-gold);
    padding: 3rem 0 !important;
    position: relative;
    overflow: hidden;
    padding-top: 1rem !important;
}

.site-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.site-header h1 {
    font-family: var(--theme-heading-font);
    font-weight: 700;
    color: var(--theme-text-dark);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}
    .site-header h2 {
        font-family: var(--theme-heading-font);
        font-weight: 700;
        color: var(--theme-text-dark);
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
        font-size: 1.5rem;
    }

.site-header .text-muted {
    color: var(--theme-text-light) !important;
    font-size: 0.95rem;
}

.site-header i {
    color: var(--theme-rose-gold);
}

/* Bot�n de acceso clientes mejorado */
.site-header .btn-outline-light {
    background: var(--theme-white);
    color: var(--theme-rose-gold);
    border: 2px solid var(--theme-white);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.site-header .btn-outline-light:hover {
    background: var(--theme-rose-gold);
    color: var(--theme-white);
    border-color: var(--theme-rose-gold);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
    transform: translateY(-2px);
}

/* Hero reviews */
.hero-reviews {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(232, 180, 184, 0.2);
}

.hero-reviews .fw-semibold {
    color: var(--theme-rose-gold);
}

/* ===== HERO PHOTO ===== */
.hero-photo .carousel-inner {
    border-radius: 25px !important;
    border: 4px solid var(--theme-white);
    box-shadow: var(--theme-shadow-strong);
}

.hero-photo .carousel-control-prev-icon,
.hero-photo .carousel-control-next-icon {
    background-color: var(--theme-rose-gold);
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* ===== CARDS ===== */
.card {
    border: none !important;
    border-radius: 25px !important;
    background: var(--theme-white);
    box-shadow: var(--theme-shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
}

.card:hover {
    box-shadow: var(--theme-shadow-medium);
    border-color: var(--theme-primary-light) !important;
    /*transform: translateY(-4px);*/
}

.card-title {
    color: var(--theme-text-dark);
    font-family: var(--theme-heading-font);
    font-weight: 600;
}

/* ===== SERVICIOS ===== */
.service-search .input-group-text {
    background: var(--theme-primary-light) !important;
    border-color: var(--theme-primary-light);
    color: var(--theme-text-dark);
}

.service-search .form-control {
    border-color: var(--theme-primary-light);
}

.service-search .form-control:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.25rem rgba(232, 180, 184, 0.25);
}

.service-category h3 {
    color: var(--theme-rose-gold) !important;
    font-family: var(--theme-heading-font);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-gold) 0%, transparent 100%);
    border-radius: 2px;
}

.list-group-item {
    border: 2px solid var(--theme-secondary) !important;
    border-radius: 18px !important;
    margin-bottom: 0.75rem;
    background: var(--theme-white);
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-primary) !important;
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.2);
    /* transform: translateX(8px); */
}

.service-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--theme-primary-light);
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.2);
}

/* ===== BOTONES ===== */
.btn-primary,
.btn-outline-primary {
    background: var(--theme-gradient-elegant);
    border: 2px solid var(--theme-primary);
    color: var(--theme-white);
    font-weight: 600;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.3);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background: var(--theme-rose-gold);
    border-color: var(--theme-rose-gold);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary:not(:hover) {
    background: transparent;
    color: var(--theme-primary);
}

#toggleServicesBtn {
    background: var(--theme-white);
    color: var(--theme-rose-gold);
    border: 2px solid var(--theme-primary);
}

#toggleServicesBtn:hover {
    background: var(--theme-gradient-elegant);
    color: var(--theme-white);
}

/* ===== RESE�AS ===== */
.review-summary {
    background: var(--theme-secondary);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--theme-primary-light);
}

.review-summary .display-6 {
    color: var(--theme-rose-gold);
    font-family: var(--theme-heading-font);
}

.progress {
    height: 8px;
    background-color: var(--theme-secondary);
    border-radius: 10px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--theme-gold) 0%, var(--theme-rose-gold) 100%);
    border-radius: 10px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--theme-gradient-elegant);
    color: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.3);
    border: 3px solid var(--theme-white);
}

.review {
    display: flex;
    padding: 1.25rem;
    background: var(--theme-white);
    border-radius: 18px;
    border: 2px solid var(--theme-secondary);
    transition: all 0.3s ease;
}

.review:hover {
    background: var(--theme-bg-soft);
    border-color: var(--theme-primary-light);
    box-shadow: 0 4px 16px rgba(232, 180, 184, 0.15);
}

/* ===== PAGINACI�N ===== */
.pagination .page-link {
    color: var(--theme-rose-gold);
    border-color: var(--theme-primary-light);
    border-radius: 12px;
    margin: 0 0.25rem;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: var(--theme-gradient-elegant);
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.3);
}

.pagination .page-link:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-primary);
}

/* ===== SIDEBAR ===== */
.sticky-top h2 {
    color: var(--theme-text-dark);
    font-family: var(--theme-heading-font);
    position: relative;
    padding-bottom: 0.5rem;
}

.sticky-top h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--theme-gold);
    border-radius: 2px;
}

.map-wrapper {
    border: 4px solid var(--theme-primary-light);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.2);
}

/* Social links */
.social-links a {
    color: var(--theme-text-dark) !important;
    padding: 0.75rem 1rem;
    background: var(--theme-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--theme-gradient-elegant);
    color: var(--theme-white) !important;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.3);
    transform: translateX(8px);
}

.social-links i {
    color: var(--theme-rose-gold);
    font-size: 1.25rem;
}

.social-links a:hover i {
    color: var(--theme-white);
}

/* ===== FORMULARIO DE CONTACTO ===== */
.form-control,
.form-select {
    border: 2px solid var(--theme-primary-light);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.25rem rgba(232, 180, 184, 0.25);
}

.form-label {
    color: var(--theme-text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--theme-rose-gold);
    border-color: var(--theme-rose-gold);
}

/* ===== FOOTER ===== */
/*.site-footer {
    background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
    border-top: 4px solid var(--theme-gold);
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-text {
    color: var(--theme-white);
    font-family: var(--theme-heading-font);
    letter-spacing: 1px;
}*/

/* ===== OFFCANVAS ===== */
#reservaOffcanvas .offcanvas-header {
    background: var(--theme-gradient-elegant);
    border-bottom: 3px solid var(--theme-gold);
}

#reservaOffcanvas .btn-close {
    filter: brightness(0) invert(1);
}

/* ===== DECORACI�N ADICIONAL ===== */
/* Detalles dorados decorativos - DESACTIVADO para bordes redondeados */
/* .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--theme-gold);
    border-radius: 0 0 4px 0;
} */

/* Efectos de brillo en hover */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.btn-primary:hover,
.card:hover {
    animation: shimmer 2s infinite;
    background-size: 200% auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-header {
        padding: 2rem 0 !important;
    }
    
    .hero-reviews {
        width: 100%;
        justify-content: center;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-category h3::after {
        width: 40px;
    }
}

/* ===== TOAST ===== */
#contactToast {
    background: var(--theme-gradient-elegant) !important;
    border: 2px solid var(--theme-gold);
}

/* ===== MODAL ===== */
.modal-content {
    border-radius: 25px;
    border: 3px solid var(--theme-primary-light);
}

/* ===== BADGE ===== */
.badge {
    background: var(--theme-gradient-elegant) !important;
    color: var(--theme-white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

/* Estrellas doradas */
.text-warning i {
    color: var(--theme-gold) !important;
}
