

  /* ==================================================------------================================ */
.valentine-experience-section {background: var(--lt-bg-color);}

.valentine-experience-section .ve-container {
    max-width: 1050px;
    margin: auto;
    background: #ffffff;
    border: 1px solid #d2cfeb;
    border-radius: 18px;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(216, 27, 72, 0.08);
}

.valentine-experience-section .ve-title {
    text-align: center;
    font-size: 42px;
    color: var(--heading-color);
    margin-bottom: 30px;
    font-style: normal;
}

.valentine-experience-section .ve-text {
    font-size: 17px;
    line-height: 1.75;
    color: #243046;
    max-width: 880px;
    margin: auto;
    text-align: left;
}


/* =============================----------------------======================================== */
.moments-matter-section {
}

.moments-matter-section .mm-header {
    text-align: center;
    margin-bottom: 50px;
}

.moments-matter-section .mm-heart {
    display: inline-block;
    font-size: 22px;
    color: var(--btn-color);
    margin-bottom: 10px;
}

.moments-matter-section h2 {
    font-size: 40px;
    color: var(--heading-color);
    margin: 0;
}

/* Grid */
.moments-matter-section .mm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */
.moments-matter-section .mm-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

/* Image */
.moments-matter-section .mm-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Overlay (hidden by default) */
.moments-matter-section .mm-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(23 123 224 / 30%), rgb(23 123 224 / 44%));
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

/* Hover effects */
.moments-matter-section .mm-item:hover img {
    transform: scale(1.06);
}

.moments-matter-section .mm-item:hover::after {
    opacity: 1;
}
/* =====================------------------------=============================================== */
