
body {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
}
h1, h2, h3 {
    font-weight: 700;
}
strong {
    font-weight: 600;
}

.btn-primary {
    background-color: #ab0a3d !important;
    border-color: #ab0a3d !important;
}

.btn-primary:hover {
    background-color: #dc0d4f !important;
    border-color: #dc0d4f !important;
}

.btn-primary:active,
.btn-primary.active {
    background-color: #440412 !important;
    border-color: #440412 !important;
}

.btn-secondary {
    background-color: #b68400 !important;
    border-color: #b68400 !important;
}

.btn-secondary:hover {
    background-color: #b0aba1 !important;
    border-color: #440412 !important;
}

.btn-secondary:active,
.btn-secondary.active {
    background-color: #b68400 !important;
    border-color: #b68400 !important;
}

/* Backgrounds */
.bg-primary {
    background-color: #ab0a3d !important;
}

.bg-secondary {
    background-color: #b68400 !important;
}

.bg-imove {
    background-color: #B0ABA1;
}

.bg-imove-2 {
    background-color: #3D3935;
}

/* Borders */
.border-primary {
    border-color: #3498db !important;
}

.border-secondary {
    border-color: #b68400 !important;
}

/* Links */
a {
    color: #ab0a3d;
}

a:hover {
    color: #440412;
}

.text-primary {
    color: #ab0a3d !important;
}
.text-secondary {
    color: #b68400 !important;
}
/* FOOTER */
.footer {
    border-top: 1px solid #e9ecef;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    min-height: 80px;
}

.logo-item {
    height: 200px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* .logo-item:hover {
    transform: scale(1.05);
} */

.footer-content {
    color: #6c757d;
    font-size: 14px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #495057;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo-container {
        gap: 20px;
    }

    .logo-item {
        height: 90px;
    }

    .footer-links a {
        margin: 0 10px;
        display: inline-block;
        margin-bottom: 5px;
    }
}

.navbar .nav-link {
    font-weight: bold;
}

.nav-link.active {
    color: #ab0a3d !important;                           
}

/* HEADER */
.header-logo-container {
    width: 350px;
    height: 80px;
    overflow: hidden;
    background-color: white; 
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}

.header-logo-2 {
    width: 60%;
    height: 112%;
    object-fit: cover; 
    object-position: center; 
}

/* Cards */
.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.card-image-top {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.custom-card {
    background: #fff;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.custom-card:hover::before {
    transform: translateX(0);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .custom-card:hover {
        transform: none;
    }
}
