:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #e6e6e6;
    --highlight-color: #e94560;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

/* Secciones con imagen limpia (sin efecto oscuro en el fondo) */
.image-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Secciones con efecto oscuro SOLO en el fondo */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1; /* Asegurar que esté detrás del contenido */
}

.section-content {
    position: relative;
    z-index: 2; /* Asegurar que el contenido esté por encima del overlay */
    padding: 100px 0;
}

.navbar {
    background-color: rgba(26, 26, 46, 0.9);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

.btn-primary {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.btn-primary:hover {
    background-color: #d13454;
    border-color: #d13454;
}

.music-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.music-item:hover {
    transform: translateY(-5px);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.press-item {
    border-left: 3px solid var(--highlight-color);
    padding-left: 15px;
    margin-bottom: 30px;
}

footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    text-align: center;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--highlight-color);
    color: var(--text-color);
    box-shadow: none;
}

.alert {
    display: none;
}
.btn-outline-secondary {
    --bs-btn-color: #e1e1e1 !important;
    --bs-btn-border-color: #e1e1e1 !important;
    --bs-btn-hover-bg: #e1e1e1 !important;
    --bs-btn-hover-border-color: #e1e1e1 !important;
    --bs-btn-active-bg: #e1e1e1 !important;
    --bs-btn-active-border-color: #e1e1e1 !important;
    --bs-btn-disabled-color: #e1e1e1 !important;
    --bs-btn-disabled-border-color: #e1e1e1 !important;
}