/*
Theme Name: Teresa Palmeiro Clinics
Author: Assistant
Description: Custom WordPress theme for dental clinics.
Version: 1.0
*/

body { 
    font-family: 'Montserrat', sans-serif; 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden;
    color: white;
}

/* Fixed Backgrounds */
.bg-image {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(to right, rgba(212, 140, 157, 0.9) 0%, rgba(232, 168, 124, 0.8) 50%, rgba(244, 208, 111, 0.7) 100%);
    z-index: -1;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav-link { 
    transition: all 0.3s ease; 
    letter-spacing: 0.15em; 
    color: rgba(255,255,255,0.8); 
}
.nav-link:hover, .nav-link.active { 
    color: #ffffff; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 500;
}

.lang-item { cursor: pointer; font-size: 10px; font-weight: bold; letter-spacing: 0.1em; transition: color 0.3s; }
.lang-item.active { color: white; }
.lang-item.inactive { color: rgba(255,255,255,0.5); }
.lang-item:hover { color: white; }

/* SPA Pages */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.page-section.active {
    display: flex;
    opacity: 1;
}

/* Utils */
.glass-panel {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
}

.service-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, #ffffff, rgba(255,255,255,0.2));
    margin-bottom: 1rem;
    border-radius: 2px;
}