/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 0;
}

body {
    height: 100%;
    margin: 0;
}

main {
    height: 100%;
    margin: 0;
    background: linear-gradient(135deg, #ee3e80, #ee3e80);
}


/* Header styles */
header {
    background: linear-gradient(135deg, #ee3e80, #ee3e80);
    padding: 1rem 0;
    top: 0;
    z-index: 1000;
    font-weight: 500;
    font-size: 21px;
    height:162px;
    border-bottom: 30px solid #ff6b35;
}

header .container {
    width: 100%;
    margin: auto;
    padding: 5px 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-mobile {
    width: 100%;
    margin: auto;
    height: 450px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ee3e80, #ee3e80);
    transform: translateX(-100%);
}
.container-mobile.active {
    transform: translateX(0);
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

/* Navigation styles */
.nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-menu-mobile {
    list-style: none;
    width: 100%;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

.nav-link {
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
}

.nav-link-mobile {
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 55px;
    font-weight: 500;
    width: 100%;
    font-size: 19px;
}

.nav-link:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    border-radius: 100px;
}

.tickets-btn {
    background: #ff6b35;
    color: white;
    border-radius: 25px;
    padding: 0.4rem 0.8rem;
    margin: 0;
}

.tickets-btn-mobile {
    background: #ff6b35;
    color: white;
    padding-top:0.4rem;
    padding-bottom:0.4rem;
    margin: 0;
}

.tickets-btn:hover {
    background: #ff5722;
    transform: translateY(-3px);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/*footer styles */
.footer {
    background: linear-gradient(135deg, #ee3e80, #ee3e80);
    padding: 1rem 0;
    font-weight: 600;
    font-size: 22px;
    min-height:380px;
    width: 100%;
    color: white;
    border-top: 30px solid #ff6b35;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    padding: 0px 4.5rem;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-left {
    flex: 1;
}

.presented-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.6rem;
}

.presented-text {
    font-size: 22px;
    font-weight: 500;
}

.disclaimer {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.disclaimer p {
    margin: 0.5rem 0;
}


.sponsor-logo img {
    margin-left: 5px;
    margin-right: 5px;
}

.footer-right {
    flex: 1;
    max-width: 523px;
}

.stay-connected h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.stay-connected p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-signup {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
}

#mc_embed_signup-fake {
    width:100%;
}

.email-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    height: 40px;
    width:100%;
}

.signup-btn {
    background: #ff6b35;
    color: white;
    border: 1px solid #ff6b35;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    height: 42px;
    font-weight: bold;
    line-height: 10px;
    transition: background 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 170px;
}

.signup-btn:hover {
    background: #ff5722;
}

.social-icons {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Mobile styles */
@media (max-width: 1470px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #e91e63, #ff4081);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .tickets-btn {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
    }

    .container {
        padding: 0 1rem;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .logo-text-top {
        font-size: 0.7rem;
    }

    .logo-text-bottom {
        font-size: 0.9rem;
    }

    .logo-text-festival {
        font-size: 0.5rem;
    }

    .disclaimer, .stay-connected p{
        font-size: 19px;
        line-height: 1.6;
    }

    .presented-by{
        display: block;
    }

    .sponsor-logo{
        margin-top: 20px;
    }

    .stay-connected h3{
        font-size: 22px;
        line-height: 1.6;
    }


    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2.5rem;
        text-align: center;
    }

    .footer-right {
        max-width: 100%;
    }
    .newsletter-signup {
        flex-direction: column;
        gap: 0.5rem;
    }

    .email-input {
        border-radius: 25px;
    }

    .signup-btn {
        border-radius: 25px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-text-top {
        font-size: 0.6rem;
    }

    .logo-text-bottom {
        font-size: 0.8rem;
    }

    .logo-text-festival {
        font-size: 0.45rem;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}
