.body{
    position: relative;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: absolute; 
    top: 0;
    width: 100%;
    z-index: 10;
}

header .logo img {
    width: 350px;
    margin: -50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5em;
}
nav a.indicator {
    font-weight: bold;
}

nav a {
    color: #051661;
    text-decoration: none;
    font-size: 1.2em;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.events-section {
    padding: 4em 2em;
    text-align: center;
    background-color: #fdd1d1;
    padding-bottom: 20em;
}

.events-section h1 {
    font-size: 5em;
    color: #051661;
    margin-bottom: 0.5em;
    font-weight: bold;
    text-align: left;
    margin-left: .3em; 
}

.carousel {
    overflow-x: hidden; 
    background-color: rgba(255, 255, 255, 0.6); 
    width: 120vw;
    padding-left: 4em;
    padding-top: 3em;
    padding-bottom: 3em;
    display: flex;
    justify-content: space-around;
    margin: 2em -2em;
    position: relative;
}

.carousel-item {
    padding: 1.5em;
    width: 23%;
    border-radius: 10px;
    text-align: left;
    flex-shrink: 0; 
    z-index: 1; 
}

.carousel-item img {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    margin-bottom: 1em;
}

.carousel-item h3 {
    font-size: 1.5em;
    color: #051661;
    margin-bottom: 0.5em;
}

.carousel-item p {
    font-size: 1em;
    margin-bottom: 1em;
    color: #333;
}

.carousel-item:last-child {
    margin-right: calc(-50vw + 100px); 
}

.learn-more {
    background-color: #051661;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

.learn-more:hover {
    background-color: #333;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; 
}

.carousel-arrow img {
    width: 20px;
    height: 20px;
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

.footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
    color:#051661;
    position: absolute; 
    bottom: 0; 
    padding-top:10rem;
    width: 100%; 
    height: 300px; 
    z-index: 100; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer-content {
    max-width: 1800px; 
    margin: 0 auto;
    display: flex; 
    justify-content: space-between;
    width: 100%;
}

.footer-text {
    flex: 1; 
    text-align: left; 
    font-size: 16pt;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo {
    width: 350px; 
    height: auto; 
}
