@import url('https://fonts.googleapis.com/css?family=Poppins');

body,
html {
    margin: 0;
    padding: 0;
    /* font-family: Arial, sans-serif; */
    font-family: 'Poppins';
}

/* Navbar */
.bg-dark {
    background-color: #000000 !important;
}

.navbar {
    padding: 0px 20px;
}

.navbar-brand img {
    margin-left: 8vw;
    width: 80px;
}

.navbar-nav .nav-item .nav-link {
    color: #ecf0f1 !important;
    font-weight: bold;
    transition: color 0.3s ease;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ff9900 !important;
}

.navbar-nav .nav-item .btn-warning {
    margin-left: 10px;
    background-color: #ff9900;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-item .btn-warning:hover {
    background-color: #fff;
    color: #ff9900;
}

.navbar-nav .nav-item .fa-search {
    color: #ecf0f1;
    font-size: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item .fa-search:hover {
    color: #ff9900;
}

/* Navbar End */

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 15px;
    display: flex;
    transition: transform 1s ease;
}

.carousel-item {
    min-width: 100%;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Carousel End */

/* Events container */
.container {
    margin-top: 25px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.card-body {
    height: auto;
}

.card-title {
    font-weight: bold;
    color: #333;
}

.card-text {
    color: #555;
}

.price {
    font-size: 1.2em;
    color: #28a745;
    font-weight: bold;
}

/* Events container End */

/* Footer */

footer {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
} 

.footer-logo {
    height: 188px;
}


footer .footer-links,
footer .footer-contact,
footer .footer-social {
    list-style-type: none;
    padding: 0;
}

footer .footer-links li,
footer .footer-contact li {
    margin-bottom: 10px;
}

footer .footer-social a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

footer .footer-links a {
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: none;
    color: #ff9900 !important;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

/* Footer End */

/* Form */
.youtubeBtn {
    position: fixed;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all .3s;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    background: #000;
    padding: 2px 10px;
    border-radius: 5px;
}

.youtubeBtn i {
    font-size: 20px;
    float: left;
}

.youtubeBtn a {
    color: #ff0000;
    animation: youtubeAnim 1000ms linear infinite;
    float: right;
}

.youtubeBtn a:hover {
    color: #c9110f;
    transition: all .3s ease-in-out;
}

.youtubeBtn i:active {
    transform: scale(.9);
    transition: all .3s ease-in-out;
}

.youtubeBtn span {
    font-family: 'Lato';
    font-weight: bold;
    color: #fff;
    display: block;
    font-size: 12px;
    float: right;
    line-height: 20px;
    padding-left: 5px;
}

@keyframes youtubeAnim {

    0%,
    100% {
        color: #c9110f;
    }

    50% {
        color: #ff0000;
    }
}

/* Form End */