.welcome-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin-bottom: 30px;
}

.welcome-section h2 {
    font-family: bruumBoldFont;
    color: #744d24;
    margin-bottom: 30px;
    font-size: 35px;
}

.welcome-content {
    max-width: 90%;
    margin: 0 auto;
}

.welcome-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.welcome-content strong {
    color: #744d24;
    font-family: bruumBoldFont;
}

.cta-buttons .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 0;
    font-family: bruumBoldFont;
    transition: all 0.3s ease;
}

.cta-buttons .btn-list {
    background-color: #744d24;
    color: #fff;
}

.cta-buttons .btn-search {
    background-color: #1b75bb;
    color: #fff;
}

.cta-buttons .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .welcome-content {
        max-width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    
    .welcome-section h2 {
        font-size: 28px;
    }
}

.events-calendar {
    padding: 50px 0;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    color: #333;
}

.event-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.event-img {
    height: 200px;
    overflow: hidden;
}

.event-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-date {
    bottom: 0;
    left: 0;
    background-color: #09539f;
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-top-right-radius: 5px;
}

.event-date strong {
    font-size: 1.2rem;
}

.event-title {
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 44px;
}

.rating-box {
    background-color: #4caf50;
    color: white;
}

.btn-primary {
    background-color: #744d24;
    border: none;
}

.btn-primary:hover {
    background-color: #744d24;
}

@media (max-width: 767.98px) {
    .event-img {
        height: 180px;
    }
}