/*main styles*/

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    overflow-y: scroll; /* Enables scrolling */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.navbar {
    background-color: #932640 !important;
}

.navbar-brand, .navbar-nav .nav-link {
    color: rgb(245, 245, 245) !important;
}

.hero-section {
    background: url('../img/banner.jpg') no-repeat center center/cover;
    height: 50vh;
    text-align: center;
    color: rgb(245, 245, 245);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.btn-primary {
    background-color: #FFA95D;
    border-color: #FFA95D;
    color: #932640;
}

.btn-primary:hover {
    background-color: #FFA95D;
    border-color: #FFA95D;
}

section {
    padding: 60px 0;
}

.bg-light {
    background-color: #F8F9FA !important;
}

footer {
    background-color: #932640;
    color: rgb(245, 245, 245);
    padding: 15px 0;
}

/* Team Section */

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 200px;
    margin-left: 30px;
    margin-right: 30px;
}

.team-member p {
    text-decoration: underline;
    text-decoration-color: #932640;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.5em;
    font-weight: bold;
}

.team-member h5 {
    font-weight: bold;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
    transition: transform 0.3s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
}

/*noticias*/

.card-date {
    color: #932640;
    border-radius: 5px;
    font-weight: bold;
}
.nosotros-subtitle {
    font-weight: bold;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}