* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
/* Add Font Awesome for social icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.top-bar {
    background-color: #f8f8f8;
    padding: 10px 0;
    font-size: 14px;
}

/* Logo styles */
.navbar-brand img {
    width: 5em; /* Further reduced to make it smaller */
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-donar {
    background-color: #f4b223;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-donar:hover {
    background-color: #e0a31c;
}

header {
    background-color: #1e2f6e;
    padding: 15px 0;
}

/* Navigation styles - simplified without IDs */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.navbar-nav .nav-item .nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-item .nav-link:hover {
    color: #f4b223;
}
/* Replace ID-based navigation with class-based */
.nav-section {
    padding: 2rem 0;
}
.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}
/* Hero section styles */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh !important; /* Full screen height */
    width: 100% !important; /* Full screen width */
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

/* Remove the margin-top from main to allow full-screen hero */
main {
    margin-top: 0;
    padding: 0;
}

/* Adjust other sections to have proper padding */
section:not(.hero-section) {
    padding: 4rem 2rem;
}
.miembro {
    text-align: center;
}

.miembro img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 1rem;
}
/* Footer styles */
footer {
    background-color: #1e2f6e;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    position: relative; /* Changed from fixed to relative */
    width: 100%;
    bottom: auto; /* Remove fixed positioning */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f4b223;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-footer a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-footer a:hover {
    background-color: #f4b223;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f4b223;
    padding-left: 5px;
}
/* Footer styles - updated copyright year */
.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.copyright .year {
    font-weight: bold;
}

/* Location section - simplified selector without ID */
.location-section .card-body {
    padding: 1.5rem;
}

.location-section .contact-info li {
    margin-bottom: 1.25rem;
}

.location-section .contact-info li:last-child {
    margin-bottom: 0;
}

.location-section .contact-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-section .contact-info p {
    font-size: 0.95rem;
    word-wrap: break-word;
    margin-left: 0;
    padding-right: 10px;
}

.location-section .icon-box {
    min-width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.location-section .map-container {
    margin-right: 15px;
}

@media (max-width: 992px) {
    .location-section .map-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}