/* smooth behavior */
html {
    scroll-behavior: smooth;
}

/* custom styles */
body {
   background-image: linear-gradient(to right, #434343 0%, black 100%)!important;


    color: #ffeded;

    font-family: raleway, sans-serif;
}

/* navbar styles */
/* background color */
nav.navbar {
    background-image: linear-gradient(to right, #434343 0%, black 100%)!important;
}

/* text color */
.navbar-brand p,
.nav-link {
    color: #ffeded !important;
}

/* link styles */
.nav-link {
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ced4da !important;
    text-decoration: underline;
}

/* section and hero padding*/
#hero,
section {
    padding-top: 100px;
}

/* hero */
.hero {
    /* Estilos para todas las pantallas */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    
    /* Altura por defecto para pantallas pequeñas */
    min-height: 400px; /* Ajusta este valor si lo prefieres */
}

/* Media query para pantallas grandes (ej. tablets y desktops) */
@media (min-width: 768px) {
    .hero {
        min-height: 100vh; /* Ocupa el 100% de la altura de la ventana */
    }
}

/* card styles */

.card {
    background-color: #2c2c2c !important;
    border: none !important;
    color: #ffeded !important;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* footer styles */
footer {
    background-image: linear-gradient(to right, #434343 0%, black 100%)!important;
    color: #ffeded !important;
    padding: 1rem 0;
    text-align: center;
}


