html {
  font-size: 14px; position: relative;
  min-height: 100%;
}
body {
    font-family: 'Roboto', sans-serif;
     
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



.content-wrapper {
   background-color: rgb(195, 200, 209);
     padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
}

.card-title {
    position: relative;
  /*  background-size: cover;*/
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    
    margin:0;
    
    /*color: white;  Ensure the text is visible */
}

.text-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.signature {
    margin-top: 20px;
    font-weight: 500;
}

.fade-in-text {
    text-align: right;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.responsive-title {
    font-size: 3rem;
}

.principal-title {
    font-size: 1rem;
}

/* Media queries for responsive text */
@media (max-width: 1200px) {
    .responsive-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .responsive-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .responsive-title {
        font-size: 1.5rem;
    }

    .principal-title {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .responsive-title {
        font-size: 1.25rem;
    }

    .principal-title {
        font-size: 0.75rem;
    }
}
 
 


            .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInEffect 1s ease-out forwards;
            }

            @keyframes fadeInEffect {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
            }



.scroll-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.scroll-banner {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px;
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE */
}

    .scroll-banner::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari */
    }

.event-card {
    flex: 0 0 auto;
   
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    
  
}

.event-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    
}

.event-info {
    margin-top: 0;
}

.scroll-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
}

#scroll-left {
    left: 10px;
}

#scroll-right {
    right: 10px;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}




.animated-bar {
    background: linear-gradient(120deg, #f6d365, #fda085, #f6d365);
    background-size: 200% 100%;
    animation: bg-move 3s ease-in-out infinite;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

@keyframes bg-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
 