/* Estilos para la Landing Page (landing.css) */

body {
    font-family: 'Roboto', sans-serif;
    /* Ajuste para la barra de navegación fija */
    padding-top: 70px; 
}

/* --- Sección Hero --- */
.hero-section {
    position: relative;
    height: 80vh; /* 80% de la altura de la pantalla */
    background-color: #333; /* Color de fondo si la imagen no carga */
    
    /* Imagen de fondo - ¡Reemplaza esta URL! */
    background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
}

/* Capa oscura sobre la imagen para que el texto resalte */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Oscurecer la imagen */
}

/* Asegurar que el contenido esté sobre la capa oscura */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* --- Barra de Navegación --- */
.navbar-brand {
    font-size: 1.5rem;
}
.navbar .nav-link {
    font-weight: 400;
}
.navbar .btn-primary {
    /* Darle un poco más de énfasis al botón de login */
    padding: 0.5rem 1.2rem;
    font-weight: 700;
}

/* --- Secciones Generales --- */
section {
    padding: 80px 0;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* --- Footer --- */
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}