/* Modern Enhanced Styles for Chowa Center */

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.language-selector select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
}

/* Enhanced Header */
.site-header {
    background: linear-gradient(135deg, #8b7355 0%, #ddbf94 100%);
    color: #5d4e37;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.site-header::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 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.logo {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    color: #5d4e37;
}

.site-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Modern Card Design */
.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(93, 78, 55, 0.1);
    padding: 2rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(210, 180, 140, 0.3);
}

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

/* Enhanced Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #5d4e37;
    background: #f5f5dc;
    min-height: 100vh;
}

h1 {
    color: #5d4e37;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(139, 115, 85, 0.3);
    letter-spacing: 1px;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d2b48c 0%, #8b7355 100%);
    border-radius: 2px;
}

h2, h3, h4, h5, h6 {
    color: #5d4e37;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Enhanced Images */
.hero-image {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Modern Buttons */
.btn-modern {
    background: linear-gradient(135deg, #d2b48c 0%, #bc9a6a 100%);
    color: #5d4e37;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.4);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 180, 140, 0.6);
    color: #5d4e37;
    text-decoration: none;
    background: linear-gradient(135deg, #ddbf94 0%, #d2b48c 100%);
}

/* Enhanced Navigation */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .language-selector {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }
    
    .content-card {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Footer */
.site-footer {
    background: #8b7355;
    color: #f5f5dc;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.site-footer a {
    color: #ddbf94;
    text-decoration: none;
}

.site-footer a:hover {
    color: #f5f5dc;
}

/* Therapy Items */
.therapy-item {
    background: linear-gradient(135deg, #f5f5dc 0%, #ede0c8 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #d2b48c !important;
}

.therapy-item:hover {
    background: linear-gradient(135deg, #d2b48c 0%, #bc9a6a 100%);
    color: #5d4e37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
}

.therapy-item:hover i {
    color: #5d4e37 !important;
}
/* Iconos Font Awesome */
.fa-hand-paper, .fa-spa, .fa-heart, .fa-brain, .fa-leaf, .fa-users, .fa-smile, .fa-balance-scale, .fa-child, .fa-graduation-cap, .fa, .fas, .far, .fab {
    color: #8b7355 !important;
}
