/* --- VINODVERSE MASTER STYLESHEET --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    --black: #020205;
    --pure-white: #ffffff;
    --silver: #a0a0a0;
    --electric-blue: #00d4ff;
    --glass: rgba(255, 255, 255, 0.05);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--electric-blue);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--electric-blue);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    background-color: var(--black);
    color: var(--pure-white);
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- DYNAMIC STARFIELD BACKGROUND --- */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(1.5px 1.5px at 25% 35%, var(--pure-white), transparent),
        radial-gradient(2px 2px at 50% 10%, var(--electric-blue), transparent),
        radial-gradient(1px 1px at 75% 45%, var(--pure-white), transparent),
        radial-gradient(2px 2px at 15% 85%, var(--pure-white), transparent),
        radial-gradient(1.5px 1.5px at 85% 75%, var(--electric-blue), transparent);
    background-size: 350px 350px;
    opacity: 0.3;
    z-index: -1;
    animation: space-drift auto linear;
    animation-timeline: scroll();
}

@keyframes space-drift {
    to { transform: translateY(15%); }
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--electric-blue);
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 2000;
    animation: watch-scroll auto linear;
    animation-timeline: scroll();
}

@keyframes watch-scroll {
    to { transform: scaleX(1); }
}

/* --- NAVIGATION & LOGO --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    background: rgba(2, 2, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px; /* Large scale logo */
    width: auto;
    margin-right: 60px; /* Creates distance from text links */
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    gap: 35px; /* Spacing between country links */
    align-items: center;
}

.nav-links a, .dropbtn {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover, .dropdown:hover .dropbtn {
    color: var(--electric-blue);
    opacity: 1;
    text-shadow: 0 0 10px var(--electric-blue);
}

/* Dropdowns */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(2, 2, 5, 0.95);
    min-width: 220px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-top: 15px;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION (MASSIVE BRANDING) --- */
.hero { 
    text-align: center; 
    flex-direction: column; 
    justify-content: center;
}

.hero-content {
    width: 95vw;
    max-width: 1500px;
}

.pre-title {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-brand {
    font-size: clamp(3.5rem, 9vw, 11rem); /* Massive Scale */
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 1.8rem; /* Wide tracked cinematic look */
    text-transform: uppercase;
    line-height: 1;
}

.sub-brand {
    font-size: clamp(1rem, 2.5vw, 2.8rem);
    font-weight: 300;
    color: var(--electric-blue);
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    margin-top: 10px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.8;
    margin-top: 30px;
}

.electric {
    color: var(--electric-blue);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    margin: 40px auto 0;
    position: relative;
}

.mouse-scroll::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--electric-blue);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
    0% { top: 6px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* --- CONTENT SECTIONS --- */
.stargaze-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 120px 8%;
    scroll-snap-align: center;
    position: relative;
}

.info-card {
    max-width: 480px;
    padding: 50px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 40%;
}

.info-card.left { border-left: 4px solid var(--electric-blue); }
.info-card.right { border-right: 4px solid var(--electric-blue); }

@keyframes reveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.coord {
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

/* --- IMAGE FRAMES (1280x853) --- */
.visual-frame {
    width: 640px; /* Optimized aspect for 1280px wide source */
    height: 426px; /* Optimized aspect for 853px high source */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.8);
    transition: 0.6s ease;
}

.visual-frame:hover .dest-img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.03);
}

.cta-btn {
    margin-top: 40px;
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: 20px 45px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.cta-btn:hover {
    background: var(--electric-blue);
    color: var(--black);
    box-shadow: 0 0 40px var(--electric-blue);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1100px) {
    .nav-links { display: none; } /* Consider adding a mobile menu later */
    .stargaze-section { flex-direction: column; text-align: center; }
    .visual-frame { width: 90%; height: auto; aspect-ratio: 1280/853; margin-top: 50px; }
    .info-card { max-width: 90%; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-top: 4px solid var(--electric-blue) !important; }
}