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

body {
    font-family: 'Epilogue', sans-serif;
    color: #000;
    overflow-x: hidden;
    background: #fff;
}

/* Header & Navigation */
header {
    background-color: #FFF;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    padding: 0 100px;
}

.logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-links a.active::after, 
.nav-links a[href="#about"]:target::after, 
.nav-links a[href="#gallery"]:target::after, 
.nav-links a[href="#contact"]:target::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Banner */
.banner {
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    width: 100vw;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.about article {
    max-width: 1043px;
    z-index: 2;
}

.about h1 {
    font-size: 36px;
    font-weight: 600;
    color: rgba(27, 20, 100, 1);
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    color: rgba(0, 0, 0, 1);
    max-width: 819px;
    margin-bottom: 20px;
}

.about-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}

.about-image img {
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

/* Gallery */
.gallery {
    background: black;
    text-align: center;
    padding: 50px 100px;
}

.gallery h1 {
    font-size: 64px;
    font-weight: 600;
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-grid img {
    width: calc(33.333% - 20px);
    border-radius: 5px;
    object-fit: cover;
}

/* Sponsors */
.sponsors {
    text-align: center;
    padding: 50px 100px;
    background-color: #fff;
}

.sponsors h1 {
    font-size: 32px;
    font-weight: 600;
}

.sponsors-slide img {
    width: 150px;
    height: auto;
    margin: 10px;
}

/* Footer */
footer {
    background: #000;
    text-align: left;
    padding: 40px 100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

footer p {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}

footer a {
    color: #FF6467;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.footer-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.footer-icons a {
    width: 55px;
    height: 55px;
    background-color: #FF6467;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-icons a:hover {
    transform: scale(1.1);
}

.footer-icons img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}
