/* Import Courier Prime Font */
@font-face {
    font-family: 'Courier Prime';
    src: url('public/fonts/Courier Prime.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    color: #FAF9F9;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Bottom Navigation */
.bottom-navigation {
    position: fixed;
    bottom: 48px;
    left: 48px;
    z-index: 10;
    /* Remove: padding-left: 16px; */}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #FAF9F9;
    text-decoration: none;
    border: 1px solid rgba(250, 249, 249, 0.3);
    padding: 0 20px;
    height: 53px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.28px;
    line-height: 0.9;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.nav-link:hover {
    background: #FAF9F9;
    color: #000;
}

/* Mute Button */
.mute-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(250, 249, 249, 0.1);
    border: 1px solid rgba(250, 249, 249, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.mute-button:hover {
    background: rgba(250, 249, 249, 0.2);
    border-color: rgba(250, 249, 249, 0.5);
    transform: scale(1.05);
}

/* Invisible Toggle Button */
.toggle-nav-button {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    /* Safari-specific resets */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.toggle-nav-button:hover {
    opacity: 0;
}

/* Hide toggle button on mobile */
@media (max-width: 768px) {
    .toggle-nav-button {
        display: none;
    }
}

.mute-button svg {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-section {
    margin-bottom: 3rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}


.hero-logo {
    height: 42px;
    width: auto;
}

/* Mobile logo positioning */
@media (max-width: 768px) {
    .hero-logo {
        content: url('public/images/Masthead-M.svg');
        position: fixed;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        height: 42px;
        width: auto;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .bottom-navigation {
        bottom: 16px;
        left: 16px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
        height: 53px;
        padding: 0 20px;
    }
    
    .hero-logo {
        width: auto;
    }
    
    
    
    .mute-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
    
    .mute-button svg {
        width: 18px;
        height: 18px;
    }
    
    .main-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .bottom-navigation {
        bottom: 16px;
        left: 16px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
        height: 53px;
        padding: 0 20px;
    }
    
    .hero-logo {
        height: 48px;
	width: auto;
    }
    
    
    
    .mute-button {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .mute-button svg {
        width: 16px;
        height: 16px;
    }
    
    .main-content {
        padding: 1rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-logo {
        height: 56px;
    	width: auto;
    }
    
    .brand-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .nav-link {
        font-size: 18px;
    }
}

/* Ensure video plays on mobile */
@media (max-width: 768px) {
    .video-container video {
        object-fit: cover;
        object-position: center;
    }
}
