/* ============================================================
   LUXMICE — style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A96E;
    --gold-light: #E8C98A;
    --gold-dark: #9B7A3D;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #222222;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --off-white: #F5F0EA;
    --light-grey: #E8E8E8;
    --mid-grey: #888888;
    --red: #8B1A1A;
    --red-kakshya: #C0392B;
    --red-arth: #800000;
    --yellow-vv: #F5C400;
    --font-display: 'Trajan Pro', 'Cinzel', 'Playfair Display', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-light: 'Poppins', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.97);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.nav-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,169,110,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1200 0%, #000 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(201, 169, 110, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(201, 169, 110, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 20%, rgba(201, 169, 110, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(201, 169, 110, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 15%, rgba(201, 169, 110, 0.4) 0%, transparent 100%);
    background-size: 400px 400px, 300px 300px, 500px 500px, 350px 350px, 450px 450px;
    animation: particleDrift 20s linear infinite;
}

@keyframes particleDrift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 200px 200px, -150px 100px, 100px -200px, 200px -100px, -100px 200px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo {
    height: 90px;
    width: auto;
    margin: 0 auto 28px;
    animation: heroLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp 1s 0.5s ease forwards;
    opacity: 0;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
    animation: fadeUp 1s 0.7s ease forwards;
    opacity: 0;
}

.hero-desc {
    font-family: var(--font-light);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 36px;
    animation: fadeUp 1s 0.9s ease forwards;
    opacity: 0;
}

.btn-gold {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s 1.1s ease forwards;
    opacity: 0;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
    color: var(--black);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold span {
    position: relative;
    z-index: 1;
}

.btn-gold-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    padding: 12px 34px;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 1.5s ease forwards;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

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

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

/* ============================================================
   SECTION COMMONS
   ============================================================ */
   section{
    width: 100%;
    overflow: hidden;
   }
.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 70px 0;
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 50px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title.white {
    color: var(--white);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin-bottom: 28px;
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.section-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.section-body.white {
    color: rgba(255, 255, 255, 0.8);
}

.section-body.light {
    color: rgba(255, 255, 255, 0.65);
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   PORTFOLIOS STRIP (Page 2 logos)
   ============================================================ */
#portfolios {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.portfolio-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 100px;
}

.portfolio-logo-item {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), opacity var(--transition);
}

.portfolio-logo-item:hover {
    transform: scale(1.08);
    opacity: 1;
}

.portfolio-logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.portfolio-logo-item:hover img {
    filter: grayscale(0%);
}

/* ============================================================
   ABOUT (Page 3)
   ============================================================ */
#about {
    background: var(--white);
}

.about-image-col {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding-left: 40px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.about-tag {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 5px 14px;
    background: transparent;
    transition: all var(--transition);
}

.about-tag:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================================
   THE LUXO SHOW (Page 4)
   ============================================================ */
#luxo-show {
    background: var(--white);
    padding: 0;
}

.luxo-top {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 500px;
}

.luxo-top-left {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 60px;
}

.luxo-top-logo {
    max-width: 280px;
    margin-bottom: 20px;
    transition: transform var(--transition);
}

.luxo-top-logo:hover {
    transform: scale(1.03);
}

.luxo-tagline-img {
    max-width: 400px;
    margin-top: 10px;
    width: 100%
}

.luxo-top-right {
    position: relative;
    overflow: hidden;
}

.luxo-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.luxo-top-right:hover img {
    transform: scale(1.04);
}

.luxo-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.luxo-col {
    padding: 50px 40px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
}

.luxo-col-1 {
    background: var(--black);
    color: rgba(255, 255, 255, 0.82);
}

.luxo-col-2 {
    background: #B8904A;
    color: rgba(255, 255, 255, 0.95);
}

.luxo-col-3 {
    background: var(--dark-2);
    color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   SHOW HIGHLIGHTS (Page 5)
   ============================================================ */
#highlights {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.highlights-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/show-highlights-bg.webp');
    background-size: cover;
    background-position: center;
}

.highlights-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 8, 0.88);
}

.highlights-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 600px;
}

.highlights-left {
    display: flex;
    align-items: flex-end;
    padding: 60px 0 60px 0;
    overflow: hidden;
}

.highlights-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.9;
}

.highlights-right {
    padding: 60px 60px 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlights-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.1);
}

.highlight-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* ============================================================
   PRIVE (Page 6)
   ============================================================ */
#prive {
    background: var(--white);
    padding: 100px 0;
}

.prive-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 600px;
    align-items: center;
}

.prive-left {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    position: relative;
}

.prive-accent-bar {
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 6px;
    background: var(--red);
}

.prive-logo-wrap {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prive-logo-wrap img {
    max-width: 220px;
}

.prive-right {
    position: relative;
}

.prive-right img {
    width: 100%;
    max-width: 700px;
}

.prive-img-left,
.prive-img-right {
    position: relative;
    overflow: hidden;
}

.prive-img-left img,
.prive-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.prive-img-left:hover img,
.prive-img-right:hover img {
    transform: scale(1.05);
}

.prive-stripe {
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    top: 35%;
    background: rgba(139, 26, 26, 0.55);
    pointer-events: none;
}

/* ============================================================
   TRUSTFORT (Page 7)
   ============================================================ */
#trustfort {
    background: #f8f8f8;
}

.trustfort-layout {
    display: grid;
    grid-template-columns: 30% 30% 40%;
    gap: 0;
    min-height: 580px;
}

.trustfort-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
}

.trustfort-logo {
    max-width: 345px;
    margin-bottom: 28px;
    width: 100%;
}

.trustfort-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    text-align: center;
    margin-bottom: 28px;
}

.trustfort-center {
    position: relative;
    overflow: hidden;
}

.trustfort-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.trustfort-center:hover img {
    transform: scale(1.04);
}

.trustfort-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
}

.services-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.services-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

.regions-block {
    margin-bottom: 20px;
}

.regions-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

/* ============================================================
   TRUSTFORT GALLERY (Page 8)
   ============================================================ */
#trustfort-gallery {
    padding: 0;
    overflow: hidden;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.15);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}
.gallery-item.wide3 {
    grid-column: span 1;
}

/* ============================================================
   VIRSAA (Page 9)
   ============================================================ */
#virsaa {
    background: var(--white);
    padding: 150px 0 0;
}

.virsaa-layout {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 600px;
}

.virsaa-left {
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 60px 50px;
}

.virsaa-logo {
    max-width: 450px;
    margin-bottom: 40px;
    width: 100%;
}

.virsaa-singers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    flex: 1;
}

.virsaa-singers img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.virsaa-singers img:hover {
    transform: scale(1.04);
}

.virsaa-right {
    display: grid;
    grid-template-rows: auto 1fr;
}

.virsaa-top-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3px;
    overflow: hidden;
}

.virsaa-top-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.virsaa-top-images img:hover {
    transform: scale(1.04);
}

.virsaa-text-box {
    background: var(--red);
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.virsaa-quote {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.virsaa-artists {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   VIRSAA GALLERY (Page 10)
   ============================================================ */
#virsaa-gallery {
    padding: 0;
}

.virsaa-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.vg-item {
    overflow: hidden;
    position: relative;
}

.vg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vg-item:hover img {
    transform: scale(1.07);
}

.vg-item.vg-wide {
    grid-column: span 1;
}

.vg-item.vg-tall {
    grid-row: span 2;
}

/* ============================================================
   KAKSHYA (Page 11)
   ============================================================ */
#kakshya {
    background: var(--white);
    padding: 150px 0 0;
}

.kakshya-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 580px;
}

.kakshya-left {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 70px;
}

.kakshya-logo {
    max-width: 380px;
    margin-bottom: 0;
    width: 100%;
}

.kakshya-right {
    background: var(--red-kakshya);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.kakshya-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================================
   KAKSHYA GALLERY (Page 12)
   ============================================================ */
#kakshya-gallery {
    background: var(--black);
    padding: 0;
}

.kakshya-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.kg-item {
    overflow: hidden;
    position: relative;
}

.kg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kg-item:hover img {
    transform: scale(1.06);
}

.kg-item.kg-wide {
    grid-column: span 2;
}

/* ============================================================
   ARTH THEATRE (Page 13)
   ============================================================ */
#arth {
    background: var(--white);
    padding: 0;
}

.arth-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 600px;
}

.arth-left {
    background: var(--red-arth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.arth-logo {
    max-width: 220px;
    margin-bottom: 40px;
}

.arth-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.arth-right {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.arth-theatre-img {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
}

.arth-theatre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.arth-theatre-img:hover img {
    transform: scale(1.04);
}

.arth-overlay-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(139, 80, 40, 0.88);
    padding: 32px 36px;
    backdrop-filter: blur(4px);
}

.arth-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.arth-overlay-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
}

.arth-celebration {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 700;
}

/* ============================================================
   VIRSAA VOCALS (Page 14)
   ============================================================ */
#virsaa-vocals {
    background: var(--white);
}

.vocals-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    min-height: 540px;
}

.vocals-left {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.vocals-logo {
    max-width: 260px;
    margin-bottom: 28px;
}

.vocals-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.vocals-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

.vocals-website {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: lowercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: color var(--transition);
}

.vocals-website:hover {
    color: var(--gold-dark);
}

.vocals-right {
    background: var(--yellow-vv);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.vocals-site-preview {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition);
}

.vocals-site-preview:hover {
    transform: scale(1.02) rotate(-0.5deg);
}

/* ============================================================
   KALAAM E VIRSAA (Page 15)
   ============================================================ */
#kalaam {
    background: var(--off-white);
}

.kalaam-layout {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 70px;
    align-items: center;
}

.kalaam-logo {
    max-width: 380px;
    margin-bottom: 32px;
}

.kalaam-body {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

.kalaam-img-wrap {
    position: relative;
    overflow: hidden;
}

.kalaam-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.kalaam-img-wrap:hover img {
    transform: scale(1.04);
}

/* ============================================================
   TRUSTFORT STUDIO (Page 16)
   ============================================================ */
#trustfort-studio {
    background: var(--white);
}

.studio-layout {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    gap: 0;
    min-height: 500px;
}

.studio-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    background: var(--white);
}

.studio-logo {
    max-width: 400px;
    margin-bottom: 0;
}

.studio-center {
    background: var(--light-grey);
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-tagline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 28px;
    font-style: italic;
}

.studio-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.85;
    color: #555;
}

.studio-right {
    position: relative;
    overflow: hidden;
}

.studio-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.studio-bottom {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 360px;
}

.studio-bottom-img {
    position: relative;
    overflow: hidden;
}

.studio-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.studio-bottom-img:hover img {
    transform: scale(1.04);
}

.studio-bottom-text {
    background: var(--dark-2);
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-section-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.studio-section-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.studio-gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--black);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 32px;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links{
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--mid-grey);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

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

.footer-portfolios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-portfolio-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--mid-grey);
    transition: color var(--transition);
}

.footer-portfolio-tag:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid-grey);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlights-right {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {

    /* Luxo Show */
    .luxo-top {
        grid-template-columns: 1fr;
    }

    .luxo-top-right {
        height: 350px;
    }

    .luxo-top-left {
        padding: 50px 40px;
    }

    .luxo-bottom {
        grid-template-columns: 1fr;
    }

    .luxo-col {
        padding: 36px 40px;
    }

    /* Highlights */
    .highlights-inner {
        grid-template-columns: 1fr;
    }

    .highlights-left {
        display: none;
    }

    .highlights-right {
        padding: 60px 40px;
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 16px;
    }

    /* Prive */
    .prive-layout {
        grid-template-columns: 1fr;
    }

    .prive-right {
        height: 400px;
    }

    .prive-left {
        padding: 50px 40px;
    }

    /* Trustfort */
    .trustfort-layout {
        grid-template-columns: 1fr;
    }

    .trustfort-center {
        height: 350px;
    }

    /* Gallery */
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 180px);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    /* Virsaa */
    .virsaa-layout {
        grid-template-columns: 1fr;
    }

    .virsaa-left {
        padding: 50px 40px;
    }

    .virsaa-top-images {
        height: 220px;
    }

    .virsaa-text-box {
        padding: 40px;
    }

    /* Virsaa gallery */
    .virsaa-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 400px);
    }

    .vg-item.vg-wide {
        grid-column: span 1;
    }

    .vg-item.vg-tall {
        grid-row: span 1;
    }

    /* Kakshya */
    .kakshya-layout {
        grid-template-columns: 1fr;
    }

    .kakshya-left {
        padding: 60px 40px;
    }

    .kakshya-right {
        padding: 50px 40px;
    }

    /* Kakshya gallery */
    .kakshya-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kg-item.kg-wide {
        grid-column: span 1;
    }

    /* ARTH */
    .arth-layout {
        grid-template-columns: 1fr;
    }

    .arth-left {
        padding: 50px 40px;
    }

    /* Vocals */
    .vocals-layout {
        grid-template-columns: 1fr;
    }

    .vocals-right {
        padding: 50px 40px;
        min-height: 350px;
    }

    .vocals-left {
        padding: 50px 40px;
    }

    /* Kalaam */
    .kalaam-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kalaam-img-wrap img {
        height: 320px;
    }

    /* Studio */
    .studio-layout {
        grid-template-columns: 1fr;
    }

    .studio-right {
        height: 250px;
    }

    .studio-bottom {
        grid-template-columns: 1fr;
    }

    .studio-bottom-img {
        height: 280px;
    }

    .studio-bottom-text {
        padding: 50px 40px;
    }

    .about-img-overlay {
        display: none;
    }

    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
    height: 26px;
}
    .section-pad {
        padding: 70px 0;
    }

    .hero-logo {
        height: 60px;
    }

    .portfolio-logos {
        gap: 24px 130px;
    }

    .portfolio-logo-item {
        width: 60px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .virsaa-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 480px);
    }

    .kakshya-gallery-grid {
        grid-template-columns: 1fr;
    }

    .kakshya-gallery-grid .kg-item.kg-wide {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .luxo-top-left {
        padding: 40px 24px;
    }

    .luxo-col {
        padding: 30px 24px;
    }

    .virsaa-singers img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .virsaa-gallery-grid {
        grid-template-columns: 1fr;
    }
    .kakshya-layout .kakshya-logo {
        max-width: 200px;
    }

    .arth-overlay-box {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }

    .kalaam-logo {
        max-width: 260px;
    }

    .studio-bottom-text {
        padding: 40px 24px;
    }

    .footer-portfolios-grid {
        grid-template-columns: 1fr;
    }

    .virsaa-singers {
        grid-template-columns: 1fr;
    }

    .virsaa-singers img {
        height: 200px;
    }
}