/* assets/css/style.css */
:root {
    --primary: #0a0a0a;    /* Negro profundo */
    --secondary: #f4f4f2;  /* Blanco marfil para fondos suaves */
    --accent: #1a1a1a;     /* Gris oscuro */
    --text: #333333;
}

body {
    font-family: 'Georgia', serif; /* Fuente con serifa para elegancia */
    color: var(--text);
    background-color: #fff;
    line-height: 1.8;
}

/* Presentación - Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/inicio/hero_full_orchestra.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
}

.btn-conciertos {
    border: 1px solid #fff;
    padding: 15px 40px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    margin-top: 30px;
    display: inline-block;
}

.btn-conciertos:hover {
    background: #fff;
    color: #000;
}

/* Secciones */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Conciertos Estilo Editorial */
.concierto-box {
    border: 1px solid #eee;
    padding: 0;
    transition: 0.3s;
    background: #fff;
}

.concierto-info {
    padding: 25px;
}

/* Estilos de botones de navegación (Auth) */
.btn-nav-auth {
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 15px;
    transition: 0.3s;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* Botón Iniciar Sesión */
.btn-outline-dark-custom {
    color: #000 !important;
    background: transparent;
}

.btn-outline-dark-custom:hover {
    background: #000;
    color: #fff !important;
}

/* Botón Registrarse (Corregido) */
.btn-solid-dark-custom {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000;
}

.btn-solid-dark-custom:hover {
    background: #333 !important;
    border-color: #333;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 0.6;
}

/* Imagen del Footer */
img[alt="Anima Cantis"] {
    max-height: 100px;
    width: auto;
}