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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Ubuntu Sans", sans-serif;

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

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


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

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

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

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

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

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

/* About InterEuropa Section */
.about-intereuropa-section {
    padding: 4rem 2rem;
    background-color: #000000;
    color: white;
}

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

.about-title {
    font-family: var(--font-lato);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text {
    font-family: var(--font-lato);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-intereuropa-section {
        padding: 3rem 1rem;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .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));
    }
}

.hero-content {
    padding-left: 2rem;
    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: 0;
    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;
}


/* jury members  */
.jury-feedback-section {
    width: 100%;
    height: 100%;
    background-color: #000000;
    padding-bottom: 50px;
}
.jury-member-main {
    width: 100%;
    height: 100%;
}
.jury-member-main img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center top;
    transition: opacity 0.3s ease;
}
.jury-member-main h3 {
    font-family: var(--font-lato);
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2;
    padding: 20px;
    color: rgb(255, 255, 255);
}

.feedback {
    width: 100%;
    height: 100%;
    
    color: rgb(255, 255, 255);
    background-color: var(--brand-color);
}
 .feedback p {
     font-family: var(--font-ubuntu-sans);
     font-size: 12px;
     font-weight: 400;
     line-height: 1.5;
     padding: 20px;
     padding-left: 20%;
     text-align: justify;
 }

/* Read More Button */
.read-more-btn {
    background: transparent;
    border: 1px solid var(--brand-color);
    color: #000000;
    padding: 0.5rem 1rem;
    font-family: var(--font-lato);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border-radius: 3px;
    margin-left: 20%;
}

.read-more-btn:hover {
    background: var(--brand-color);
    color: #000;
    transform: translateY(-2px);
}

.bio-text {
    margin-bottom: 0;
    line-height: 1.6;
}
.jury-feedback-section .feedback .feedback-navigation {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;

}
.jury-feedback-section .feedback .feedback-navigation .feedback-button-container {

    background-color: rgba(217, 217, 217, 0.3);
}
/* navigation's arrow icons  */
.jury-feedback-section .feedback .feedback-navigation .feedback-button-container .feedback-navigation-button {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    padding: 14px 24px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.jury-feedback-section .feedback .feedback-navigation .feedback-button-container .feedback-navigation-button:hover {
    opacity: 0.7;
}


.jury-feedback-section .jury-member-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 30px;
    background: #000;
    
    
}
.jury-feedback-section .jury-member-grid .jury-member-item {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.jury-feedback-section .jury-member-grid .jury-member-item:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.jury-feedback-section .jury-member-grid .jury-member-item .jury-item-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.jury-feedback-section .jury-member-grid .jury-member-item .jury-item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.jury-feedback-section .jury-member-grid .jury-member-item .jury-item-info {
    padding: 10px 0;
}

.jury-feedback-section .jury-member-grid .jury-member-item .jury-item-info h3 {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    padding: 10px 0 5px 0;
    margin: 0;
}

.jury-feedback-section .jury-member-grid .jury-member-item .jury-item-bio {
    font-family: var(--font-ubuntu-sans);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    margin: 0;
}


/* jury member section  */

.jury-member-section {
    width: 100%;
    height: 100%;
}
.jury-member-main {
    width: 100%;
    height: 100%;
}
.jury-member-main .jury-member-title-container {
    width: 100%;
    height: auto;
    padding: 0 0 60px 0;
    position: relative;
}
.jury-member-main .jury-member-title-container:before {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 90%;
    height: 1px;
    background-color: rgb(255, 255, 255);
}


/* sponsore section  */

/* Sponsors Section */
        .sponsors-section {
            padding-top: 50px;
            padding-bottom: 80px;
        }

        .sponsors-title {
            font-size: 22px;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            font-family: var(--font-lato);
            text-align: center;
            padding: 10px 0;
        }

        .sponsors-grid {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-wrap: wrap;
            padding-top: 1rem;
        }

        .sponsor-item-small {
            width: 25%;
            height: 100%;
        }

        .sponsor-item-large {
            width: 75%;
            height: 100%;
            margin-top: 20px;
        }

        .sponsor-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }






/* ######## 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-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;
    }

    .logo {
        width: 150px;
    }

    .hero-content {
        padding-left: 3rem;
    }

    .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;
    }

    /* Jury Section Desktop */
    .jury-feedback-section {
        padding: 50px 80px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .jury-member-main {
        max-width: 900px;
        margin: 0 auto;
    }

    .jury-member-main img {
        max-height: 600px;
    }

    .jury-member-main h3 {
        font-size: 48px;
        padding: 30px 40px;
    }

    .feedback {
        max-width: 900px;
        margin: 0 auto;
    }

     .feedback p {
         font-size: 16px;
         padding: 40px 60px;
         padding-left: 25%;
         text-align: left;
     }

     .read-more-btn {
         margin-left: 25%;
         font-size: 1rem;
         padding: 0.6rem 1.2rem;
     }

    .feedback-navigation-button {
        font-size: 36px !important;
        padding: 18px 30px !important;
    }

    .jury-member-grid {
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        padding: 50px 30px !important;
    }

    .jury-member-grid .jury-member-item .jury-item-info h3 {
        font-size: 18px;
        padding: 15px 0 8px 0;
    }

    .jury-member-grid .jury-member-item .jury-item-bio {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Jury Member Section Desktop */
    .jury-member-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 80px;
    }

    .jury-member-section .jury-member-main {
        max-width: 800px;
        margin: 50px auto;
    }

    .jury-member-section .jury-member-main img {
        max-height: 600px;
    }

    .jury-member-section .jury-member-main h3 {
        font-size: 42px;
        padding: 25px 30px;
    }

    .jury-member-section .feedback {
        max-width: 800px;
        margin: 0 auto;
    }

    .jury-member-section .feedback p {
        font-size: 15px;
        padding: 30px 40px;
        text-align: left;
    }

    /* Sponsors Desktop */
    .sponsors-section {
        padding: 80px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .sponsors-title {
        font-size: 32px;
    }

    .sponsor-item-small {
        width: 20%;
        max-width: 200px;
    }

    .sponsor-item-large {
        width: 50%;
        max-width: 500px;
    }

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

    .footer-background {
        height: 600px;
    }

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

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

    .jury-feedback-section {
        max-width: 1800px;
    }

    .jury-member-main {
        max-width: 1000px;
    }

    .jury-member-main img {
        max-height: 700px;
    }

    .jury-member-main h3 {
        font-size: 60px;
    }

    .feedback {
        max-width: 1000px;
    }

     .feedback p {
         font-size: 18px;
     }

     .read-more-btn {
         margin-left: 25%;
         font-size: 1.1rem;
         padding: 0.7rem 1.4rem;
     }

    .jury-member-grid {
        max-width: 1400px;
    }

    .jury-member-grid .jury-member-item .jury-item-info h3 {
        font-size: 22px;
    }

    .jury-member-grid .jury-member-item .jury-item-bio {
        font-size: 14px;
    }

    .jury-member-section {
        max-width: 1400px;
    }

    .jury-member-section .jury-member-main {
        max-width: 900px;
    }

    .jury-member-section .jury-member-main h3 {
        font-size: 48px;
    }

    .jury-member-section .feedback p {
        font-size: 17px;
    }

    .sponsors-section {
        max-width: 1600px;
    }
	
}