/* =====================================================
   VIDHASHA INTERNATIONAL — COMPILED CSS
   (Generated from SCSS — scss/main.scss)
===================================================== */


/* ── CSS Variables ── */

:root {
    --gold: #C5A028;
    --gold-light: #E8C84B;
    --gold-pale: #f5e9c0;
    --copper: #B87333;
    --copper-light: #D4924A;
    --silver: #8C9BAD;
    --silver-light: #C0C8D2;
    --forest: #1B3A2D;
    --forest-dark: #0d2018;
    --forest-light: #2a5040;
    --cream: #FAF7F0;
    --cream-dark: #F0EAD8;
    --dark: #080808;
    --text: #2a2a2a;
    --text-light: #666666;
    --white: #ffffff;
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}


/* ── Reset ── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    font-weight: 400;
}

em {
    font-style: italic;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ── Utilities ── */

.sec-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.sec-label.light {
    color: rgba(255, 255, 255, .55);
}

.sec-header {
    text-align: center;
    margin-bottom: 4rem;
}

.text-link {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--gold);
    transition: letter-spacing .3s;
}

.text-link:hover {
    letter-spacing: .18em;
}

.center {
    text-align: center;
}

.fi {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

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


/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 1px;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 40, .35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--forest-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--forest-dark);
}

.btn-white {
    background: #fff;
    color: var(--forest-dark);
}

.btn-white:hover {
    background: var(--gold-pale);
}

.btn-sm {
    padding: .5rem 1.1rem;
    font-size: .62rem;
}

.btn-full {
    width: 100%;
}


/* ── Navbar ── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 14, 10, .97);
    backdrop-filter: blur(12px);
    padding: .7rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .4);
}

.navbar__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-mark {
    width: 250px;
    height: 150px;
}

.logo-txt {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .1em;
}

.logo-sub {
    font-family: 'Raleway', sans-serif;
    font-size: .55rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: .28em;
    text-transform: uppercase;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.navbar__links li a {
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    padding: .45rem .9rem;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.navbar__links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: .9rem;
    right: .9rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: center;
}

.navbar__links li a:hover,
.navbar__links li a.active {
    color: var(--gold);
}

.navbar__links li a:hover::after,
.navbar__links li a.active::after {
    transform: scaleX(1);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: var(--transition);
}


/* ── Page Hero ── */

.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .45), rgba(0, 0, 0, .72));
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero__content p {
    color: rgba(255, 255, 255, .65);
    font-size: 1.1rem;
}


/* ── CTA Section ── */

.cta-sec {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest), var(--forest-dark));
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(197, 160, 40, .15) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-inner p {
    color: rgba(255, 255, 255, .6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}


/* ── Modal ── */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    padding: 2rem;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--cream);
    border-radius: 3px;
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform .35s;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--forest-dark);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: .88rem;
    border-radius: 1px;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    background: var(--gold);
    color: var(--dark);
}

.modal__img {
    height: 280px;
    overflow: hidden;
}

.modal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__body {
    padding: 2rem;
}

.modal__body h2 {
    margin: .75rem 0 1rem;
}

.modal__body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal__specs {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modal__specs span {
    font-size: .68rem;
    font-weight: 600;
    color: var(--forest);
    background: var(--cream-dark);
    padding: .22rem .6rem;
    border-radius: 1px;
}


/* ── Lightbox ── */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, .96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    padding: 2rem;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.lightbox__img {
    max-width: 800px;
    max-height: 75vh;
    width: 100%;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox__caption {
    color: rgba(255, 255, 255, .7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.lightbox__nav--prev {
    left: 2rem;
}

.lightbox__nav--next {
    right: 2rem;
}


/* ── Footer ── */

.footer {
    background: #040a06;
    padding: 5rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer__brand .navbar__logo {
    margin-bottom: 1.25rem;
}

.footer__brand p {
    color: rgba(255, 255, 255, .38);
    font-size: .84rem;
    line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer__links a {
    color: rgba(255, 255, 255, .4);
    font-size: .84rem;
    transition: color .2s;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact p {
    color: rgba(255, 255, 255, .4);
    font-size: .84rem;
    line-height: 1.8;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, .18);
    font-size: .72rem;
    letter-spacing: .1em;
}


/* ── Marquee ── */

.marquee-bar {
    background: var(--forest-dark);
    padding: .9rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeAnim 22s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
}

.marquee-track .dot {
    color: var(--gold);
    font-size: .45rem;
}


/* ── Animations ── */

@keyframes marqueeAnim {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: .35;
    }
    50% {
        opacity: .75;
    }
}

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


/* ── Responsive ── */

@media (max-width: 768px) {
    .navbar__hamburger {
        display: flex;
    }
    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 280px;
        background: var(--forest-dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: .5rem;
        transition: right .4s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, .3);
    }
    .navbar__links.open {
        right: 0;
    }
    .navbar__links li a {
        font-size: 1rem;
        padding: .75rem 1rem;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .lightbox__nav {
        display: none;
    }
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}