/*
 * krakryp/assets/css/styles.css
 * Estilos generales para el sitio web.
 */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
}

/* --- Header --- */
nav.main-header {
    background-color: #DAA520 !important;
    background-image: linear-gradient(45deg, #FFD700, #DAA520) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav.main-header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
}

.header-logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2c3e50;
    background-color: #fff;
    padding: 2px;
}

nav.main-header .navbar-nav .nav-link {
    color: #34495e !important;
    font-weight: 600;
    margin: 0 10px;
}

/* --- ESTILO PARA LA FOTO DE PERFIL EN EL HEADER --- */
.header-profile-picture {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #2c3e50;
}


/* ... (resto de estilos del header, slider y footer sin cambios) ... */

nav.main-header .navbar-nav .nav-link:hover {
    color: #000000 !important;
}

nav.main-header .btn-login,
nav.main-header .btn-register {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav.main-header .btn-login {
    border: 2px solid #2c3e50;
    color: #2c3e50;
}

nav.main-header .btn-login:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

nav.main-header .btn-register {
    background-color: #2c3e50;
    color: #ffffff;
    border: 2px solid #2c3e50;
}

nav.main-header .btn-register:hover {
    background-color: transparent;
    color: #2c3e50;
}


/* --- Slider de Inicio --- */
#heroSlider {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid #DAA520;
}

.slider-image-container {
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slider-image {
    width: 760px;
    height: 480px;
    object-fit: cover;
}

.carousel-caption {
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,255,135,0.9);
}

/* --- Footer --- */
.main-footer {
    background-color: #1a1a2e;
    color: #bdc3c7;
    padding: 2rem 0;
    border-top: 5px solid #DAA520;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: #00bfff;
}

.footer-icons {
    font-size: 2rem;
}

.footer-icons .fab, .footer-icons .fas {
    margin: 0 10px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-icons .fab:hover, .footer-icons .fas:hover {
    color: #DAA520;
}

.footer-copyright {
    background-color: #111;
    color: #7f8c8d;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

