* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    background-color: #f0f4f8; 
    color: #1a202c; 
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(240,244,248,0.8), rgba(240,244,248,0.8)), url("TCG.jpg");
}

/* .hero-background-image {
    background-image: url('TCG.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* .hero-background-image {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('TCG.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* .hero-background-image {
    background-image: url(TCG-cropped.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(90%);
    background-attachment: fixed;
} */

.hero-background-image {
    background-image: linear-gradient(rgba(240, 136, 57, 0.5), rgba(251, 192, 147, 0.2)), url('TCG-cropped.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

h1{color: #2a90e1;}

.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%); /* Start off-screen */
}

.mobile-menu.active {
    transform: translateX(0); /* Slide in */
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.ticket-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-scroll {
    width: 100%;
    overflow: hidden;
}

.sponsor-scroll-inner {
    display: flex;
    width: 50%;
    animation: scroll 10s linear infinite;
}

.sponsor-scroll-inner:hover {
    animation-play-state: paused;
}

.swiper-button-next, .swiper-button-prev {
    color: #f99d1b !important; 
}

section:not(:first-child), footer {
    padding-left: 20px; /* Adjust the value as needed */
    padding-right: 20px; /* Adjust the value as needed */
}