/* Fonts Import */
@font-face {
    font-family: "FSP DEMO - PODIUM Sharp 4.11";
    src: url("https://db.onlinewebfonts.com/t/8b75d9dcff6a48c35a46656192adf019.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/8b75d9dcff6a48c35a46656192adf019.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* Base Styles */
:root {
    --accent-yellow: #feca57;
    --accent-blue: #0abde3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    scroll-behavior: smooth;
}

/* On large screens, lock viewport height to 100vh */
@media (min-width: 1200px) {
    body {
        overflow: hidden;
    }
}

/* On smaller screens, allow scrolling if content overflows */
@media (max-width: 1199.98px) {
    .hero-wrapper {
        height: auto !important;
        min-height: 100vh;
    }
    body {
        overflow-x: hidden;
    }
}

/* Typography Utilities */
.podium-font {
    font-family: "FSP DEMO - PODIUM Sharp 4.11", sans-serif;
}

.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-75 { color: rgba(255, 255, 255, 0.75); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-accent { color: var(--accent-yellow); }
.letter-spacing-1 { letter-spacing: 0.1em; }

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

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Subtle dark overlay */
}

/* Floating Glows */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatingGlow 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-yellow);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floatingGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Navbar */
.navbar {
    transition: opacity 0.5s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
}

.btn-coming-soon {
    border-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-coming-soon:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-link-mobile {
    font-weight: 300;
    transition: all 0.3s;
}

.nav-link-mobile:hover {
    color: var(--accent-yellow) !important;
    transform: scale(1.1);
}

/* Hero Content */
.yellow-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-yellow);
}

.main-heading {
    font-family: "FSP DEMO - PODIUM Sharp 4.11", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.sub-text {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.progress-section {
    max-width: 400px;
}

/* Buttons */
.btn-notify {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-notify::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-notify:hover {
    color: black;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-notify:hover::before {
    width: 100%;
}

/* Progress Bar */
.custom-progress-bar {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-yellow));
    position: relative;
    overflow: hidden;
}

.custom-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 200%; }
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Countdown */
.countdown-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.1);
}

/* Info Cards */
.info-card {
    border-radius: 12px;
}
.info-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.staggered-1 { animation-delay: 0.1s; }
.staggered-2 { animation-delay: 0.3s; }
.staggered-3 { animation-delay: 0.5s; }
.staggered-4 { animation-delay: 0.7s; }
.staggered-5 { animation-delay: 0.9s; }
.staggered-6 { animation-delay: 1.1s; }
.staggered-7 { animation-delay: 1.3s; }
.staggered-8 { animation-delay: 1.5s; }

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Breakpoints and Responsive Enhancements */
@media (max-width: 1199.98px) {
    .main-heading {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 991.98px) {
    .progress-section {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .main-heading {
        font-size: 3rem;
    }
    .btn-notify {
        width: 100%;
        text-align: center;
    }
    .launching-text {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 2.5rem;
    }
    .info-card:hover {
        transform: translateY(-5px); /* Vertical instead of horizontal on mobile */
    }
}
