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

@font-face {
    font-family: 'PoppinsRegular';
    src: url('./assets/fonts/Poppins/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsSemiBold';
    src: url('./assets/fonts/Poppins/Poppins-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsBold';
    src: url('./assets/fonts/Poppins/Poppins-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsExtraBold';
    src: url('./assets/fonts/Poppins/Poppins-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsBlack';
    src: url('./assets/fonts/Poppins/Poppins-Black.ttf');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsLight';
    src: url('./assets/fonts/Poppins/Poppins-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsMedium';
    src: url('./assets/fonts/Poppins/Poppins-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceGrotesk';
    src: url('./assets/fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #363636;
}

/* Glass Effect */
.glass-effect {
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* border-radius: 16px; */
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); */
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Styles */
.logo-img {
    height: 32px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: none;
    padding: 8px;
    border-radius: 9999px;
    background-color: rgba(31, 31, 31, 0.25);
    border: 1px solid rgba(217, 217, 217, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    gap: 8px;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    color: white;
    font-size: 14px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn-active {
    background-color: blue;
}

.nav-btn:hover:not(.nav-btn-active) {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgb(55, 65, 81);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
}

.mobile-nav-btn {
    padding: 12px 16px;
    border-radius: 9999px;
    color: white;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgb(75, 85, 99);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-nav-btn-active {
    background-color: blue;
    border-color: blue;
}

.mobile-nav-btn:hover:not(.mobile-nav-btn-active) {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (min-width: 640px) {
    .navbar {
        padding: 12px 24px;
    }
}

@media (min-width: 768px) {
    .navbar {
        padding: 12px 32px;
    }

    .logo-img {
        height: 48px;
    }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .navbar {
        padding: 56px 72px;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-btn {
        padding: 8px 44px;
        font-size: 16px;
    }
}


.hero {
    position: relative;
    height: 140vh;
    width: 100%;
    background: url('./assets/images/bg-image1.jpg') no-repeat center center/cover;
}

.hero-content {
    position: absolute;
    top: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0 72px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-text h1 {
    font-family: 'PoppinsBold', sans-serif;
    font-size: 100px;
    line-height: 1.2;
}

.hero-text p {
    margin-top: 10px;
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 32px;
}

.hero-text b {
    margin-top: 10px;
    font-family: 'PoppinsSemiBold', sans-serif;
    font-size: 32px;
}

/* Event Info Styles */
.event-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-heading {
    font-family: 'PoppinsBold', sans-serif;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.info-detail {
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 20px;
    color: white;
}

/* Countdown section styles */
.countdown-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.countdown-text {
    color: white;
    font-size: 14px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: 'SpaceGrotesk', sans-serif;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    color: white;
    font-size: 48px;
}

.countdown-separator {
    color: white;
    font-size: 48px;
}

.countdown-label {
    color: white;
    font-size: 12px;
}

.agenda-button {
    background-color: blue;
    border-radius: 9999px;
    padding: 8px 24px;
    color: white;
    font-family: 'PoppinsBold', sans-serif;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

/* Responsive styles for countdown */
@media (min-width: 640px) {
    .countdown-text {
        font-size: 16px;
    }

    .countdown-timer {
        gap: 16px;
    }

    .countdown-number {
        font-size: 80px;
    }

    .countdown-separator {
        font-size: 80px;
    }

    .countdown-label {
        font-size: 14px;
    }

    .agenda-button {
        padding: 8px 32px;
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .countdown-number {
        font-size: 96px;
    }

    .countdown-separator {
        font-size: 96px;
    }
}

@media (min-width: 1024px) {
    .countdown-container {
        width: auto;
    }

    .countdown-number {
        font-size: 112px;
    }

    .countdown-separator {
        font-size: 112px;
    }

    .agenda-button {
        padding: 8px 40px;
    }
}

@media (min-width: 1280px) {
    .countdown-number {
        font-size: 90px;
    }

    .countdown-separator {
        font-size: 90px;
    }
}

/* Hero Section Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        top: 15%;
        padding: 0 16px;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 48px;
        text-align: center;
    }
    
    .hero-text p {
        font-size: 18px;
        text-align: center;
    }
    
    .hero-text b {
        font-size: 18px;
        text-align: center;
    }
    
    .info-heading {
        font-size: 18px;
        text-align: center;
    }
    
    .info-detail {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-text b {
        font-size: 16px;
    }
    
    .info-heading {
        font-size: 16px;
    }
    
    .info-detail {
        font-size: 14px;
    }
}

.about {
    height: 140vh;
    background: url('./assets/images/bg-image2.jpg') no-repeat center center/cover;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

}

.about-content h2 {
    font-family: 'PoppinsExtraBold', sans-serif;
    font-size: 54px;
    color: white;
    text-align: center;
}

/* #01040D */

.about-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.about-text h1 {
    font-size: 85px;
    font-family: 'PoppinsBold', sans-serif;
    color: white;
    text-align: center;
}

.about-text-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 20px;
    color: white;
    text-align: center;
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 20px;
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
    .about {
        height: auto;
        padding: 40px 16px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-text h1 {
        font-size: 48px;
    }
    
    .about-text-content {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 24px;
    }
    
    .about-text h1 {
        font-size: 36px;
    }
    
    .about-text-content {
        font-size: 14px;
        padding: 16px;
    }
}

.award-categories{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap:80px;
    padding: 0 72px;

}
.award-categories h1{
    font-family: 'PoppinsSemiBold', sans-serif;
    font-size: 85px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.hive {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:16px;
}
body{
    background-color: #01040D;
}

.hive-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hive-col img{
    height: 220px;
}

/* Award Categories Responsive Styles */
@media (max-width: 768px) {
    .award-categories {
        padding: 40px 16px;
        gap: 40px;
    }
    
    .award-categories h1 {
        font-size: 48px;
    }
    
    .hive {
        flex-direction: column;
        gap: 24px;
    }
    
    .hive-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .hive-col img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .award-categories h1 {
        font-size: 36px;
    }
    
    .hive-col img {
        height: 100px;
    }
}

.winner-selection{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 36px 72px;
    position: relative;
    overflow: hidden;
}
.winner-selection-content{
    width: 40%;
    position: relative;
    z-index: 1;
}

.winner-selection h1{
    font-family: 'PoppinsSemiBold', sans-serif;
    font-size: 85px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 180px;
}
.winner-selection p {
    padding: 20px;
    color: white;
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 28px;
    text-align: left;
}
.wave{
    opacity: 0.3;
}
.wave-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
}


.award-illustration{
    height: 700px;
    margin-left: 300px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}

/* Winner Selection Responsive Styles */
@media (max-width: 768px) {
    .winner-selection {
        flex-direction: column;
        padding: 40px 16px;
        text-align: center;
    }
    
    .winner-selection-content {
        width: 100%;
    }
    
    .winner-selection h1 {
        font-size: 48px;
        margin-top: 0;
    }
    
    .winner-selection p {
        font-size: 18px;
        text-align: center;
    }
    
    .award-illustration {
        height: 400px;
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .winner-selection h1 {
        font-size: 36px;
    }
    
    .winner-selection p {
        font-size: 16px;
    }
    
    .award-illustration {
        height: 300px;
    }
}

/* Agenda Section Styles */
#agenda {
    /* min-height: 100vh; */
    width: 100%;
    position: relative;
    /* padding: 16px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 72px;
    /* background-color: red; */
}

#agenda h1 {
    font-size: 2.25rem;
    color: white;
    font-family: 'PoppinsSemiBold', sans-serif;
    line-height: 1.25;
}

.agenda-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    
    gap: 32px;
}

.agenda-image-container {
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    width: 410px;
}

.agenda-image-container img {
    width: 100%;
    height: auto;
}

.agenda-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
}

.agenda-details b {
    color: blue;
    font-size: 1.125rem;
}

.agenda-details p {
    color: black;
    font-size: 0.875rem;
}

/* Schedule Styles */
.schedule {
    width: 592px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-name {
    color: white;
    font-family: 'PoppinsMedium', sans-serif;
    font-size: 16px;
    flex: 1;
}

.time {
    color: white;
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 14px;
    margin-right: 20px;
}

.plus {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Agenda Section Responsive Styles */
@media (max-width: 768px) {
    #agenda {
        padding: 40px 16px;
    }
    
    #agenda h1 {
        font-size: 48px;
    }
    
    .agenda-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .agenda-image-container {
        width: 100%;
        max-width: 400px;
        padding: 16px;
    }
    
    .schedule {
        width: 100%;
        max-width: 600px;
    }
    
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
        gap: 8px;
    }
    
    .event-name {
        font-size: 14px;
        order: 1;
    }
    
    .time {
        font-size: 12px;
        margin-right: 0;
        order: 2;
        color: #ccc;
    }
    
    .plus {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        order: 3;
    }
    
    .schedule-row {
        position: relative;
    }
}

@media (max-width: 480px) {
    #agenda h1 {
        font-size: 36px;
    }
    
    .agenda-details b {
        font-size: 16px;
    }
    
    .agenda-details p {
        font-size: 12px;
    }
    
    .event-name {
        font-size: 13px;
    }
    
    .time {
        font-size: 11px;
    }
}

@media (min-width: 640px) {
    #agenda {
        padding: 24px 72px;
    }
    
    #agenda h1 {
        font-size: 3rem;
    }
    
    .agenda-image-container {
        padding: 24px;
    }
    
    .agenda-details b {
        font-size: 1.25rem;
    }
    
    .agenda-details p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    #agenda {
        padding: 32px 72px;
    }
    
    #agenda h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    #agenda {
        padding: 40px 72px;
        gap: 40px;
    }
    
    #agenda h1 {
        font-size: 4.5rem;
    }
    
    .agenda-container {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .agenda-image-container {
        width: auto;
        border-radius: 0;
        padding: 16px 16px 40px 16px;
    }
    
    .agenda-details {
        padding-top: 32px;
    }
}

@media (min-width: 1280px) {
    #agenda h1 {
        font-size: 6rem;
    }
}

/* Sponsors Section Styles */
#sponsors {
    min-height: 110vh;
    width: 100%;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    position: relative;
    overflow: hidden;
    /* background-color: red; */
}

#sponsors h1 {
    font-size: 2.25rem;
    color: white;
    font-family: 'PoppinsSemiBold', sans-serif;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.sponsors-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.sponsors-container img {
    height: 4rem;
    max-width: 120px;
}

.sponsors-text {
    color: white;
    font-family: 'PoppinsRegular', sans-serif;
    font-size: 1.125rem;
    margin-left: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sponsors-text b {
    font-family: 'PoppinsSemiBold', sans-serif;
}

/* Contact Section Styles */
#contact {
    min-height: 100vh;
    width: 100%;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

#contact h1 {
    font-size: 2.25rem;
    color: white;
    font-family: 'PoppinsSemiBold', sans-serif;
    line-height: 1.25;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item img {
    height: 24px;
    width: 24px;
}

.contact-item p {
    color: white;
    font-size: 1.25rem;
    font-family: 'PoppinsRegular', sans-serif;
}

.contact-button {
    background-color: white;
    border-radius: 9999px;
    padding: 12px 24px;
    color: blue;
    font-family: 'PoppinsBold', sans-serif;
    margin-top: 40px;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}

.back-to-top {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: blue;
    padding: 8px 16px;
    font-family: 'PoppinsMedium', sans-serif;
    z-index: 10;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.back-to-top-content p {
    font-size: 1.125rem;
    font-family: 'PoppinsMedium', sans-serif;
}

.back-to-top-content img {
    height: 24px;
    width: 24px;
}

/* Contact Section Responsive Styles */
@media (max-width: 768px) {
    #contact {
        padding: 40px 16px;
    }
    
    #contact h1 {
        font-size: 48px;
    }
    
    .contact-item p {
        font-size: 18px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 30px;
    }
    
    .back-to-top {
        padding: 12px 16px;
        height: 60px;
    }
    
    .back-to-top-content p {
        font-size: 16px;
    }
    
    .back-to-top-content img {
        height: 20px;
        width: 20px;
    }
}

@media (max-width: 480px) {
    #contact h1 {
        font-size: 36px;
    }
    
    .contact-item p {
        font-size: 16px;
    }
    
    .contact-item img {
        height: 20px;
        width: 20px;
    }
    
    .contact-button {
        font-size: 12px;
    }
    
    .back-to-top-content p {
        font-size: 14px;
    }
}

/* Responsive Styles for Sponsors */
@media (max-width: 768px) {
    #sponsors {
        padding: 20px 16px;
        min-height: 80vh;
        justify-content: center;
    }
    
    #sponsors h1 {
        font-size: 48px;
    }
    
    .sponsors-text {
        font-size: 16px;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    #sponsors h1 {
        font-size: 36px;
    }
    
    .sponsors-text {
        font-size: 14px;
    }
    
    .sponsors-container img {
        height: 3rem;
        max-width: 100px;
    }
}

@media (min-width: 640px) {
    #sponsors {
        padding: 24px 72px;
    }
    
    #sponsors h1 {
        font-size: 3rem;
    }
    
    .sponsors-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
        padding: 24px;
    }
    
    .sponsors-container img {
        height: 5rem;
        max-width: 150px;
    }
    
    .sponsors-text {
        font-size: 1.25rem;
        margin-left: 16px;
        text-align: left;
    }
    
    .contact-item img {
        height: 32px;
        width: 32px;
    }
    
    .contact-item p {
        font-size: 1.5rem;
    }
    
    .contact-button {
        padding: 12px 32px;
        font-size: 1rem;
    }
    
    .back-to-top {
        padding: 16px 32px;
        height: 105px;
        justify-content: flex-end;
    }
    
    .back-to-top-content {
        gap: 32px;
    }
    
    .back-to-top-content p {
        font-size: 1.25rem;
    }
    
    .back-to-top-content img {
        height: 32px;
        width: 32px;
    }
}

@media (min-width: 768px) {
    #sponsors {
        padding: 32px 72px;
    }
    
    #sponsors h1 {
        font-size: 3.75rem;
    }
    
    .sponsors-container img {
        height: 6rem;
    }
    
    .sponsors-text {
        font-size: 1.5rem;
    }
    
    #contact {
        padding: 32px 72px;
    }
    
    #contact h1 {
        font-size: 3.75rem;
    }
    
    .contact-item p {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    #sponsors {
        padding: 40px 72px;
        gap: 40px;
    }
    
    #sponsors h1 {
        font-size: 4.5rem;
    }
    
    .sponsors-container {
        gap: 32px;
        padding: 0;
    }
    
    .sponsors-container img {
        height: auto;
        max-width: none;
    }
    
    .sponsors-text {
        font-size: 1.875rem;
        margin-left: 40px;
    }
    
    #contact {
        padding: 40px 72px;
        gap: 40px;
    }
    
    #contact h1 {
        font-size: 4.5rem;
    }
    
    .contact-content {
        margin-top: 80px;
    }
    
    .contact-button {
        padding: 16px 44px;
        margin-top: 80px;
    }
    
    .back-to-top {
        padding: 16px 72px;
    }
    
    .back-to-top-content p {
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px) {
    #sponsors h1 {
        font-size: 6rem;
    }
    
    .sponsors-text {
        font-size: 2.25rem;
    }
    
    #contact {
        padding: 40px 72px;
    }
    
    #contact h1 {
        font-size: 6rem;
    }
}

.wave-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
}