/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Enhanced smooth scrolling for main container */
.main-container {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y mandatory;
}

/* Font family rules */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

p, span, div, a, input, button {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
 
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.nav-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-logo img {
    height: 140px;
    width: auto;
    
    transition: filter 0.3s ease;
}




/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.media-buttons .btn:hover {
    background: #21376d!important;
    border-color: #21376d;
    color: #fff;
}
.nav-menu-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #21376d;
    background: rgba(33, 55, 109, 0.05);
    border-color: rgba(33, 55, 109, 0.1);
    transform: translateX(5px);
}

.nav-link.active {
    color: #21376d;
    background: linear-gradient(135deg, rgba(33, 55, 109, 0.1) 0%, rgba(120, 177, 206, 0.1) 100%);
    border-color: rgba(33, 55, 109, 0.2);
    position: relative;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    border-radius: 0 2px 2px 0;
}

.nav-link.active:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(33, 55, 109, 0.15) 0%, rgba(120, 177, 206, 0.15) 100%);
}

.search-section {
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #21376d;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.facebook {
    background: #1877f2;
    color: white;
    border: 2px solid #1877f2;
}

.facebook:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #21376d;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hamburger span {
    width: 21px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Container and Slides */
.main-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.slide {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
}

/* Home Section */
#home {
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    color: white;
    text-align: center;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0px 0px 5px #000;
}

.location, .dates {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0px 0px 5px #000;
}
.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}
.cta-buttons-n {
    display: flex;
    flex-wrap: wrap;
}
.btn-primary {
    background: #21376d;
    color: white;
}

.btn-primary:hover {
    background: #78b1ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.btn-dark {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.btn-dark:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Competition Section */
#competition {
    background: #000;
    color: white;
}

.competition-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.competition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.competition-text {
    text-align: left;
    max-width: 600px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.competition-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #78b1ce;
}

.competition-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 3rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 0.9;
}

.prize-info {
    margin-bottom: 2rem;
}

.prize-info p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Location Section */
#location {
    background: #000;
    color: white;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.location-text {
    text-align: left;
    max-width: 600px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.location-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #78b1ce;
}

.location-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 3rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 0.9;
}

.location-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Section */
#media {
    background: #000;
    color: white;
}

.media-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#media .content {
    z-index: 2;
    position: relative;
}

.media-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.media-text {
    text-align: left;
}

.media-box {
    border: 2px solid white;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.official-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 1rem;
}

.media-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.media-box p {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.media-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-buttons .btn {
    background: white;
    color: #333;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.media-buttons .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.media-logo img {
    max-width: 430px;
    height: auto;
    width: 100%;
}


/* Registration Section */
#registration {
    background: white;
    color: #333;
}


.wwa-logo img {
    max-width: 100%;
    height: auto;

}
a.btn.btn-primary.reeg {
    margin-left: 15px;
}
.registration-info {
    text-align: center;
}
a.nav-link.btn.btn-primary.text-center {
    text-align: center;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white !important;
    border: 2px solid transparent;
    margin-top: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(33, 55, 109, 0.3);
}

a.nav-link.btn.btn-primary.text-center:hover {
    background: linear-gradient(135deg, #1a2d5a 0%, #6ba0b3 100%);
    color: white !important;
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 55, 109, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

a.nav-link.btn.btn-primary.text-center::before {
    display: none;
}
.register-text p:first-child {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
}

.register-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 0.9;
    color: #21376d;
}

.register-text p:last-child {
    font-size: clamp(1.2rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Sponsors Section */




/* Simple Compact Navigation */
.nav-dots {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5rem;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(213 206 206 / 63%);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 8px;
    color: rgb(120 120 120 / 80%);
}
.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}


.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.1);
    border-color: #667eea;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}



.dot:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: #878181;
}
.text-center {
    text-align: center;
}
/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    color: white;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}
#sponsors .content {
    max-width: 1800px;
}





/* Sponsors Section */
#sponsors {
    background: #ffffff;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sponsors-container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.sponsors-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: #1e3c72;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sponsors-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #666;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.sponsors-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* First Row: Featured Logos */
.sponsors-row-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Second Row: Small Logos */
.sponsors-row-small {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    flex: 0 1 auto;
    padding: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-logo {
    max-width: 180px;
    max-height: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 4px 9px #00000059);
}

/* Featured sponsor logos - bigger size */
.sponsor-item.featured .sponsor-logo {
    max-width: 220px;
    max-height: 120px;
}

.sponsor-item.featured {
    grid-column: span 1;
    justify-self: center;
}

/* Regular sponsor logos - slightly smaller */
.sponsor-item:not(.featured) .sponsor-logo {
    width: 160px;
    height: 90px;
}

.sponsor-item:hover .sponsor-logo {
    transform: scale(1.05);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.dot:focus {
    outline: 2px solid #21376d;
    outline-offset: 2px;
}

/* Loading animation */
.slide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* Competition Divisions Page Styles */
.competition-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.breadcrumbs .separator {
    color: #ccc;
}

.breadcrumbs .current {
    color: #4ade80;
    font-weight: 600;
}

.event-info {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.event-date-location {
    margin-bottom: 3rem;
}

.event-date-location p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.welcome-section {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2rem;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.separator .line {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
}

.separator .star {
    color: #3b82f6;
    font-size: 1.5rem;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    margin-top: 2rem;
}

/* Schedule Section - Alternating Layout with Flexbox */
.schedule-section {
    padding: 4rem 2rem;
    background: white;
    width: 100%;
}

.schedule-section:nth-child(even) {
    background: #f8fafc;
}

.schedule-row {
    display: flex;

    gap: 3rem;
    max-width: 1920px;
    margin: 0 auto;
}

/* Left Content, Right Image (Thursday, Saturday) */
.schedule-content-left {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.schedule-image-right {
    flex: 1;
    text-align: center;
}

.schedule-image-right img {
    width: 100%;
    max-width: 80%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}
.registration-text.animate {
    text-align: center;
}
.schedule-image-right img:hover {
    transform: scale(1.02);
}

/* Left Image, Right Content (Friday) */
.schedule-image-left {
    flex: 1;
    text-align: center;
}

.schedule-image-left img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.schedule-image-left img:hover {
    transform: scale(1.02);
}

.schedule-content-right {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.day-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #21376d;
    margin-bottom: 1.5rem;
    text-align: left;
}

.schedule-items {
    margin-bottom: 2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
}
.time-icon {
    font-size: 1rem;
    color: #3b82f6;
    min-width: 20px;
}

.competition-lineup {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.competition-lineup h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #78b1ce;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.competition-lineup ul {
    list-style: none;
    padding: 0;
}

.competition-lineup li {
   
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
}

.competition-lineup li:last-child {
    border-bottom: none;
}

.registration-info-section {
    padding: 4rem 2rem;
    background: white;
    width: 100%;
}

.registration-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-text {
    flex: 1;
}

.registration-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1.5rem;
}

.registration-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.important-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.important-note strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

.important-note p {
    color: #78350f;
    margin: 0;
}

.wwa-logo {
    flex: 1;
    text-align: center;
}

.wwa-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.prizes-section {
    position: relative;
    padding: 4rem 2rem;
    color: white;
    width: 100%;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
}

.prizes-background {
    position: relative;
    background: transparent;
    min-height: 600px;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.prizes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 55, 109, 0.1);
    border-radius: 12px;
}

.prizes-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.prizes-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.prizes-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prize-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prize-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    flex: 1;
}

.prize-card.wakeboard .card-header {
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
}

.prize-card.wakesurf .card-header {
    background: linear-gradient(135deg, #78b1ce 0%, #21376d 100%);
}

.card-header {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.card-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.card-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.card-content {
    padding: 2rem;
    background: white;
}



.prize-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.medal {
    font-size: 1.5rem;
    min-width: 40px;
}

.prize-item span:last-child {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.additional-prizes {
    max-width: 800px;
    margin: 0 auto;
}

.additional-prizes p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* Competition Page Specific Overrides - Fix Double Scrollbar */
.competition-page {
    height: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

/* Enhanced Prize Cards with Better Spacing */
.prize-cards {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prize-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

    flex: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid transparent;
}

.prize-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(33, 55, 109, 0.3);
}

/* Enhanced Card Headers with Better Gradients */
.prize-card.wakeboard .card-header {
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    padding: 2.5rem 2rem;
}

.prize-card.wakesurf .card-header {
    background: linear-gradient(135deg, #78b1ce 0%, #21376d 100%);
    padding: 2.5rem 2rem;
}

/* Enhanced Prize Items with Better Typography */
.prize-item {
    display: flex;
    align-items: center;
    gap: 2rem;

    padding: 1.5rem 0;
    border-bottom: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 -1.5rem 2rem -1.5rem;
    border-bottom: none;
}

.medal {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.prize-item span:last-child {
    color: #21376d;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Information Cards Section */
.info-cards-section {
    position: relative;
    min-height: 600px;
    background: url('../images/TradeMarek_DFWSurftheLake2019-028.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.info-cards-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 55%);
    padding: 4rem 2rem;
}

.info-cards-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.section-title h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card h3 {
    color: #21376d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid #78b1ce;
    padding-bottom: 0.5rem;
}

.info-card p {
    color: #4a5568;
    margin: 0.5rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.info-card li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.info-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #78b1ce;
    font-weight: bold;
}

.map-link {
    display: inline-block;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Lodging Section */
.lodging-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
}

.lodging-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.lodging-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.lodging-description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.lodging-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lodging-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.lodging-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
    text-align: left;
}

.card-content h3 {
    color: #21376d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.card-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-content li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.card-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #78b1ce;
    font-weight: bold;
}

.price-range {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.price {
    background: #f8fafc;
    color: #21376d;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    cursor: default;
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.map-content {
    max-width: 1200px;
    margin: 0 auto;
}

.map-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.map-description {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.map-container {
    margin-top: 3rem;
}

.interactive-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.interactive-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.map-details,
.map-features {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-details h4,
.map-features h4 {
    color: #21376d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid #78b1ce;
    padding-bottom: 0.5rem;
}

.map-details p {
    color: #4a5568;
    margin: 0.75rem 0;
    line-height: 1.6;
}

.map-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.map-features li::before {
    content: none;
}

/* Location & Lodging Page Styles */
.location-page {
    height: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

/* Vendors Page Styles */
.vendors-page {
    height: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

/* Vendor Info Section */
.vendor-info-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.vendor-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.vendor-info-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
}

.vendor-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Current Vendors Section */
.current-vendors-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.current-vendors-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.current-vendors-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vendor-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.vendor-card:hover {
    transform: translateY(-5px);
}

.vendor-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.vendor-info h3 {
    color: #21376d;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.vendor-info p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vendor-category {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.5rem;
    cursor: default;
}

/* Vendor Benefits Section */
.vendor-benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
}

.vendor-benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vendor-benefits-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Vendor Packages Section */
.vendor-packages-section {
    padding: 5rem 2rem;
    background: white;
}

.vendor-packages-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.vendor-packages-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #78b1ce;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #78b1ce 0%, #21376d 100%);
}

.popular-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.package-content li {
    padding: 0.75rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #78b1ce;
    font-weight: bold;
}

/* Vendor Signup Section */
.vendor-signup-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.vendor-signup-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vendor-signup-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.signup-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.vendor-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    color: #21376d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid #78b1ce;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #21376d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #78b1ce;
}

.package-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.package-option:hover {
    border-color: #78b1ce;
}

.package-option input[type="radio"] {
    margin-right: 1rem;
}

.package-option input[type="radio"]:checked + label {
    color: #21376d;
}

.package-option input[type="radio"]:checked {
    accent-color: #78b1ce;
}

.package-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
}

.package-name {
    font-size: 1.1rem;
}

.package-price {
    font-size: 1.2rem;
    color: #78b1ce;
    font-weight: 700;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #78b1ce;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #78b1ce;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
    color: #4a5568;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Registration Page Styles */
.registration-body {
    background: white;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.registration-container {
    padding: 1rem;

}
.registration-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.registration-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.registration-logo a:hover {
    transform: scale(1.05);
}

.registration-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.registration-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #21376d;
}

.registration-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.registration-form .form-group label {
    color: #21376d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.registration-form .form-group input {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #333;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.registration-form .form-group input:focus {
    outline: none;
    border-color: #78b1ce;
    background: #f8fafc;
}

.registration-form .form-group input::placeholder {
    color: #9ca3af;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    flex: 1;
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #21376d;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    margin-top: 0.2rem;
    accent-color: #78b1ce;
    min-width: 16px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    font-weight: 400;
}

.checkbox-group a {
    color: #78b1ce;
    text-decoration: underline;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.registration-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.create-account-btn {
    background: linear-gradient(135deg, #21376d 0%, #78b1ce 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.create-account-btn:hover {
    background: linear-gradient(135deg, #1a2d5a 0%, #6ba0b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 55, 109, 0.4);
}

.login-btn {
    background: transparent;
    color: #21376d;
    border: 2px solid #21376d;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.login-btn:hover {
    border-color: #78b1ce;
    background: #78b1ce;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 55, 109, 0.2);
}

.guest-option {
    text-align: center;
    margin-top: 1.5rem;
}

.guest-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.guest-link:hover {
    color: #21376d;
    text-decoration: underline;
}
/* Guide Section */
.guide-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #21376d;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
}

.guide-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
/* Location & Lodging Page Animations */
.guide-section,
.info-cards-section,
.lodging-section,
.map-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.guide-section.animate,
.info-cards-section.animate,
.lodging-section.animate,
.map-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-card,
.lodging-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.info-card.animate,
.lodging-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-card:nth-child(1).animate { transition-delay: 0.1s; }
.info-card:nth-child(2).animate { transition-delay: 0.2s; }
.info-card:nth-child(3).animate { transition-delay: 0.3s; }
.info-card:nth-child(4).animate { transition-delay: 0.4s; }
.info-card:nth-child(5).animate { transition-delay: 0.5s; }
.info-card:nth-child(6).animate { transition-delay: 0.6s; }

.lodging-card:nth-child(1).animate { transition-delay: 0.1s; }
.lodging-card:nth-child(2).animate { transition-delay: 0.2s; }
.lodging-card:nth-child(3).animate { transition-delay: 0.3s; }

.interactive-map {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.interactive-map.animate {
    opacity: 1;
    transform: scale(1);
}

.map-details,
.map-features {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.map-details.animate,
.map-features.animate {
    opacity: 1;
    transform: translateY(0);
}

.map-details.animate { transition-delay: 0.2s; }
.map-features.animate { transition-delay: 0.3s; }

.section-title,
.guide-content h2,
.guide-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.section-title.animate,
.guide-content h2.animate,
.guide-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title.animate { transition-delay: 0.1s; }
.guide-content h2.animate { transition-delay: 0.2s; }
.guide-description.animate { transition-delay: 0.3s; }

/* Competition Info Page Animations */
.event-info,
.schedule-section,
.registration-info-section,
.prizes-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.event-info.animate,
.schedule-section.animate,
.registration-info-section.animate,
.prizes-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.schedule-row {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.schedule-row.animate {
    opacity: 1;
    transform: translateY(0);
}

.schedule-content-left,
.schedule-content-right,
.schedule-image-left,
.schedule-image-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.schedule-content-left.animate,
.schedule-content-right.animate,
.schedule-image-left.animate,
.schedule-image-right.animate {
    opacity: 1;
    transform: translateY(0);
}

.registration-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.registration-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.prize-cards {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.prize-cards.animate {
    opacity: 1;
    transform: translateY(0);
}

.prize-card {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.prize-card.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for prize cards */
.prize-card:nth-child(1) {
    transition-delay: 0.1s;
}

.prize-card:nth-child(2) {
    transition-delay: 0.2s;
}

/* Staggered animations for schedule content and images */
.schedule-content-left.animate,
.schedule-image-right.animate {
    transition-delay: 0.1s;
}

.schedule-image-left.animate,
.schedule-content-right.animate {
    transition-delay: 0.1s;
}

/* Staggered animations for registration grid elements */
.registration-text.animate {
    transition-delay: 0.1s;
}

.wwa-logo.animate {
    transition-delay: 0.2s;
}

/* Staggered animations for event info elements */
.welcome-section.animate {
    transition-delay: 0.1s;
}

.cta-button.animate {
    transition-delay: 0.2s;
}

/* Staggered animations for prizes section elements */
.prizes-content h2.animate {
    transition-delay: 0.1s;
}

.separator.animate {
    transition-delay: 0.2s;
}

.prizes-description.animate {
    transition-delay: 0.3s;
}

.prize-cards.animate {
    transition-delay: 0.4s;
}

.additional-prizes.animate {
    transition-delay: 0.5s;
}

/* Vendors Page Animations */
.vendor-info-section,
.current-vendors-section,
.vendor-benefits-section,
.vendor-packages-section,
.vendor-signup-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.vendor-info-section.animate,
.current-vendors-section.animate,
.vendor-benefits-section.animate,
.vendor-packages-section.animate,
.vendor-signup-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.vendor-info-content,
.current-vendors-content,
.vendor-benefits-content,
.vendor-packages-content,
.vendor-signup-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vendor-info-content.animate,
.current-vendors-content.animate,
.vendor-benefits-content.animate,
.vendor-packages-content.animate,
.vendor-signup-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.vendors-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vendors-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.vendor-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vendor-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefits-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.benefits-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.benefit-card.animate {
    opacity: 1;
    transform: scale(1);
}

.packages-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.packages-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.package-card {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.package-card.animate {
    opacity: 1;
    transform: scale(1);
}

.vendor-form {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vendor-form.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for vendor cards */
.vendor-card:nth-child(1).animate { transition-delay: 0.1s; }
.vendor-card:nth-child(2).animate { transition-delay: 0.2s; }
.vendor-card:nth-child(3).animate { transition-delay: 0.3s; }
.vendor-card:nth-child(4).animate { transition-delay: 0.4s; }
.vendor-card:nth-child(5).animate { transition-delay: 0.5s; }
.vendor-card:nth-child(6).animate { transition-delay: 0.6s; }

/* Staggered animations for benefit cards */
.benefit-card:nth-child(1).animate { transition-delay: 0.1s; }
.benefit-card:nth-child(2).animate { transition-delay: 0.2s; }
.benefit-card:nth-child(3).animate { transition-delay: 0.3s; }
.benefit-card:nth-child(4).animate { transition-delay: 0.4s; }
.benefit-card:nth-child(5).animate { transition-delay: 0.5s; }
.benefit-card:nth-child(6).animate { transition-delay: 0.6s; }

/* Staggered animations for package cards */
.package-card:nth-child(1).animate { transition-delay: 0.1s; }
.package-card:nth-child(2).animate { transition-delay: 0.2s; }
.package-card:nth-child(3).animate { transition-delay: 0.3s; }

/* Staggered animations for content elements */
.vendor-info-content.animate { transition-delay: 0.1s; }
.current-vendors-content.animate { transition-delay: 0.1s; }
.vendor-benefits-content.animate { transition-delay: 0.1s; }
.vendor-packages-content.animate { transition-delay: 0.1s; }
.vendor-signup-content.animate { transition-delay: 0.1s; }

.vendors-grid.animate { transition-delay: 0.2s; }
.benefits-grid.animate { transition-delay: 0.2s; }
.packages-grid.animate { transition-delay: 0.2s; }
.vendor-form.animate { transition-delay: 0.2s; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 42%);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    margin: 1% auto;
    /* padding: 1rem; */
    border-radius: 15px;
    width: 98%;
    max-width: 1000px;
    text-align: center;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    /* border: 2px solid #007bff; */
    /* box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3); */
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.iframe-container {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.iframe-container iframe {
    display: block;
    border: none;
    background: #ffffff;
    height: 95vh;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: #007bff;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modal-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-buttons .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: white;
}

.modal-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
}

.modal-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #666;
    color: #cccccc;
}

.modal-buttons .btn-secondary:hover {
    border-color: #007bff;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}




/* Responsive Design */

@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .sponsor-logo {
        width: 160px;
        height: 90px;
    }
    .sponsors-row-small {
    grid-template-columns: repeat(4, 1fr);
}
.schedule-row {
    flex-direction: column;
    gap: 2rem;
}

.schedule-content-left,
.schedule-content-right {
    order: 1;
}

.schedule-image-left,
.schedule-image-right {
    order: 2;
}

.registration-grid {
    flex-direction: column;
    gap: 2rem;
}

.prize-cards {
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 991px) {
    .sponsors-row-small {
    grid-template-columns: repeat(3, 1fr);
}
}


@media (max-width: 768px) {
    .nav-logo {
        padding: 6px;
    }
    .cta-buttons-n a.btn.btn-primary {
        margin: 0 0 10px 0;
        width: 48%;
    }
    .cta-buttons-n {
        justify-content: space-between;
        max-width: 500px;
        margin: auto;
    }
    .media-buttons .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .media-logo img {
        max-width: 250px;
    
    }
    .nav-logo img {
        height: 80px;
    }
    

    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .content {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .subtitle {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
    
    .competition-text h3,
    .location-text h3 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .media-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-dots {
        right: 1rem;
    }
    
    .scroll-indicator {
        left: 1rem;
    }
    
    .media-box {
        padding: 2rem;
    }
    
    .sponsors-grid {
        gap: 2rem;
    }
    
    .sponsors-row-featured {
        gap: 1.5rem;
    }
    
    .sponsors-row-small {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .competition-text,
    .location-text {
        max-width: 100%;
        text-align: center;
    }
    
    .media-text {
        max-width: 100%;
        text-align: center;
    }
    
    .registration-info {
        text-align: center;
    }
    
   
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sponsor-item {
        padding: 1rem;
        min-height: 100px;
    }
    
    .sponsor-logo {
        width: 140px;
        height: 80px;
    }
    
    .sponsors-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        margin-bottom: 2rem;
    }
    
    .sponsors-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 2rem;
    }
        .sponsors-row-small {
    grid-template-columns: repeat(2, 1fr);
}
.competition-hero {
    height: 50vh;
    min-height: 400px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.event-info,
.schedule-section,
.registration-info-section,
.prizes-section {
    padding: 2rem 1rem;
}

.schedule-content-left,
.schedule-content-right {
    padding: 1.5rem;
}

.day-title {
    font-size: 18px;
    }
    .info-cards-grid,
    .lodging-options,
    .vendors-grid,
    .benefits-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-section,
    .lodging-section,
    .vendor-info-section,
    .current-vendors-section,
    .vendor-benefits-section,
    .vendor-packages-section,
    .vendor-signup-section {
        padding: 3rem 1rem;
    }
    
    .guide-section {
        padding: 3rem 1rem;
    }
    
    .guide-content h2,
    .map-content h2,
    .lodging-content h2,
    .vendor-info-content h2,
    .current-vendors-content h2,
    .vendor-benefits-content h2,
    .vendor-packages-content h2,
    .vendor-signup-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-title h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .section-title h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vendor-form {
        padding: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    .modal-content {
        /* margin: 5% auto; */
        /* padding: 1rem; */
        width: 90%;
        /* max-width: none; */
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    .modal p {
        font-size: 1rem;
    }
    
    .iframe-container {
        margin: 1rem 0;
    }
    
    .modal-buttons .btn {
        min-width: 180px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location, .dates {
        font-size: 13px;

    }
    .wwa-logo img {

        max-width: 200px;

    }
    .popular-badge {
        font-size: 10px;
    }
    .medal {
        font-size: 2rem;
        min-width: 30px;
    }
    .prize-item {
        gap: 1rem;

    }
    .prize-item span:last-child {
        font-size: 1.2rem;
    }
    .prizes-content {
      
        padding: 1rem;
    }
    .prize-card {
   
        width: 100%;
    }
    .nav-container {
        padding: 0 1rem;
    }
    .competition-text h3 {
        line-height: 1.5;
    }
    .nav-logo {
        padding: 5px;
    }
    
    .nav-logo img {
        height: 80px;
    }
    
    .content {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .competition-text h3,
    .location-text h3,
    .media-box h2,
    .register-text h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .competition-text h2,
    .location-text h2 {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .prize-info p {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .location-text p {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }
    
    .media-box {
        padding: 1.5rem;
    }
    
    .media-buttons .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-dots {
        right: 0.5rem;
    }
    
    .scroll-indicator {
        left: 0.5rem;
    }
    
    .sponsors-grid {
        gap: 1.5rem;
    }
    
    .sponsors-row-featured {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .sponsors-row-small {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .sponsor {
        padding: 1rem;
    }
    
    .sponsor img {
        max-height: 60px;
    }
    .sponsors-grid {
            gap: 1.5rem;
        }
    
    .sponsors-row-featured {
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .sponsors-row-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sponsor-item {
        padding: 1rem;
        min-height: 80px;
    }
    
    .sponsor-item.featured .sponsor-logo {
        width: 120px;
        height: 70px;
    }
    
    .sponsor-item:not(.featured) .sponsor-logo {
        width: 100px;
        height: 60px;
    }
    
    .sponsors-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .sponsors-subtitle {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .sponsors-container {
        padding: 2rem 1rem;
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .welcome-section h2 {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .prizes-content h2 {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }
    
    .breadcrumbs {
        flex-direction: column;
        gap: 0.25rem;
    }
    .schedule-item {
        /* flex-direction: column; */
        /* text-align: center; */
        gap: 0.5rem;
        padding: 7px 0;
    }
    .time-icon {
        min-width: auto;
    }
    .registration-container {
        padding: 1rem;
        max-width: 350px;
    }
    
    .registration-title {
        font-size: 1.5rem;
    }
    
    .registration-form {
        padding: 2rem;
    }
    
    .registration-form .form-group input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .create-account-btn,
    .login-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .registration-buttons {
        flex-direction: column;
    }
    .info-card,
    .lodging-card,
    .vendor-card,
    .benefit-card,
    .package-card {
        padding: 1.5rem;
    }
    
    .info-card h3,
    .lodging-card h3,
    .vendor-card h3,
    .benefit-card h3,
    .package-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p,
    .info-card li,
    .lodging-card p,
    .lodging-card li,
    .vendor-card p,
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-icon {
        font-size: 3rem;
    }
    
    .vendor-form {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 360px) {
    .sponsors-grid {
        gap: 1rem;
    }
    
    .sponsors-row-featured {
        gap: 1rem;
        max-width: 400px;
    }
    
    .sponsors-row-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .sponsor-item {
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .sponsor-item.featured .sponsor-logo {
        width: 100px;
        height: 60px;
    }
    
    .sponsor-item:not(.featured) .sponsor-logo {
        width: 80px;
        height: 50px;
    }
    
    .sponsors-title {
        font-size: clamp(1.8rem, 4.5vw, 2.2rem);
        margin-bottom: 1.5rem;
    }
    
    .sponsors-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
    }
    .nav-logo img {
        height: 80px;
    }
    
    .main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.3rem);
    }
    
    .competition-text h3,
    .location-text h3 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Ensure sponsors are fully responsive on very small screens */
    .sponsors-row-featured {
        gap: 1rem;
        justify-content: center;
        max-width: 350px;
    }
    

    
    .sponsor-item.featured .sponsor-logo {
        width: 120px;
        height: 70px;
    }

    
    .content {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .sponsors-grid {
        gap: 0.8rem;
    }
    
    .sponsors-row-featured {
        gap: 0.8rem;
        max-width: 300px;
    }
    
    .sponsors-row-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .sponsor-item {
        padding: 0.6rem;
        min-height: 60px;
    }
    
    .sponsor-item.featured .sponsor-logo {
        width: 80px;
        height: 50px;
    }
    
    .sponsor-item:not(.featured) .sponsor-logo {
        width: 65px;
        height: 40px;
    }
    
    .sponsors-title {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .sponsors-subtitle {
        font-size: clamp(0.7rem, 1.8vw, 0.9rem);
        margin-bottom: 1rem;
    }
    
    .sponsors-container {
        padding: 1.5rem 0.8rem;
    }
}

/* Landscape orientation on small screens */
@media (max-height: 500px) and (orientation: landscape) {
    .slide {
        height: 100vh;
        min-height: 500px;
    }
    
    .main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .competition-text h3,
    .location-text h3 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
    }
    
    /* Sponsors section landscape adjustments */
    .sponsors-container {
        padding: 2rem 1rem;
    }
    
    .sponsors-grid {
        gap: 1.5rem;
    }
    
    .sponsors-row-featured {
        gap: 1.5rem;
    }
    
    .sponsors-row-small {
        gap: 1rem;
    }
    
    .sponsor-item.featured .sponsor-logo {
        width: 140px;
        height: 80px;
    }
    
    .sponsor-item:not(.featured) .sponsor-logo {
        width: 110px;
        height: 65px;
    }
    
    .nav-dots {
        right: 0.5rem;
    }
    
    .scroll-indicator {
        left: 0.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img,
    .sponsor img,
    .media-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

