/* GENERAL RESET AND BODY STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    color: white;
    background: #000;
}

/* ROOT HERO CONTAINER */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: "Montserrat", serif;
}

/* FULLSCREEN VIDEO BACKGROUND */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* SOCIAL ICONS TOP RIGHT */
.social-icons {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

/* Style for social media icons (WITH border) */
.social-icons a {
    width: 42px;
    height: 42px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

/* Style for audio toggle (WITHOUT border) */
.audio-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Default: icons appear white */
.social-icons a img,
.audio-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* On hover: show original icon colors */
.social-icons a:hover img,
.audio-toggle:hover .audio-icon {
    filter: none;
}

.social-icons a:hover {
    transform: scale(1.2);
    border: 2.5px solid #ffdf94;
}

.audio-toggle:hover {
    transform: scale(1.2);
}

.audio-toggle:focus,
.audio-toggle:active {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

/* MOBILE BOTTOM WRAPPER */
.mobile-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 5%;
    position: fixed;
    bottom: 40px;
    left: 0;
    z-index: 10;
}

/* BOTTOM LEFT & RIGHT */
.bottom-left,
.bottom-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* LOGO STYLES */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* --- FIX: Make logos and buttons VISIBLE --- */
.left-logo-container,
.right-logo-container {
    opacity: 1;
    transform: none;
}

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border: 1px solid white;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-width: 200px;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
}

.left-cta-button,
.right-cta-button {
    opacity: 1;
    transform: none;
    font-family: 'Montserrat', sans-serif;
}

/* --- RESPONSIVE --- */

/* Tablets */
@media (max-width: 1024px) {
    .logo {
        max-width: 200px;
    }
    .btn {
        min-width: 160px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 20px 20px;
    }

    .mobile-bottom-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 0;
        width: 100%;
    }

    .bottom-left,
    .bottom-right {
        width: 100%;
        align-items: center;
    }

    .logo {
        max-width: 150px;
    }

    .btn {
        min-width: 160px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .social-icons {
        top: 20px;
        right: 20px;
    }

    .social-icons a,
    .audio-toggle {
        width: 35px;
        height: 35px;
    }

    .social-icons a img,
    .audio-icon {
        width: 18px;
        height: 18px;
    }
}

/* Landscape phones */
@media (max-height: 500px) {
    .logo {
        max-width: 100px;
    }
}