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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-brand-text {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hamburger:hover .bar {
    background-color: #d4af37;
}

.nav-brand-text.nav-brand-anim-prayer {
    animation: navPrayerFlags 7s linear infinite;
}

@keyframes navPrayerFlags {
    0% {
        text-shadow: 3px 3px 0 rgba(255, 70, 70, 0.6), -3px -3px 0 rgba(30, 136, 229, 0.6);
    }
    33% {
        text-shadow: 3px -3px 0 rgba(67, 160, 71, 0.6), -3px 3px 0 rgba(255, 241, 118, 0.6);
    }
    66% {
        text-shadow: -3px 3px 0 rgba(255, 70, 70, 0.6), 3px -3px 0 rgba(30, 136, 229, 0.6);
    }
    100% {
        text-shadow: 3px 3px 0 rgba(255, 70, 70, 0.6), -3px -3px 0 rgba(30, 136, 229, 0.6);
    }
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #000;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 10px auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.5) contrast(1.2);
    animation: videoFadeIn 2s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.video-fade-out {
    animation: videoFadeOut 1s ease-in-out forwards;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.hero-heading {
    font-family: "Anton", sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-kicker {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.55rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-title {
    display: block;
    margin: 0.2em 0;
    font-size: 5.5rem;
    letter-spacing: 0.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f4d03f 62%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.45rem;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.35rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    animation: bounceDown 2.1s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-arrow i {
    color: #ffffff;
    font-size: 1.3rem;
    animation: jump 1.6s ease-in-out infinite;
}

.scroll-arrow:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.08);
}

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

@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes videoFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Geography Section */
.geography {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.doodle-stickers {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.doodle-sticker {
    position: absolute;
    width: 90px;
    height: 90px;
    opacity: 0.18;
    animation: floatSticker 9s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doodle-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.55);
    transition: filter 0.3s ease;
}

.doodle-sticker:hover {
    opacity: 0.26;
}

.doodle-sticker:hover img {
    filter: grayscale(80%) brightness(0.65);
}

.doodle-sticker.sticker-1 { top: 8%; left: 6%; animation-delay: 0s; animation-duration: 11s; }
.doodle-sticker.sticker-2 { top: 14%; right: 12%; animation-delay: 1.5s; animation-duration: 12s; }
.doodle-sticker.sticker-3 { top: 32%; left: 12%; animation-delay: 2.3s; animation-duration: 10s; }
.doodle-sticker.sticker-4 { top: 45%; right: 18%; animation-delay: 0.9s; animation-duration: 13s; }
.doodle-sticker.sticker-5 { bottom: 28%; left: 20%; animation-delay: 2s; animation-duration: 11s; }
.doodle-sticker.sticker-6 { top: 58%; right: 6%; animation-delay: 1.2s; animation-duration: 9s; }
.doodle-sticker.sticker-7 { bottom: 18%; right: 28%; animation-delay: 2.6s; animation-duration: 12s; }
.doodle-sticker.sticker-8 { bottom: 10%; left: 8%; animation-delay: 0.6s; animation-duration: 14s; }

.geography .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3px);
    padding: 70px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.geography-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.geography-text {
    flex: 1;
    min-width: 320px;
}

.geography-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.geography-text p {
    margin-bottom: 24px;
    color: #555;
    line-height: 1.85;
    text-align: justify;
}

.geography-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.geography-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Coming Soon Section */
.coming-soon {
    position: relative;
    background-color: #000;
    color: #fff;
    text-align: center;
    min-height: 60vh;
    overflow: hidden;
}

.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.coming-soon-content {
    max-width: 600px;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-placeholder {
    margin-bottom: 30px;
}

.logo-placeholder img {
    max-width: 160px;
    width: 40vw;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.logo-placeholder i {
    color: #d4af37;
    margin-bottom: 20px;
}

.logo-placeholder h3 {
    font-size: 2rem;
    color: #d4af37;
}

.notice-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.notice-box p {
    margin: 0;
}

/* Footer */
.footer {
    position: relative;
    background: #111;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    overflow: hidden;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-home-btn,
.footer-top-btn {
    padding: 10px 25px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-home-btn {
    text-decoration: none;
    color: #000;
}

.footer p {
    color: #999;
    font-size: 0.9rem;
}

/* Social icons (matching sikkim connect) */
.social-links { display: flex; gap: 20px; padding-top: 20px; padding-left: 6px; justify-content: center; }
.coming-soon .social-links { margin-top: 24px; }
ul { list-style: none; }
.example-2 { display: flex; justify-content: center; align-items: center; }
.example-2 .icon-content { margin: 0 10px; position: relative; }
.example-2 .icon-content .tooltip { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); color: #fff; padding: 6px 10px; border-radius: 5px; opacity: 0; visibility: hidden; font-size: 14px; transition: all 0.3s ease; }
.example-2 .icon-content:hover .tooltip { opacity: 1; visibility: visible; top: -30px; }
.example-2 .icon-content a { position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; border-radius: 50%; color: #4d4d4d; background-color: #fff; transition: all 0.3s ease-in-out; }
.example-2 .icon-content a:hover { box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%); color: white; }
.example-2 .icon-content a svg { position: relative; z-index: 1; width: 30px; height: 30px; }
.example-2 .icon-content a .filled { position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background-color: #000; transition: all 0.3s ease-in-out; }
.example-2 .icon-content a:hover .filled { height: 100%; }
.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip { background-color: #128c7e; }
.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip { background-color: #3b5998; }
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip { background: linear-gradient(45deg,#405de6,#5b51db,#b33ab4,#c135b4,#e1306c,#fd1f1f); }

/* Fade-in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.6s ease-out;
    position: relative;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.8s ease-out;
    z-index: 1;
}

.fade-in-section.fade-out::before {
    background: rgba(0, 0, 0, 0.65);
}

.fade-in-section > * {
    position: relative;
    z-index: 2;
}

/* Mouse trail for dark sections */
.mouse-trail {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, #f8f3d0 0%, #d4af37 55%, #8c6b1f 100%);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8), 0 0 26px rgba(212, 175, 55, 0.4);
    opacity: 0.85;
    transform: translate(-50%, -50%);
    animation: trailFade 0.9s ease-out forwards;
    z-index: 5;
}

@keyframes trailFade {
    0% {
        opacity: 0.85;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.35);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(11px);
    }
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes floatSticker {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(12px, -24px) rotate(4deg) scale(1.05);
    }
    50% {
        transform: translate(-16px, -12px) rotate(-3deg) scale(0.95);
    }
    75% {
        transform: translate(10px, -30px) rotate(5deg) scale(1.08);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 3.4rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .geography .container {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .hero-video {
        display: block;
    }

    .hero {
        background: transparent;
    }

    .hero-heading {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        letter-spacing: 0.3rem;
        font-size: 1.4rem;
    }

    .scroll-down {
        bottom: 26px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        box-shadow: none;
        margin-top: 5px;
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-logo .logo-img {
        height: 40px;
    }

    .nav-brand-text {
        display: none;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .geography-content {
        flex-direction: column;
    }

    .geography .container {
        padding: 50px 30px;
    }
    
    .coming-soon {
        padding: 60px 0 80px;
    }
    
    .coming-soon-wrapper {
        min-height: auto;
    }
    
    .logo-placeholder img {
        max-width: 130px;
        width: 45vw;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2.6rem;
        letter-spacing: 1px;
    }

    .hero-kicker {
        font-size: 1.1rem;
        letter-spacing: 0.3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.22rem;
    }

    .scroll-down {
        bottom: 18px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .coming-soon-content {
        padding: 20px;
    }
    
    .notice-box {
        font-size: 1rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
