/* Mobile responsive banner styles */
.fifa-banner-video {
    display: block;
}
.fifa-banner-img {
    display: none;
}
.fifa-banner-img-small {
    display: none;
}

@media (max-width: 767px) {
    .fifa-banner-video {
        display: none !important;
    }
    .fifa-banner-img {
        display: block !important;
    }
}

@media (max-width: 425px) {
    .fifa-banner-img {
        display: none !important;
    }
    .fifa-banner-img-small {
        display: block !important;
    }
}

/* Hamburger menu styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #175E54;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

/* Desktop Navigation Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 20px !important;
    }
    
    .nav-links a {
        padding: 14px 32px !important;
        border: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links a {
        font-size: 14px !important;
        padding: 14px 15px !important;
        border: none !important;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 175px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.1em;
        padding: 20px 0;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        color: #175E54;
        text-decoration: none;
        display: block;
    }
    
    .nav-links a:first-child {
        border-top: 1px solid #e0e0e0;
    }
    
    .contest-btn {
        padding: 20px 20px !important;
        background: #FBBD47 !important;
        color: #175E54 !important;
        text-align: center;
        border-radius: 100px !important;
        box-shadow: 0 2px 4px rgba(235, 172, 33, 0.2) !important;
        font-weight: 500 !important;
        margin-top: 10px;
        border: none;
        font-size: 0.95em;
        white-space: nowrap;
    }
    
    .contest-btn:hover {
        background: #D39826 !important;
        transform: none !important;
        box-shadow: 0 4px 8px rgba(212, 148, 30, 0.3) !important;
    }
}

@media (max-width: 425px) {
    .nav-links {
        width: 85%;
        max-width: 300px;
        padding: 120px 20px 20px;
    }
    
    .contest-btn {
        white-space: normal !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
}
