.cover {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.cover .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cover .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.cover .bg-image-wrapper .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.cover .content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    align-items: center;
    box-sizing: border-box;
    color: var(--white, #ffffff);
}

.cover .top-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: var(--playfair, serif);
    text-align: center;
}

.cover .top-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cover .top-info .label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cover .top-info .value {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cover .middle-title {
    text-align: center;
    margin-top: 2rem;
}

.cover .middle-title .the-wedding {
    font-family: var(--satisfy, "Great Vibes", cursive);
    font-size: 32px;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.cover .middle-title .names {
    font-family: var(--playfair, serif);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.cover .bottom-quote {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.cover .bottom-quote .quote-text {
    font-family: var(--playfair, "Montserrat", sans-serif);
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cover .bottom-quote .quote-source {
    font-family: var(--satisfy, "Great Vibes", cursive);
    font-size: 18px;
    margin: 0;
}

@media (max-width: 360px) {
    .cover .content {
        padding: 2rem 1rem;
    }

    .cover .top-info .label {
        font-size: 12px;
    }

    .cover .top-info .value {
        font-size: 14px;
    }

    .cover .middle-title .the-wedding {
        font-size: 28px;
    }

    .cover .middle-title .names {
        font-size: 32px;
    }

    .cover .bottom-quote .quote-text {
        font-size: 11px;
    }
}
