:root {
    --font-lato: 'Lato', sans-serif;
    --font-ubuntu-sans: 'Ubuntu Sans', sans-serif;
    --brand-color: #AE8E46;
}

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

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

 body {
    width: 100%;
    height: 100%;
    background-color: #000000;
}



/* hero section  */

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 2rem;
    background-color: #EFEFEF;
    position: relative;
}

@media (min-width: 640px) {
    .hero-section {
        height: 250px;
    }
}

.logo {
    width: 100px;
    aspect-ratio: 26/9;
}

.logo img {
    width: 100%;
    height: 100%;
}

.hero-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    
}

.hero-title {
    font-family: var(--font-lato);
    font-size: 42px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    position: relative;
}
.hero-title:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(239, 239, 239, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header.visible {
    top: 0;
}

.sticky-logo {
    width: 70px;
    aspect-ratio: 26/9;
}

.sticky-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticky-header .hamburger-btn {
    position: relative;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
}

/* Hamburger Menu */
.hamburger-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

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

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

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

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 100px 40px 40px;
}

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

.menu-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close-btn.visible {
    display: flex;
}

.menu-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-color);
    color: var(--brand-color);
    transform: rotate(90deg);
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav > li {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    transition: color 0.3s ease;
}

.menu-nav a:hover {
    color: var(--brand-color);
}

/* Submenu Styles */
.menu-item-with-submenu {
    position: relative;
}

.menu-item-with-submenu > a {
    display: block;
    cursor: default;
    pointer-events: none;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow: visible;
    margin-top: 1.5rem;
    padding-left: 0.5rem;
    background: linear-gradient(135deg, rgba(174, 142, 70, 0.1), rgba(174, 142, 70, 0.05));
    border-left: 3px solid var(--brand-color);
    border-radius: 4px;
    padding: 1rem 0 1rem 1.5rem;
}

.submenu li {
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.submenu a {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.submenu a:before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
    color: var(--brand-color);
}

.submenu a:hover {
    color: var(--brand-color);
    padding-left: 2rem;
}

.submenu a:hover:before {
    opacity: 1;
    left: 0.5rem;
}


/* registration controller  */
.solo-registration-section {
    width: 100%;
    height: 100%;
}
.solo-registration-section .banner {
    width: 100%;
    height: 240px;
    position: relative;
}
.solo-registration-section .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solo-registration-section .banner:before {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 100%;
    color: #fff;
}

.solo-registration-section .banner:nth-of-type(1):before {
    content: '01';
}

.solo-registration-section .banner:nth-of-type(3):before {
    content: '02';
}

.solo-registration-section .banner:nth-of-type(7):before {
    content: '04';
}

.solo-registration-section .banner:nth-of-type(5):before {
    content: '03';
}
.solo-registration-section .registration-content {
    width: 100%;
    height: auto;
    background-color: black;
    padding: 20px;
}
.solo-registration-section .registration-content .header {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    position: relative;
}
.solo-registration-section .registration-content .header::before{
    content: '';
    position: absolute;
    bottom: 0px;
    right: -20px;
    width: 106%;
    height: 2px;
    background-color: var(--brand-color);
}
.solo-registration-section .registration-content .header h3 {
    font-family: var(--font-lato);
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 100%;
    color: #fff;
    padding: 8px 0;
}
.solo-registration-section .registration-content .header h5 {
    font-family: var(--font-ubuntu-sans);
    font-size: 20px;
    font-weight: semibold;
    text-transform: capitalize;
    line-height: 100%;
    color: #fff;
    padding: 8px 0;
}
.solo-registration-section .registration-content .registration-content-text p {
    font-family: var(--font-ubuntu-sans);
    font-size: 16px;
    font-weight: semibold;
    text-transform: capitalize;
    line-height: 1.3;
    color: #fff;
    padding: 16px 0;
}
.solo-registration-section .registration-content .registration-content-text ul {
    font-family: var(--font-ubuntu-sans);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 100%;
    color: #fff;
    padding: 8px 16px;
}
.solo-registration-section .registration-content .registration-content-text ul li{
    padding: 8px 0;
}
.solo-registration-section .registration-content .registration-content-button {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solo-registration-section .registration-content-button button {
    width: 100%;
    font-family: var(--font-ubuntu-sans);
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 100%;
    color: #fff;
    padding: 20px 0;
    background-color: var(--brand-color);
    border: none;
    cursor: pointer;
}

/* events calendar section  */
.events-calendar-section {
    width: 100%;
    height: 100%;
    background-color: cornflowerblue;
}
.events-calendar-section .banner {
    width: 100%;
    height: 150px;
    position: relative;
}
.events-calendar-section .banner .banner-image {
    background-color: cadetblue;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.events-calendar-section .banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.events-calendar-section .banner .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}
.events-calendar-section .banner:nth-child(2) .banner-content {
    align-items: flex-end;
}
.events-calendar-section .banner .banner-content h3 {
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 100%;
    color: #fff;
    padding: 8px 0;
    z-index: 1;
}







/* ######## Footer Section ######## */
.footer-section {
    width: 100%;
    height: 527px;
    position: relative;
    padding-bottom: 50px;
}

.footer-background {
    width: 100%;
    height: 527px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

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

.footer-cta-container {
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 24px;
    position: relative;
}

.footer-cta-container::before {
    content: '';
    position: absolute;
    top: 130px;
    right: 0;
    width: 95%;
    height: 2px;
    background-color: white;
}

.footer-cta-wrapper {
    height: auto;
    margin: 0 auto;
}

.footer-registration-button {
    font-size: 24px;
    color: white;
    background-color: rgba(255, 255, 255, 0.3);
    text-transform: capitalize;
    padding: 10px 50px;
    cursor: pointer;
    border: none;
}

.footer-content {
    width: 80%;
    margin: 0 auto;
    height: auto;
    padding-top: 56px;
    padding-bottom: 24px;
}

.footer-menu {
    width: 100%;
    height: auto;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.footer-social {
width: 100%;
height: auto;
display: flex;
gap: 20px;
padding-top: 1rem;
padding-bottom: 1rem;
justify-content: center;
}

.footer-social-icon {
width: 40px;
height: 40px;
}


.footer-newsletter {
    width: 100%;
    height: auto;
}

.footer-newsletter-title {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-email-input {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left;
    color: white;
    font-family: var(--font-ubuntu-sans);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    outline: none;
}

.footer-email-input::placeholder {
    color: white;
}

/* ========================================
   DESKTOP RESPONSIVE STYLES
   ======================================== */

@media (min-width: 768px) {
    /* Hero Section Desktop */
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 3rem 5rem;
        height: 300px;
    }

    .logo {
        width: 150px;
    }

    .hero-title {
        font-size: 60px;
    }

    /* Sticky Header Desktop */
    .sticky-header {
        padding: 1rem 5rem;
    }

    .sticky-logo {
        width: 100px;
    }

    /* Hamburger Menu Desktop */
    .hamburger-btn {
        width: 50px;
        height: 50px;
    }

    .menu-overlay {
        width: 450px;
    }

    .menu-nav a {
        font-size: 28px;
    }

    .submenu {
        padding: 1.2rem 0 1.2rem 2rem;
    }

    .submenu a {
        font-size: 20px;
        padding-left: 2rem;
    }

    .submenu a:hover {
        padding-left: 2.5rem;
    }

    .menu-close-btn {
        width: 60px;
        height: 60px;
        font-size: 36px;
        top: 2.5rem;
        right: 2.5rem;
    }

    /* Registration Section Desktop - Grid Layout */
    .solo-registration-section {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .solo-registration-section .banner {
        height: 400px;
    }

    .solo-registration-section .registration-content {
        padding: 40px 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .solo-registration-section .registration-content .header h3 {
        font-size: 36px;
    }

    .solo-registration-section .registration-content .header h5 {
        font-size: 22px;
    }

    .solo-registration-section .registration-content .registration-content-text p {
        font-size: 17px;
        line-height: 1.5;
    }

    .solo-registration-section .registration-content .registration-content-text ul {
        font-size: 17px;
        line-height: 1.4;
    }

    .solo-registration-section .registration-content-button button {
        font-size: 26px;
        padding: 24px 0;
        transition: opacity 0.3s ease;
    }

    .solo-registration-section .registration-content-button button:hover {
        opacity: 0.85;
    }

    /* Footer Desktop */
    .footer-section {
        height: 600px;
    }

    .footer-background {
        height: 600px;
    }

    .footer-content {
        width: 60%;
        max-width: 800px;
    }

    .footer-newsletter-title {
        font-size: 22px;
    }

    .footer-email-input {
        font-size: 14px;
        height: 45px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 70px;
    }

    .solo-registration-section .banner {
        height: 450px;
    }

    .solo-registration-section .registration-content {
        padding: 50px 60px;
    }

    .solo-registration-section .registration-content .header h3 {
        font-size: 42px;
    }

    .solo-registration-section .registration-content .header h5 {
        font-size: 24px;
    }

    .solo-registration-section .registration-content .registration-content-text p {
        font-size: 18px;
    }

    .solo-registration-section .registration-content .registration-content-text ul {
        font-size: 18px;
    }
}

@media (min-width: 1536px) {
    .hero-title {
        font-size: 80px;
    }

    .solo-registration-section {
        max-width: 1600px;
    }

    .solo-registration-section .banner {
        height: 500px;
    }

    .solo-registration-section .registration-content .header h3 {
        font-size: 48px;
    }

    .solo-registration-section .registration-content .header h5 {
        font-size: 26px;
    }
}

/* Mobile menu overlay fixes for iPhone */
@media (max-width: 768px) {
    .menu-overlay {
        padding: 120px 20px 60px;
        padding-top: max(120px, env(safe-area-inset-top, 120px));
        padding-bottom: max(60px, env(safe-area-inset-bottom, 60px));
    }
}