/* Base Styles */
:root {
    --main-bg-color: rgba(0, 0, 0, 0.8);
    --text-color: #fff;
    --highlight-color: #2c4763;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: "franklin-gothic-urw", sans-serif;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.04em;
    color: var(--text-color);
    scroll-behavior: smooth;
}

* {
    font-family: inherit;
    text-transform: uppercase;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fallback-image {
    display: none;
}

video[autoplay]:not([autoplay]) + .fallback-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--main-bg-color);
    z-index: 1;
    text-align: center;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
}

/* Section Styles */
section_blank, section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    scroll-snap-type: y proximity;
}

section_blank {
    background: rgba(0, 0, 0, 0);
}

.content {
    margin-top: 2rem;
    scroll-snap-align: center;
    max-width: 1400px;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    min-width: 62vw;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .video-container {
        width: 90%;
        margin: 0 auto;
    }

    .social-icons {
        gap: 10px;
        position: fixed;
        bottom: 10px;
        width: 100%;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    /* Ensure the background video fits the screen */
    #background-video {
        object-fit: fill;
        object-position: center;
    }
}

/* FAQ Styles */
#faq .content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    text-align: left;
}

.faq-question {
    background: #000000eb;
    color: var(--text-color);
    border: none;
    padding: 1rem;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--highlight-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #000000d5;
    padding: 0 1rem;
    border-radius: 0 0 5px 5px;
    font-size: 0.7rem;
}

.faq-answer p {
    font-size: 0.8rem !important;
    line-height: 1.2rem !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

/* Footer Styles */
footer {
    padding: 0.01rem 0;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
}

footer p {
    margin: 0.01rem 0;
    font-size: 1rem;
    line-height: 1.5rem;
}

/* Home Button */
#home-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
}

/* Ensure no play button or controls are visible */
#background-video::-webkit-media-controls {
    display: none !important;
}

#background-video::-webkit-media-controls-enclosure {
    display: none !important;
}

#background-video::-webkit-media-controls-panel {
    display: none !important;
}
