:root {
    --maroon-deep: #4d0f1f;
    --maroon: #7a1930;
    --royal-blue: #1f3f6b;
    --gold: #c9a24a;
    --gold-light: #e8cf8a;
    --cream: #f6ecd8;
    --cream-deep: #efdfbe;
    --ink: #3a1c14;
    --brand-gradient: linear-gradient(135deg, var(--gold-light), var(--gold));
    --brand-dark: var(--maroon-deep);
    --font-display: 'Fraunces', 'Lato', 'Segoe UI', serif;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    background-color: var(--cream);
    color: var(--ink);
}

a {
    text-decoration: none;
}

/* Jharokha-inspired scalloped divider */
.scallop-strip {
    height: 12px;
    background:
        radial-gradient(circle at 10px 0, transparent 9px, var(--gold) 9px 10px, transparent 10px) 0 0 / 20px 12px repeat-x,
        var(--maroon);
}

.btn-brand {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 25, 48, 0.35);
}

.btn-brand-alt {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    border-radius: 4px;
    background: transparent;
    color: var(--royal-blue);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1.5px solid var(--royal-blue);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-brand-alt:hover {
    background: var(--royal-blue);
    color: var(--cream);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--maroon-deep);
}

/* Header */
#site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

#site-header-wrap.site-header-hidden {
    transform: translateY(-100%);
}

.top-accent-bar {
    height: 12px;
    background:
        radial-gradient(circle at 10px 0, transparent 9px, var(--gold) 9px 10px, transparent 10px) 0 0 / 20px 12px repeat-x,
        var(--maroon);
}

.site-header {
    background: rgba(246, 236, 216, 0.94);
    backdrop-filter: blur(8px);
    padding: 0;
    border-bottom: 2px solid var(--maroon);
}

.site-header .navbar {
    padding: 0.2rem 1.5rem;
    max-width: 1140px;
}

.site-header .logo-img {
    height: 65px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

.site-nav {
    margin-left: 60px;
}

.site-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    color: var(--ink);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0 1.25rem !important;
    margin: 0;
}

.site-nav .nav-link:hover {
    color: var(--maroon);
}

.site-nav .nav-link.active {
    color: var(--maroon);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(122, 25, 48, 0.08);
    color: var(--maroon);
    margin-left: 0.4rem;
    transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {
    background: var(--maroon);
    color: var(--gold-light);
}

/* Hero slider */
.hero-slide {
    height: 650px;
    background-color: var(--cream-deep);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide-wrap {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    color: var(--ink);
    max-width: 640px;
    padding: 2.25rem 2.5rem 2rem;
    background: rgba(246, 236, 216, 0.92);
    border: 2px solid var(--maroon);
    border-radius: 0 0 16px 16px;
}

.hero-slide .hero-content::before {
    content: "";
    position: absolute;
    top: -76px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 84px;
    background: rgba(246, 236, 216, 0.92);
    border: 2px solid var(--maroon);
    border-bottom: none;
    border-radius: 50% 50% 0 0 / 70px 70px 0 0;
    z-index: -1;
}

.hero-slide .hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--maroon-deep);
}

.hero-slide .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 30px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background-color: var(--maroon);
    border-radius: 4px;
    opacity: 1;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
}

/* Page banner (About/Event/Gallery/Contact hero strip) */
.page-banner {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 15, 31, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner h1 {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* About */
.about-kicker-banner {
    position: relative;
    height: 252px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--maroon-deep);
}

.about-kicker-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(77, 15, 31, 0.55);
}

.about-kicker-banner .container {
    position: relative;
    z-index: 2;
}

.about-kicker-banner .section-kicker-text {
    color: var(--gold-light);
}

.about-kicker-banner .section-kicker-line {
    border-top-color: var(--gold-light);
}

.section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.section-kicker-line {
    flex: 1;
    max-width: 350px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
    border-top: none;
}

.section-kicker-icon {
    margin: 0 8px;
    color: var(--maroon);
    font-size: 1.1rem;
    line-height: 1;
}

.section-kicker-text {
    margin: 0 8px;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: capitalize;
    color: var(--maroon-deep);
}

.about-heading {
    font-family: var(--font-display);
    color: var(--maroon);
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    display: block;
}

.about-paragraph {
    color: var(--ink);
    opacity: 0.9;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 25.6px;
}

/* Ruchi Gujjar bio */
.bio-section {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    padding: 0.625rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.bio-section .about-heading {
    color: var(--gold-light);
}

.bio-section .about-paragraph {
    color: var(--cream);
    opacity: 0.9;
}

.btn-brand-dark {
    background: transparent;
    border: 1.5px solid var(--gold-light);
    color: var(--gold-light);
}

.btn-brand-dark:hover {
    background: var(--gold-light);
    color: var(--maroon-deep);
}

.bio-video {
    width: 100%;
    max-width: 420px;
    max-height: 360px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    border: 3px solid var(--gold);
}

.about-section .about-img,
.about-img {
    border-radius: 8px 8px 90px 90px / 8px 8px 60px 60px;
    width: 100%;
    object-fit: cover;
    border: 3px solid var(--maroon);
}

.about-content-section {
    position: relative;
    background-color: var(--cream);
    padding: 4rem 0;
    overflow: hidden;
}

.about-content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 3%, rgba(201, 162, 74, 0.22), rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 60% 60%, rgba(31, 63, 107, 0.12), rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 36% 65%, rgba(122, 25, 48, 0.14), rgba(255, 255, 255, 0) 9%);
    z-index: 0;
    pointer-events: none;
    animation: aboutFluidBreathe 9s ease-in-out infinite;
}

@keyframes aboutFluidBreathe {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.55; }
}

.about-content-section > .container {
    position: relative;
    z-index: 1;
}

/* Awards */
.awards-section {
    background: linear-gradient(160deg, var(--maroon-deep), var(--maroon));
    color: var(--cream);
    padding: 4rem 0;
}

.awards-section p {
    color: var(--cream);
}

.awards-section .section-title {
    color: var(--gold-light);
}

.awards-lead {
    max-width: 545px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.videos-lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.text-brand-pink {
    color: var(--gold-light);
}

.youtube-cta-section {
    padding: 3.5rem 0;
}

.youtube-cta-icon {
    display: block;
    margin: 1.5rem auto 0;
    font-size: 2.75rem;
    color: var(--gold-light);
}

.video-grid-section {
    position: relative;
    background-color: var(--cream);
    padding: 3.5rem 0;
    overflow: hidden;
}

.video-grid-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 3%, rgba(201, 162, 74, 0.22), rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 60% 60%, rgba(122, 25, 48, 0.14), rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 36% 65%, rgba(31, 63, 107, 0.12), rgba(255, 255, 255, 0) 9%);
    z-index: 0;
    pointer-events: none;
    animation: videoGridFluidBreathe 9s ease-in-out infinite;
}

.video-grid-section .container {
    position: relative;
    z-index: 1;
}

@keyframes videoGridFluidBreathe {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

.events-lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.awards-icon {
    display: block;
    font-size: 1.75rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.award-card {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 4px;
    background: rgba(246, 236, 216, 0.06);
    border: 1px solid rgba(201, 162, 74, 0.4);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-light);
    box-shadow: 0 12px 28px rgba(201, 162, 74, 0.25);
}

.award-card img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gold-light);
}

.award-card p {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.85;
    margin: 0;
}

/* Modi Necklace showcase */
.necklace-section {
    background: linear-gradient(to right, var(--cream), var(--cream-deep));
}

.necklace-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.necklace-sep-line {
    flex: 1 1 auto;
    max-width: 130px;
    border-top: 1px solid var(--gold);
}

.necklace-icon {
    width: 25px;
    height: 33px;
    fill: var(--maroon);
    flex-shrink: 0;
}

.necklace-heading {
    color: var(--maroon-deep);
    font-size: 25px;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0;
    white-space: nowrap;
}

.necklace-carousel-wrap {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem;
}

.necklace-track-col {
    position: relative;
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
}

.necklace-track {
    flex: 1 1 auto;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.necklace-track::-webkit-scrollbar {
    display: none;
}

.necklace-slide {
    position: relative;
    flex: 0 0 calc(50% - 3px);
    scroll-snap-align: start;
}

.necklace-slide .necklace-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    border: 2px solid var(--gold);
}

.necklace-video-slide {
    position: relative;
    flex: 1 1 50%;
    min-width: 0;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 2px solid var(--gold);
}

.necklace-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

.necklace-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}

.necklace-nav-prev {
    left: 6px;
}

.necklace-nav-next {
    right: 6px;
}

@media (max-width: 768px) {
    .necklace-carousel-wrap {
        height: clamp(160px, 45vw, 220px);
    }
}

/* Videos section */
.videos-section {
    background: linear-gradient(160deg, var(--maroon-deep), var(--maroon));
    color: var(--cream);
}

.videos-section p {
    color: var(--cream);
}

.videos-section .section-title {
    color: var(--gold-light);
}

.ratio-9x16 {
    --bs-aspect-ratio: 177.7778%;
}

/* Video / Event grids */
.media-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(77, 15, 31, 0.15);
    height: 100%;
    border: 1px solid rgba(201, 162, 74, 0.3);
}

.media-card img,
.media-card iframe {
    width: 100%;
    display: block;
}

.media-card .ratio {
    background: var(--maroon-deep);
}

.event-card {
    background: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: 4px;
    padding: 0.5rem;
}

.event-card img,
.event-card video {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.event-card figcaption {
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    color: var(--maroon-deep);
}

.events-section .section-title {
    color: var(--maroon-deep);
}

/* Gallery */
.gallery-filters a {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin: 0 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--maroon);
    background: transparent;
    color: var(--maroon);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.gallery-filters a.active {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--gold-light);
    border-color: var(--gold);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(122, 25, 48, 0.25);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 15, 31, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding-left: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-label {
    color: var(--gold-light);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-align: left;
}

.gallery-item-zoom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-zoom {
    transform: scale(1);
}

/* Gallery lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(77, 15, 31, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 162, 74, 0.2);
    border: none;
    color: var(--gold-light);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-nav:hover {
    background: rgba(201, 162, 74, 0.4);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-counter {
    position: absolute;
    top: 24px;
    left: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.gallery-lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 30px;
    color: var(--cream);
    font-size: 1rem;
}

/* Contact */
.contact-info-card {
    text-align: center;
    height: 100%;
}

.contact-info-card .icon {
    color: var(--maroon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    background: none;
}

.col-md-4:nth-child(2) .contact-info-card .icon {
    color: var(--royal-blue);
}

.col-md-4:nth-child(3) .contact-info-card .icon {
    color: var(--gold);
}

.contact-info-card h5 {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--maroon-deep);
}

.contact-form .form-control {
    border-radius: 4px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--maroon);
    background: transparent;
    color: var(--ink);
}

.contact-form .form-control::placeholder {
    color: rgba(58, 28, 20, 0.5);
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 74, 0.25);
}

.contact-form button[type="submit"] {
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background: var(--maroon-deep);
    color: var(--cream);
    padding: 2rem 0 1rem;
    border-top: 3px solid var(--gold);
}

.site-footer h5 {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer p {
    color: var(--cream);
    opacity: 0.85;
    font-size: 14px;
}

.footer-logo {
    max-width: 220px;
    height: auto;
}

.footer-bio {
    text-transform: capitalize;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    margin-right: 0.5rem;
}

.site-footer a {
    color: var(--cream);
}

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

.site-footer .copyright {
    background: #000;
    margin: 2rem calc(-50vw + 50%) 0;
    padding: 0.9rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    border-top: 1px solid rgba(201, 162, 74, 0.4);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--gold-light);
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
    border: 1px solid var(--gold);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--maroon-deep);
}

.back-to-top.show {
    display: flex;
}

section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
    }

    .hero-slide .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-slide .hero-content::before {
        height: 60px;
        top: -56px;
    }

    section {
        padding: 2.5rem 0;
    }
}
