

:root {

    --bg: #EBE2D3;
    --bg-light: #F3ECE1;
    --bg-soft: #F8F3EA;
    --bg-dark: #DED2C0;

    --sage: #A7B29B;
    --sage-dark: #74816A;
    --sage-light: #C8D0C0;

    --brown: #967F69;
    --brown-light: #B5A08A;

    --text: #4E4A43;
    --text-light: #81796F;

    --white: #FFFDF9;

}



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


html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}


body {

    font-family: "Montserrat", sans-serif;

    background: var(--bg);

    color: var(--text);

    overflow-x: hidden;

}


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


section {
    scroll-snap-align: start;
}



.hero {

    position: relative;

    width: 100%;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    color: var(--white);

  
 background-image: url("photo/hero.jpg");
    background-size: cover;

    background-position: center;

    scroll-snap-align: start;

}


.hero-overlay {

    position: absolute;

    inset: 0;



    background:
        linear-gradient(
            to bottom,
            rgba(73, 67, 57, .16),
            rgba(73, 67, 57, .04) 45%,
            rgba(73, 67, 57, .24)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1000px;

    padding: 40px 25px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

}


.hero-label {

    margin-bottom: 30px;

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 400;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, .08);

}


.couple-names {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 10vw, 125px);

    font-weight: 500;

    line-height: .76;

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 18px;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, .10);

}


.ampersand {

    font-size: .40em;

    font-weight: 400;

    line-height: 1;

    color: #F3E9DB;

}


.hero-date {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 45px;

    margin-bottom: 45px;

}


.hero-date span {

    width: 60px;

    height: 1px;

    background: rgba(255, 253, 249, .75);

}


.hero-date p {

    font-size: 11px;

    letter-spacing: 3px;

}



.countdown-title {

    margin-bottom: 18px;

    font-size: 9px;

    letter-spacing: 3px;

}


.countdown {

    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 18px;

}


.countdown-item {

    min-width: 70px;

    text-align: center;

}


.countdown-item span {

    display: block;

    font-family: "Cormorant Garamond", serif;

    font-size: 50px;

    line-height: 1;

}


.countdown-item small {

    display: block;

    margin-top: 7px;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    opacity: .92;

}




.wedding-finished {

    display: flex;

    flex-direction: column;

    align-items: center;

    animation: finishedAppear .9s ease forwards;

}


.finished-symbol {

    font-family: "Cormorant Garamond", serif;

    font-size: 26px;

    letter-spacing: 3px;

    margin-bottom: 8px;

    color: #F3E9DB;

}


.finished-title {

    font-family: "Cormorant Garamond", serif;

    font-size: 46px;

    line-height: 1;

    margin-bottom: 14px;

}


.finished-text {

    max-width: 360px;

    font-size: 11px;

    line-height: 1.8;

}


@keyframes finishedAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

}




.scroll-down {

    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: var(--white);

}


.scroll-down span {

    font-size: 8px;

    letter-spacing: 3px;

}


.scroll-arrow {

    width: 14px;
    height: 14px;

    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);

    transform: rotate(45deg);

    animation: arrowMove 2s infinite;

}


@keyframes arrowMove {

    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: .5;
    }

    50% {
        transform: rotate(45deg) translate(4px, 4px);
        opacity: 1;
    }

    100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: .5;
    }

}



.section {

    padding: 125px 24px;

}


.section-inner {

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    text-align: center;

}


.section-label {

    margin-bottom: 18px;

    font-size: 9px;

    letter-spacing: 4px;

    color: var(--sage-dark);

}


.section h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(52px, 7vw, 80px);

    font-weight: 500;

    line-height: 1;

    color: var(--text);

}


.section-description {

    max-width: 520px;

    margin: 22px auto 0;

    font-size: 13px;

    line-height: 1.9;

    color: var(--text-light);

}




.welcome {

    background: var(--bg);

}


.welcome h2 span {

    color: var(--sage-dark);

}


.decorative-line {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    margin: 32px 0;

}


.decorative-line span {

    width: 65px;

    height: 1px;

    background: var(--sage-light);

}


.decorative-line i {

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    font-style: normal;

    color: var(--sage-dark);

}


.welcome-text {

    max-width: 650px;

    margin: 0 auto;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    line-height: 1.65;

    color: #666057;

}


.welcome-signature {

    margin-top: 38px;

    font-family: "Cormorant Garamond", serif;

    font-size: 21px;

    line-height: 1.5;

    color: var(--sage-dark);

}



.program {

    background: var(--bg-light);

}


.timeline {

    max-width: 720px;

    margin: 72px auto 0;

    text-align: left;

}


.timeline-item {

    display: grid;

    grid-template-columns: 85px 26px 1fr;

    gap: 20px;

    min-height: 135px;

}


.timeline-time {

    padding-top: 2px;

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;

    color: var(--sage-dark);

    text-align: right;

}


.timeline-line {

    position: relative;

    display: flex;

    justify-content: center;

}


.timeline-line::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 1px;

    background: #D2C7B8;

}


.timeline-line span {

    position: relative;

    z-index: 2;

    width: 10px;
    height: 10px;

    margin-top: 7px;

    border-radius: 50%;

    background: var(--sage);

    border: 3px solid var(--bg-light);

    box-shadow:
        0 0 0 1px var(--sage);

}


.timeline-content {

    padding-bottom: 42px;

}


.timeline-content h3 {

    margin-bottom: 7px;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    font-weight: 500;

}


.timeline-content p {

    max-width: 420px;

    font-size: 12px;

    line-height: 1.8;

    color: var(--text-light);

}




.venue {

    background: var(--bg);

}







.map-placeholder {

    position: relative;

    min-height: 430px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #DDE3D7,
            #EEF0EA
        );

}


.map-pattern {

    position: absolute;

    inset: 0;

    opacity: .45;

    background-image:
        linear-gradient(
            25deg,
            transparent 48%,
            rgba(151, 164, 143, .22) 49%,
            rgba(151, 164, 143, .22) 50%,
            transparent 51%
        );

    background-size: 90px 90px;

    transform: scale(1.5);

}


.map-placeholder-inner {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--sage-dark);

}


.map-pin {

    width: 60px;
    height: 60px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 253, 249, .82);

    box-shadow:
        0 10px 25px rgba(80, 90, 70, .10);

}


.map-placeholder-inner p {

    font-size: 10px;

    letter-spacing: 1px;

}




.photos {

    background: var(--bg-light);

}


.photos-placeholder {

    max-width: 720px;

    min-height: 360px;

    margin: 62px auto 0;

    padding: 55px 35px;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #F8F3EA,
            #EFE6D9
        );

    border: 1px solid rgba(150, 127, 105, .17);

}


.camera-icon {

    position: relative;

    width: 64px;
    height: 45px;

    margin-bottom: 28px;

    border: 1px solid var(--sage-dark);

    border-radius: 8px;

}


.camera-icon::before {

    content: "";

    position: absolute;

    top: -9px;
    left: 13px;

    width: 18px;
    height: 8px;

    border: 1px solid var(--sage-dark);

    border-bottom: none;

    border-radius: 4px 4px 0 0;

}


.camera-icon span {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 17px;
    height: 17px;

    transform: translate(-50%, -50%);

    border: 1px solid var(--sage-dark);

    border-radius: 50%;

}


.photos-placeholder h3 {

    max-width: 500px;

    font-family: "Cormorant Garamond", serif;

    font-size: 31px;

    line-height: 1.35;

    font-weight: 500;

    color: var(--text);

}


.photos-placeholder p {

    max-width: 500px;

    margin-top: 18px;

    font-size: 12px;

    line-height: 1.85;

    color: var(--text-light);

}




.dress-code {

    background: var(--bg);

}


.dress-colors {

    display: flex;

    justify-content: center;

    align-items: flex-start;

    gap: 38px;

    flex-wrap: wrap;

    margin-top: 56px;

}


.color-item {

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 11px;

}


.color-circle {

    width: 54px;
    height: 54px;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(255, 253, 249, .60),
        0 8px 22px rgba(110, 92, 72, .08);

}


.color-item span {

    font-size: 8px;

    letter-spacing: 1px;

    color: var(--text-light);

}


.color-1 {
    background: #F9DAE0;
}


.color-2 {
    background: #99A285;
}


.color-3 {
    background: #FFF0BF;
}


.color-4 {
    background: #D9CCBC;
}

.color-5 {
    background: #523C2F;
}
 
.dress-note {

    margin-top: 48px;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    color: var(--text-light);

}




.final-section {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--white);

    background-image:
        url("assets/images/hero.jpg");

    background-size: cover;

    background-position: center;

    scroll-snap-align: start;

}


.final-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(80, 69, 57, .12),
            rgba(80, 69, 57, .26)
        );

}


.final-content {

    position: relative;

    z-index: 2;

}


.final-label {

    margin-bottom: 35px;

    font-size: 9px;

    letter-spacing: 4px;

}


.final-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 8vw, 92px);

    font-weight: 500;

    line-height: .8;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, .10);

}


.final-content h2 span {

    display: block;

    margin: 15px 0;

    font-size: .45em;

    color: #F3E9DB;

}


.final-date {

    margin-top: 40px;

    font-size: 10px;

    letter-spacing: 4px;

}


.final-heart {

    margin-top: 38px;

    font-size: 18px;

    color: #F3E9DB;

}



.footer {

    height: 76px;

    padding: 0 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background: var(--bg-dark);

    color: var(--sage-dark);

}


.footer p {

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;

}


.footer a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(116, 129, 106, .35);

    border-radius: 50%;

    font-size: 14px;

    transition: .3s ease;

}


.footer a:hover {

    background: var(--sage);

    color: var(--white);

    border-color: var(--sage);

}




@media (max-width: 700px) {

    .hero {

        min-height: 100svh;

        background-position: center;

    }


    .hero-content {

        padding: 30px 20px;

    }


    .hero-label {

        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 28px;

    }


    .couple-names {

        font-size: 68px;

        gap: 14px;

    }


    .hero-date {

        margin-top: 38px;

        margin-bottom: 38px;

        gap: 11px;

    }


    .hero-date span {

        width: 30px;

    }


    .hero-date p {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .countdown {

        gap: 4px;

    }


    .countdown-item {

        min-width: 62px;

    }


    .countdown-item span {

        font-size: 37px;

    }


    .countdown-item small {

        font-size: 7px;

        letter-spacing: 1px;

    }


    .section {

        padding: 95px 20px;

    }


    .welcome-text {

        font-size: 21px;

    }


    .timeline {

        margin-top: 55px;

    }


    .timeline-item {

        grid-template-columns: 58px 22px 1fr;

        gap: 11px;

    }


    .timeline-time {

        font-size: 23px;

    }


    .timeline-content h3 {

        font-size: 25px;

    }


    .timeline-content p {

        font-size: 11px;

    }






    .map-placeholder {

        min-height: 280px;

    }


    .photos-placeholder {

        min-height: 320px;

        padding: 45px 24px;

    }


    .photos-placeholder h3 {

        font-size: 26px;

    }


    .dress-colors {

        gap: 22px;

    }


    .final-section {

        min-height: 520px;

    }


    .footer {

        padding: 0 20px;

    }

}
.venue-card {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    margin-top: 65px;

    min-height: 430px;

    background: var(--bg-soft);

    border: 1px solid rgba(150, 127, 105, .18);

    box-shadow:
        0 18px 50px rgba(100, 82, 65, .07);

    overflow: hidden;
}


.venue-info {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px;
}


.venue-small-label {
    margin-bottom: 15px;

    font-size: 8px;

    letter-spacing: 3px;

    color: var(--sage-dark);
}


.venue-info h3 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;

    font-weight: 500;

    text-align: center;
}


.venue-address {
    text-align: center;

    font-size: 13px;

    line-height: 1.8;

    color: var(--text-light);
}


.route-button {
    margin-top: 30px;

    padding: 14px 25px;

    border: 1px solid var(--sage);

    color: var(--sage-dark);

    font-size: 9px;

    letter-spacing: 2px;

    transition: .3s ease;
}


.route-button:hover {
    background: var(--sage);

    color: white;
}


.map-wrapper {
    width: 100%;

    min-height: 430px;

    overflow: hidden;

    background: #DDE3D7;
}


.map-wrapper iframe {
    display: block;

    width: 100%;

    height: 100%;

    min-height: 430px;

    border: 0;
}
@media (max-width: 700px) {

    .venue-card {
        grid-template-columns: 1fr;
    }

    .venue-info {
        min-height: 310px;

        padding: 40px 25px;
    }

    .venue-info h3 {
        font-size: 37px;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }

}
