:root {
    --bg-color: #0a0a0a;
    --text-main: #ffffff;
    /* --accent: #3461ff; */
    --accent: #3482ff;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

@font-face {
    font-family: 'ChequeFont';
    src: url('font/Cheque-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Amsterdam';
    src: url('font/Amsterdam.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* -----------------------------------------------------
    LOCOMOTIVE BASE FOR RESET
----------------------------------------------------- */
html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.has-scroll-smooth {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

.intro {
    height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.outtro {
    height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    width: 50%;
    padding-left: 8%;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "League Spartan", sans-serif;
}

.hero-title {
    font-family: "DM Serif Display", serif;
    font-size: 5.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    perspective: 1200px;
}

.title-line {
    overflow: hidden;
    display: block;
}

.char {
    display: inline-block;
}

.hero-description {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.9;
    font-family: "Inter", sans-serif;
    margin-bottom: 35px;
}

.hero-date {
    font-family: "Cardo", serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: #d4af37;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #0a0a0a 0%,
            rgba(10, 10, 10, 0.92) 35%,
            rgba(10, 10, 10, 0.45) 70%,
            rgba(10, 10, 10, 0.15) 100%);
    z-index: 1;
}

/* =========================================================
   HERO SECTION RESPONSIVE
   ========================================================= */

/* ---------------- Large Laptop ---------------- */

@media (max-width:1400px) {

    .hero-content {
        padding-left: 6%;
        width: 52%;
    }

    .hero-title {
        font-size: 4.8rem;
    }

    .hero-description {
        max-width: 480px;
    }

    .hero-image {
        width: 46%;
    }

}

/* ---------------- Laptop ---------------- */

@media (max-width:1200px) {

    .hero-content {
        width: 55%;
        padding-left: 6%;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 440px;
    }

    .hero-date {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .hero-image {
        width: 45%;
    }

}

/* ---------------- Tablet ---------------- */

@media (max-width:991px) {

    .hero-section {

        min-height: 100vh;

        justify-content: center;

        padding: 90px 40px;

        text-align: center;

    }

    .hero-overlay {

        background: linear-gradient(rgba(0, 0, 0, .82),
                rgba(0, 0, 0, .72));

    }

    .hero-content {

        width: 100%;

        padding: 0;

        margin: auto;

        min-width: 0;

    }

    .hero-image {

        width: 100%;

        height: 100%;

        left: 0;

        top: 0;

        opacity: .28;

    }

    .hero-title {

        font-size: 3.6rem;

    }

    .hero-description {

        max-width: 100%;

        margin: 30px auto;

        padding: 0 15px;

        box-sizing: border-box;

    }

}

/* ---------------- Large Mobile ---------------- */

@media (max-width:768px) {

    .hero-section {

        padding: 70px 28px;

    }

    .hero-subtitle {

        font-size: .8rem;

        letter-spacing: 3px;

        padding-right: 25px;

    }

    .hero-title {

        font-size: 2.4rem;

        line-height: 1.18;

        padding-right: 25px;

    }

    .hero-description {

        font-size: .96rem;

        line-height: 1.9;

        padding-right: 40px;

    }

    .hero-date {

        font-size: .95rem;

        letter-spacing: 4px;

        padding-right: 25px;

    }

}

/* ---------------- Mobile ---------------- */

@media (max-width:576px) {

    .hero-section {

        padding: 60px 22px;

    }

    .hero-title {

        font-size: 1.8rem;

    }

    .hero-description {

        font-size: .9rem;

        line-height: 1.8;

    }

    .hero-date {

        font-size: .85rem;

        letter-spacing: 3px;

    }

}

/* ---------------- Small Mobile ---------------- */

@media (max-width:380px) {

    .hero-section {

        padding: 55px 18px;

    }

    .hero-title {

        font-size: 1.5rem;

    }

    .hero-description {

        font-size: .86rem;

    }

}

.mandap-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.mandap-image {
    position: absolute;
    inset: 0;
}

.mandap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.mandap-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .75));

    backdrop-filter: brightness(.8);
}

.mandap-content {
    position: relative;
    z-index: 5;

    width: 850px;
    text-align: center;
    color: white;
}

.mandap-subtitle {

    font-family: "League Spartan";

    letter-spacing: 7px;

    text-transform: uppercase;

    color: #D6B56D;

    font-size: .95rem;

}

.mandap-title {

    margin-top: 20px;

    font-size: 6rem;

    font-family: "DM Serif Display";

    font-weight: 400;

}

.mandap-line {

    width: 120px;

    height: 1px;

    background: #D6B56D;

    margin: 35px auto;

}

.mandap-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0 50px;
}

.detail-item {
    text-align: center;
    min-width: 170px;
}

.detail-label {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: .75rem;
    letter-spacing: 4px;
    color: #D6B56D;
    margin-bottom: 12px;
}

.detail-item h4 {
    margin: 0;
    font-family: "Cardo", serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
}

.detail-divider {
    width: 1px;
    height: 55px;
    background: rgba(214, 181, 109, .45);
}

@media (max-width:768px) {

    .mandap-details {
        flex-direction: column;
        gap: 25px;
    }

    .detail-divider {
        width: 60px;
        height: 1px;
    }
}

.mandap-description {

    width: 75%;

    margin: auto;

    line-height: 2;

    font-size: 1.1rem;

    color: rgba(255, 255, 255, .85);

}

.haldi-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.haldi-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.haldi-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .55) 35%,
            rgba(0, 0, 0, .15) 100%);
}

.haldi-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.haldi-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.haldi-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.haldi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .15) 100%);
    z-index: 2;
}

.haldi-content {
    position: relative;
    z-index: 3;
    width: 650px;
    margin-left: 8%;
    color: #fff;
}

.haldi-subtitle {
    display: block;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #e4c35b;
    font-family: "League Spartan", sans-serif;
}

.haldi-title {
    font-size: 6rem;
    line-height: 1;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

.haldi-details {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.haldi-detail span {
    display: block;
    color: #e4c35b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.haldi-detail h4 {
    margin: 0;
    font-family: "Cardo", serif;
    font-weight: 400;
}

.haldi-description {
    line-height: 2;
    color: rgba(255, 255, 255, .9);
}

.dandiya-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dandiya-image {
    position: absolute;
    inset: 0;
}

.dandiya-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.dandiya-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(270deg,
            rgba(0, 0, 0, .82) 15%,
            rgba(0, 0, 0, .45) 45%,
            rgba(0, 0, 0, .10) 100%);
}

.dandiya-content {
    position: relative;
    z-index: 5;
    width: 42%;
    margin-right: 8%;
    color: #fff;
}

.dandiya-subtitle {
    display: block;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #d9b46b;
    font-family: "League Spartan";
    margin-bottom: 20px;
}

.dandiya-title {
    font-size: 5.8rem;
    font-family: "DM Serif Display";
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

#dandiya-svg svg {
    width: 100%;
    height: auto;
    overflow: visible;
    transform: scaleY(-1);
}

#dandiya-svg path {
    fill: transparent;
    stroke: #d6b56d;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dandiya-details {
    display: flex;
    gap: 50px;
    margin-bottom: 35px;
}

.detail span {
    display: block;
    color: #d9b46b;
    font-size: .8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.detail h4 {
    margin: 0;
    font-family: "Cardo";
    font-weight: 400;
}

.dandiya-description {
    line-height: 2;
    color: rgba(255, 255, 255, .9);
}

.invite-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invite-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.invite-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.invite-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .82));
    backdrop-filter: blur(2px);
}

.invite-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(214, 181, 109, .18),
            transparent 70%);
    z-index: 3;
    animation: glow 8s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.invite-content {
    position: relative;
    z-index: 5;
    width: 900px;
    text-align: center;
    color: #fff;
    font-family: "Lobster Two", serif;
}

.invite-heading {
    display: block;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 45px;
    color: #d8bc73;
}


.invite-subtitle {
    display: block;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #D6B56D;
    margin-bottom: 25px;
    font-family: "League Spartan";
}

.invite-host {
    width: 100%;
    /* margin: 0 auto; */
    font-family: "Lobster Two", cursive;
    font-size: 1.6rem;
    line-height: 1.35;
    /* margin-bottom: 25px; */
    color: rgba(255, 255, 255, .92);
}

.invite-host strong {
    color: #fff;
    font-weight: 700;
}

.couple-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.bride-name,
.groom-name {
    font-size: 4rem;
    font-weight: 400;
    line-height: .2;
    color: white;
}


.and-symbol {
    line-height: 1;
    font-size: 5rem;
    color: #d8bc73;
}

.groom-family {

    font-size: 1.8rem;

    line-height: 1.3;

    margin: 25px 0 40px;

}

.groom-family span {
    color: #d8bc73;
    display: block;

    margin-bottom: 5px;

    font-size: 1rem;

    letter-spacing: 3px;
}

.invite-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.divider {
    width: 1px;
    height: 120px;
    background: #d8bc73;
}

.info-box {
    width: 100%;
}

.info-box h5 {
    font-size: 1.5rem;
    color: #d8bc73;
    margin: 10px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "League Spartan", sans-serif;
}

.info-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
}

.invite-family {
    line-height: 2.1;
    color: rgba(255, 255, 255, .85);
}

.invite-divider {
    width: 120px;
    height: 1px;
    background: #D6B56D;
    margin: 45px auto;
}

.invite-message {
    width: 70%;
    margin: auto;
    line-height: 2;
    color: rgba(255, 255, 255, .8);
}

.invite-btn {
    display: inline-block;
    margin-top: 45px;
    border: 1px solid #D6B56D;
    padding: 18px 45px;
    color: #D6B56D;
    letter-spacing: 3px;
    transition: .4s;
    cursor: pointer;
}

.invite-btn:hover {
    background: #D6B56D;
    color: black;
}

.text-mask {
    overflow: hidden;
    display: block;
}

.text-mask>span {
    display: block;
    transform: translateY(110%);
}

.music-btn {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .2);

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;

    transition: .4s;

}

.music-btn:hover {

    transform: scale(1.08);

    background: #D6B56D;

}

.music-btn.playing {

    animation: musicPulse 2s infinite;

}

@keyframes musicPulse {

    0% {

        box-shadow: 0 0 0 0 rgba(214, 181, 109, .5);

    }

    70% {

        box-shadow: 0 0 0 18px transparent;

    }

    100% {

        box-shadow: 0 0 0 0 transparent;

    }

}

/* =========================================================
   MANDAP, HALDI, DANDIYA, INVITE RESPONSIVE STYLES
   ========================================================= */

/* ---------------- Tablet (max-width: 991px) ---------------- */
@media (max-width: 991px) {

    .mandap-section,
    .haldi-section,
    .dandiya-section,
    .invite-section {
        padding: 0px 20px;
    }

    /* Mandap Muhurat Section */
    .mandap-title {
        font-size: 4.2rem;
    }

    .mandap-description {
        width: 85%;
        max-width: 100%;
        font-size: 1rem;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Haldi Ceremony Section */
    .haldi-section {
        justify-content: center;
        text-align: center;
        padding: 90px 40px;
    }

    .haldi-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
    }

    .haldi-content {
        width: 100%;
        margin-left: 0;
        min-width: 0;
    }

    .haldi-title {
        font-size: 4.2rem;
    }

    .haldi-details {
        justify-content: center;
    }

    /* Dandiya Night Section */
    .dandiya-section {
        justify-content: center;
        text-align: center;
        padding: 90px 40px;
    }

    .dandiya-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
    }

    .dandiya-content {
        width: 100%;
        margin-right: 0;
        min-width: 0;
    }

    .dandiya-title {
        font-size: 4.2rem;
    }

    .dandiya-details {
        justify-content: center;
    }

    #dandiya-svg svg {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Invitation Card Section */
    .invite-content {
        width: 90%;
    }

    .invite-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .invite-host {
        font-size: 1.4rem;
    }

    .bride-name,
    .groom-name {
        font-size: 3.5rem;
    }

    .and-symbol {
        font-size: 4rem;
    }

    .groom-family {
        font-size: 1.5rem;
        margin: 20px 0 30px;
    }

    .info-box h5 {
        font-size: 1.3rem;
    }

    .info-box p {
        font-size: 1.15rem;
    }
}

/* ---------------- Large Mobile (max-width: 768px) ---------------- */
@media (max-width: 768px) {

    .mandap-content {
        margin-right: 25px;
    }

    /* Mandap Muhurat Section */
    .mandap-title {
        font-size: 3.2rem;
    }

    .mandap-description {
        font-size: 1rem;
    }

    /* Haldi Ceremony Section */
    .haldi-section {
        padding: 70px 28px;
    }

    .haldi-content {
        margin-right: 30px;
    }

    .haldi-title {
        font-size: 3.2rem;
    }

    .haldi-description {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Dandiya Night Section */
    .dandiya-section {
        padding: 70px 28px;
    }

    .dandiya-title {
        font-size: 3.2rem;
    }

    .dandiya-description {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0 15px;
        box-sizing: border-box;
    }

    #dandiya-svg svg {
        max-width: 400px;
        margin-left: 110px;
    }

    /* Invitation Card Section */
    .invite-content {
        width: 95%;
    }

    .invite-heading {
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .invite-host {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .couple-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .bride-name,
    .groom-name {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .and-symbol {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 5px 0;
    }

    .groom-family {
        font-size: 1.2rem;
        margin: 15px 0 25px;
    }

    .invite-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .info-box h5 {
        font-size: 1.1rem;
        margin: 5px 0;
    }

    .info-box p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ---------------- Mobile (max-width: 576px) ---------------- */
@media (max-width: 576px) {

    /* Mandap Muhurat Section */
    .mandap-section {
        padding: 60px 22px;
    }

    .mandap-title {
        font-size: 2.5rem;
        margin-top: 15px;
    }

    .mandap-line {
        margin: 25px auto;
    }

    .mandap-description {
        font-size: 0.9rem;
        line-height: 1.8;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Haldi Ceremony Section */
    .haldi-section {
        padding: 60px 22px;
    }

    .haldi-title {
        font-size: 2.5rem;
    }

    .haldi-details {
        gap: 30px;
        margin-bottom: 20px;
    }

    .haldi-detail span {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .haldi-detail h4 {
        font-size: 1.1rem;
    }

    .haldi-description {
        font-size: 0.9rem;
        line-height: 1.8;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Dandiya Night Section */
    .dandiya-section {
        padding: 60px 22px;
    }

    .dandiya-title {
        font-size: 2.5rem;
    }

    .dandiya-details {
        gap: 30px;
        margin-bottom: 20px;
    }

    .dandiya-description {
        font-size: 0.9rem;
        line-height: 1.8;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    #dandiya-svg svg {
        max-width: 300px;
    }

    /* Invitation Card Section */
    .invite-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .invite-host {
        font-size: 1.1rem;
    }

    .bride-name,
    .groom-name {
        font-size: 2.4rem;
        margin: 0;
        padding: 0;
    }

    .groom-family {
        font-size: 1.1rem;
    }

    .info-box h5 {
        font-size: 1rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }
}

/* ---------------- Small Mobile (max-width: 380px) ---------------- */
@media (max-width: 380px) {
    .mandap-title {
        font-size: 2.2rem;
    }

    .haldi-title {
        font-size: 2.2rem;
    }

    .dandiya-title {
        font-size: 2.2rem;
    }

    .bride-name,
    .groom-name {
        font-size: 2.1rem;
        margin: 0;
        padding: 0;
    }

    #dandiya-svg svg {
        max-width: 250px;
    }
}