.home {
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all 2s ease;
    transform: translateY(-100%);
}

.home.active {
    transform: translateY(0);
}

.home h2 {
    font-size: 2.4rem;
    font-family: var(--sacramento);
    font-weight: 400;
}

.home figure {
    margin: 2rem auto 0;
}

.home figure img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.home figure figcaption {
    margin: 0 0 0.5rem;
    font-weight: 400;
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-lg);
}

/* Names signature images */
.name-images-container {
    width: 100%;
    max-width: 820px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.name-image {
    width: clamp(200px, 48vw, 360px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    transition: transform .3s ease;
}

.name-image:hover {
    transform: scale(1.03);
}

/* Staggered diagonal layout */
.bride-name {
    transform: rotate(-4deg);
    align-self: flex-start;
    margin-left: 4vw;
}

.groom-name {
    transform: rotate(4deg);
    align-self: flex-end;
    margin-right: 4vw;
    margin-top: 0.8rem;
}

.home h3 {
    font-weight: 500;
}

.home .home-time {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.home .home-time div {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    border-radius: 8px;
}

.home .home-time div p {
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}

.home .home-time div p span {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.home a {
    padding: 0.5rem 1rem;
    color: var(--on-primary-color);
    font-size: 1rem;
    background-color: var(--primary-color);
    margin: 1rem auto;
    border-radius: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.home a i {
    font-size: 1.2rem;
}

.home .scroll_down {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.home svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14rem;
    z-index: -10;
}