/* Import Professional Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #000;
}


/* Google Translate Widget Styling */
#google_translate_element {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}

.goog-te-gadget {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: white !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    font-size: 14px !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: white !important;
}

.goog-te-gadget-simple .goog-te-menu-value:hover {
    color: #ff6b35 !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    color: #fff !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

@media (max-width: 768px) {
    #google_translate_element {
        top: 15px !important;
        right: 15px !important;
        padding: 8px !important;
    }
}

/* Google Translate Loading Styles */
#translate-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffa500;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 0;
}

.translate-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-top: 2px solid #ffa500;
    border-radius: 50%;
    animation: translate-spin 1s linear infinite;
}

@keyframes translate-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide loading when translate widget appears */
#google_translate_element .goog-te-gadget ~ #translate-loading {
    display: none;
}



/* Survey Banner */
.survey-banner {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999999;
    animation: bannerSlideDown 0.5s ease-out;
}

.survey-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.survey-banner-text {
    font-weight: 600;
    font-size: 1rem;
}

.survey-banner-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.survey-banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.survey-banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.survey-banner-close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.survey-banner.hidden {
    display: none;
}

@keyframes bannerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .survey-banner {
        padding: 12px 15px;
    }

    .survey-banner-content {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .survey-banner-text {
        font-size: 0.9rem;
    }

    .survey-banner-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}



/* PMW FEST FOOTER */
.pmw-fest-footer-main-container {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.pmw-fest-footer-wave-transition {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.pmw-fest-footer-wave-svg {
    width: 100%;
    height: 100%;
}

.pmw-fest-footer-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 40px 0;
}

.pmw-fest-footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.pmw-fest-footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pmw-fest-footer-logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

.pmw-fest-footer-tagline {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 300;
}

.pmw-fest-footer-section-title {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pmw-fest-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pmw-fest-footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.pmw-fest-footer-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.pmw-fest-footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.pmw-fest-footer-contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-weight: 500;
}

.pmw-fest-footer-contact-item i {
    color: #ff6b35;
    width: 20px;
    text-align: center;
}

.pmw-fest-footer-social-links {
    display: flex;
    gap: 15px;
}

.pmw-fest-footer-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pmw-fest-footer-social-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.pmw-fest-footer-bottom-bar {
    padding: 30px 0;
}

.pmw-fest-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pmw-fest-footer-copyright,
.pmw-fest-footer-credit {
    margin: 0;
    color: #999999;
    font-size: 0.9rem;
}

.pmw-fest-footer-credit {
    color: #ff6b35;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pmw-fest-footer-content-wrapper {
        padding: 120px 20px 0;
    }

    .pmw-fest-footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pmw-fest-footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .pmw-fest-footer-social-links {
        justify-content: center;
    }
}
