@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #0275d8;
    --secondary-color: #ffb900;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat';
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Montserrat';
    font-weight: 600;
}

.navbar-brand span {
    font-size: 1.2rem;
    color: white;
}

.navbar-brand img {
    max-height: 5rem;
}


.nav-link {
    color: white !important;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem; 
    font-weight: 600; 
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.carousel-item img {
    max-height: 630px;
    max-width: auto;
    object-fit: cover;
}

.zigzag-section {
    padding: 50px 0;
}

.zigzag-section h2 {
    font-weight: 700;
    color: var(--primary-color);
}

.image-text-block, .text-image-block {
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-text-block:hover, .text-image-block:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-text-block img, .text-image-block img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-text-block img:hover, .text-image-block img:hover {
    transform: scale(1.05);
}

#eventos .card-title {
    font-weight: 600;
    color: var(--primary-color);
}

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

#eventos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#redes .container h2{
    color: var(--primary-color);
    font-size: 3rem;
}

/* Tamaño uniforme para los contenedores */
.social-media-frame {
    width: 500px;
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd; /* Opcional: Para agregar un borde */
    border-radius: 10px; /* Opcional: Para bordes redondeados */
    background-color: #f9f9f9; /* Fondo opcional */
}

/* Ajuste de Instagram */
.instagram-embed {
    width: 100%;
    height: 100%;
}

.instagram-media {
    width: 500px !important; /* Forzar el tamaño al mismo que Facebook */
    height: 500px !important;
    overflow: hidden;
}

/* 
footer {
    background-color: var(--primary-color);
    color: white;
    font-weight: 300;
} */

footer {
    background-color: var(--primary-color);
    color: white;
    font-weight: 300;
    font-size: 0.9rem;
}

footer h5 {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

footer h4{
    color: var(--secondary-color);
    font-weight: bold;
}

footer p, footer a {
    color: white;
    font-size: 0.9rem;
}

footer a.footer-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
}

footer a.footer-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

footer .social-icon {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icon:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}
