﻿:root {
    --mv-blue: #6f8da3;
    --mv-blue-dark: #5f7f95;
    --mv-blue-soft: #667787;
    --mv-blue-deep: #445867;
    --mv-beige: #f3efe9;
    --mv-white: #ffffff;
    --mv-text: #4d6678;
    --mv-heading: #5f7f95;
    --mv-border: rgba(77, 102, 120, 0.14);
    --mv-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    --mv-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
    --mv-header-offset: 148px;
    --mv-font-display: Georgia, "Times New Roman", serif;
    --mv-font-body: "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mv-beige);
    color: var(--mv-text);
    font-family: var(--mv-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* anchor offset for sticky header */
#home,
#about,
#album,
#faq,
#giftregistry {
    scroll-margin-top: var(--mv-header-offset);
}

/* common typography */
h1, h2, h3, h4, h5, h6,
.section-heading .heading,
.mv-brand,
.mv-story-title,
.mv-registry-title,
.mv-faq-title {
    font-family: var(--mv-font-display);
    color: var(--mv-heading);
    letter-spacing: 1px;
    line-height: 1.15;
}

p,
.mv-nav-link,
.mv-topbar,
#wfaq-list .wfaq-question,
#wfaq-list .wfaq-answer,
.mv-story-content,
.mv-registry-copy {
    font-family: var(--mv-font-body);
    color: var(--mv-text);
}

/* page cleanup */
.section,
.section-ptb-80,
.bg-light,
.con-dow,
.container,
.container-fluid {
    background: transparent;
}

/* header */
.mv-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--mv-beige);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

    .mv-header * {
        box-sizing: border-box;
    }

.mv-topbar {
    background: var(--mv-blue-dark);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    padding: 14px 18px;
}

.mv-nav-wrap {
    background: var(--mv-beige);
}

.mv-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mv-brand {
    display: block;
    text-decoration: none;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 16px;
    text-align: center;
}

.mv-nav {
    position: static !important;
    inset: auto !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background: transparent !important;
    transform: none !important;
    float: none !important;
}

.mv-nav-link {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

    .mv-nav-link:hover,
    .mv-nav-link:focus,
    .mv-nav-link.active {
        color: var(--mv-blue-dark);
        border-bottom-color: var(--mv-blue-dark);
    }

.mv-menu-toggle {
    display: none;
    position: absolute;
    left: 18px;
    top: 20px;
    border: 0;
    background: transparent;
    color: var(--mv-blue-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
}

.mv-header .mv-nav,
.mv-header .mv-nav-link,
.mv-header .mv-brand {
    float: none !important;
}

.mv-header .mv-nav-link {
    position: static !important;
}

/* hero */
.mv-hero {
    width: 100%;
    background: var(--mv-beige);
    padding: 34px 24px 10px;
}

.mv-hero-frame {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--mv-white);
    padding: 14px;
    border-radius: 18px;
    box-shadow: var(--mv-shadow-soft);
}

.mv-hero-image {
    display: block;
    width: 100%;
    height: min(72vh, 620px);
    min-height: 360px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
}

/* countdown section */
.con-dow {
    padding-top: 10px;
    padding-bottom: 10px;
}

    .con-dow .bg-theme {
        background: var(--mv-blue-dark) !important;
        border-radius: 14px;
        box-shadow: var(--mv-shadow);
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

.countdown {
    color: #fff;
    font-family: var(--mv-font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

    .countdown span {
        display: block;
        font-family: var(--mv-font-body);
        font-size: 14px;
        margin-top: 6px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

/* generic section heading */
.section-heading {
    margin-bottom: 12px;
}

    .section-heading .heading {
        margin: 0;
        font-size: 44px;
    }

    .section-heading p {
        margin: 14px auto 0;
        max-width: 760px;
        font-size: 17px;
        line-height: 1.8;
        color: var(--mv-blue-soft);
    }

/* story */
.mv-story-wrap {
    max-width: 1180px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 160px minmax(0, 760px) 160px;
    gap: 20px;
    align-items: stretch;
}

.mv-story-content {
    text-align: center;
    font-size: 17px;
    line-height: 1.95;
}

.mv-story-title {
    margin: 0 0 24px;
    font-size: 40px;
}

.mv-story-content p {
    margin: 0 0 18px;
    color: var(--mv-text);
}

.mv-story-branch {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 100%;
    opacity: 0.95;
}

.mv-story-branch-left {
    background-image: url('/images/olive-branch-left.png');
}

.mv-story-branch-right {
    background-image: url('/images/olive-branch-right.png');
}

/* if old image still exists in markup */
#about img.img-fluid {
    border-radius: 12px;
    box-shadow: var(--mv-shadow);
}

/* gallery */
#album .section-heading .heading {
    font-size: 44px;
}

#album .portfolio-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--mv-shadow);
    background: #fff;
}

    #album .portfolio-item img {
        display: block;
        width: 100%;
        height: auto;
    }

#album .portfolio-img {
    color: #fff;
}

/* faq */
#wfaq-list .wfaq-item {
    background: #fff;
    border: 1px solid var(--mv-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--mv-shadow);
    margin-bottom: 18px;
}

#wfaq-list .wfaq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 22px;
    background: #fff;
    color: var(--mv-blue-deep);
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    border: 0;
}

    #wfaq-list .wfaq-question:hover {
        background: #faf8f5;
    }

#wfaq-list .wfaq-icon {
    flex: 0 0 auto;
    font-size: 24px;
    color: var(--mv-blue-dark);
    transition: transform 0.2s ease;
}

#wfaq-list .wfaq-answer {
    display: none;
    padding: 0 22px 20px;
    background: #fff;
}

    #wfaq-list .wfaq-answer p {
        margin: 0;
        color: var(--mv-text);
        font-size: 16px;
        line-height: 1.85;
    }

#wfaq-list .wfaq-item.active .wfaq-answer {
    display: block;
}

#wfaq-list .wfaq-item.active .wfaq-icon {
    transform: rotate(45deg);
}

/* registry */
#giftregistry .section-heading .heading,
.mv-registry-title {
    font-size: 44px;
}

#giftregistry .section-heading p,
.mv-registry-copy {
    color: var(--mv-text);
    font-size: 17px;
    line-height: 1.9;
}

.wedding-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--mv-shadow);
    background: #fff;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .wedding-box img {
        display: block;
        width: auto;
        max-width: 220px;
        max-height: 160px;
        height: auto;
        object-fit: contain;
    }

/* footer cleanup */
.footer.footer-2 {
    margin-top: 40px;
}

/* mobile/tablet */
@media (max-width: 991px) {
    :root {
        --mv-header-offset: 118px;
    }

    .mv-topbar {
        font-size: 13px;
        padding: 12px 14px;
    }

    .mv-nav-inner {
        padding: 14px 16px;
        align-items: stretch;
    }

    .mv-menu-toggle {
        display: block;
    }

    .mv-brand {
        font-size: 28px;
        letter-spacing: 1px;
        margin: 0;
        padding: 0 44px;
        text-align: center;
    }

    .mv-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid var(--mv-border);
        background: var(--mv-beige);
    }

        .mv-nav.open {
            display: flex;
        }

    .mv-nav-link {
        font-size: 15px;
        padding: 14px 4px;
        border-bottom: 1px solid var(--mv-border);
    }

        .mv-nav-link.active {
            border-bottom-color: var(--mv-border);
        }

    .mv-hero {
        padding: 22px 16px 8px;
    }

    .mv-hero-frame {
        padding: 10px;
        border-radius: 16px;
    }

    .mv-hero-image {
        height: 54vh;
        min-height: 320px;
    }

    .section-heading .heading,
    #album .section-heading .heading,
    #giftregistry .section-heading .heading,
    .mv-story-title {
        font-size: 34px;
    }

    .mv-story-wrap {
        grid-template-columns: 1fr;
    }

    .mv-story-branch {
        display: none;
    }
}

@media (max-width: 575px) {
    .mv-brand {
        font-size: 24px;
    }

    .mv-hero-image {
        height: 48vh;
        min-height: 280px;
    }

    .section-heading .heading,
    #album .section-heading .heading,
    #giftregistry .section-heading .heading,
    .mv-story-title {
        font-size: 30px;
    }

    .section-heading p,
    .mv-story-content,
    #giftregistry .section-heading p {
        font-size: 16px;
    }

    #wfaq-list .wfaq-question {
        font-size: 16px;
        padding: 18px;
    }

    #wfaq-list .wfaq-answer {
        padding: 0 18px 18px;
    }

        #wfaq-list .wfaq-answer p {
            font-size: 15px;
        }
}
.mv-love-story-section {
    position: relative;
    overflow: hidden;
}

.mv-love-story-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

    .mv-love-story-content p {
        margin: 0 0 22px;
        font-size: 17px;
        line-height: 1.95;
        color: #4d6678;
    }

.mv-love-story-closing {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.5;
    color: #5f7f95;
    margin-top: 8px;
}

.mv-love-story-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

    .mv-love-story-decor img {
        display: block;
        width: 145px;
        height: auto;
        max-width: none;
    }

.mv-love-story-decor-left {
    left: 20px;
}

.mv-love-story-decor-right {
    right: 20px;
}

@media (max-width: 1399px) {
    .mv-love-story-decor img {
        width: 125px;
    }

    .mv-love-story-decor-left {
        left: 8px;
    }

    .mv-love-story-decor-right {
        right: 8px;
    }
}

@media (max-width: 1199px) {
    .mv-love-story-content {
        max-width: 760px;
    }

    .mv-love-story-decor img {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .mv-love-story-decor {
        display: none;
    }

    .mv-love-story-content p {
        font-size: 16px;
        line-height: 1.85;
    }

    .mv-love-story-closing {
        font-size: 24px;
    }
}

