/* Rohtas Fort Gaussian Splat project page */

/* —— Static top nav (no pill-nav / scroll shrink) —— */
#rohtas-fort-page {
    padding-top: 0;
}

.rohtas-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 56px;
    background: rgba(20, 20, 20, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rohtas-nav__inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rohtas-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f8f7f7;
    font-family: NoahBold, sans-serif;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rohtas-nav__brand img {
    display: block;
    width: 36px;
    height: 36px;
}

.rohtas-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rohtas-nav__links a {
    color: #e2e2e2;
    text-decoration: none;
    font-family: NoahRegular, sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    white-space: nowrap;
}

.rohtas-nav__links a:hover,
.rohtas-nav__links a:focus-visible {
    color: #fff;
}

.rohtas-nav__cta {
    margin-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff !important;
}

.rohtas-nav__cta:hover,
.rohtas-nav__cta:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.rohtas-nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rohtas-nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #f8f7f7;
}

.rohtas-stage {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background: #111;
}

.rohtas-hero {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 420px;
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
}

.rohtas-hero__viewer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.rohtas-hero__hint {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    padding: 8px 16px;
    font-family: HeroNewLight, NoahRegular, sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(248, 247, 247, 0.85);
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    white-space: nowrap;
}

.rohtas-scroll {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5vh;
    text-decoration: none;
    color: #f8f7f7;
    background: #111;
}

.rohtas-scroll__arrow {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.75;
    animation: rohtas-scroll-bounce 1.6s ease-in-out infinite;
}

.rohtas-scroll:hover .rohtas-scroll__arrow,
.rohtas-scroll:focus-visible .rohtas-scroll__arrow {
    opacity: 1;
}

@keyframes rohtas-scroll-bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.45; }
    50% { transform: rotate(45deg) translate(4px, 4px); opacity: 0.95; }
}

.rohtas-content {
    padding: 0;
    background: transparent;
}

.rohtas-block {
    padding: 80px 0;
}

.rohtas-block:nth-child(odd) {
    background: #f8f7f7;
}

.rohtas-block:nth-child(even) {
    background: linear-gradient(
        to right,
        #1d1d1d 0%,
        #1d1d1d 55%,
        #2a2418 100%
    );
}

.rohtas-block:nth-child(even) .new-heading {
    color: #f8f7f7;
}

.rohtas-block:nth-child(even) .detail-text {
    color: #e2e2e2;
}

.rohtas-content .rohtas-block + .rohtas-block {
    margin-top: 0;
}

.rohtas-content .new-heading {
    margin-bottom: 8px;
    color: #1d1d1d;
}

.rohtas-content .new-subHeading {
    margin-bottom: 18px;
}

.rohtas-content .new-description {
    max-width: 820px;
    color: #3a3a3a;
    line-height: 1.55;
}

.rohtas-content .detail-text {
    max-width: 820px;
    font-family: HeroNewLight, NoahRegular, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
}

.rohtas-cta {
    padding: 80px 0;
    background: #f8f7f7;
    color: #1d1d1d;
}

.rohtas-cta .new-heading {
    color: #1d1d1d;
    margin-bottom: 16px;
}

.rohtas-cta p {
    font-family: HeroNewLight, NoahRegular, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 0 28px;
    color: #4a4a4a;
}

@media (max-width: 991px) {
    .rohtas-nav__toggle {
        display: flex;
    }

    .rohtas-nav__links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 12px;
        background: rgba(20, 20, 20, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .rohtas-nav__links.is-open {
        display: flex;
    }

    .rohtas-nav__links a {
        padding: 12px 20px;
    }

    .rohtas-nav__cta {
        margin: 8px 20px 0;
        text-align: center;
    }

    .rohtas-hero {
        height: 90vh;
        min-height: 360px;
    }

    .rohtas-scroll {
        min-height: 10vh;
    }

    .rohtas-block {
        padding: 60px 0;
    }

    .rohtas-content {
        padding: 0;
    }

    .rohtas-content .rohtas-block + .rohtas-block {
        margin-top: 0;
    }

    .rohtas-hero__hint {
        font-size: 12px;
        bottom: 14px;
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }
}

@media (max-width: 575px) {
    .rohtas-hero {
        min-height: 320px;
    }
}
