@charset "UTF-8";

/* Love Page Styles */

.love-section {
    width: 100%;
    position: relative;
    padding: 80px 5% 50px;
    /* Side padding */
    background-color: #fcfaf7;
    background-image: url('../images/love_bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    box-sizing: border-box;
}

.love-title {
    font-size: 2.8rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.love-decoration {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.love-decoration img {
    width: 60px;
    height: auto;
    display: block;
}

.love-map {
    max-width: 1000px;
    margin: 0 auto;
}

.love-map img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
}

/* Princess Dress Experience Section */
.love-experience-section {
    width: 100%;
    background-color: #fff;
    /* Reset to white */
    padding-bottom: 100px;
    padding-top: 100px;
}

.love-inner.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.love-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.love-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.love-item-image {
    width: 50%;
}

.love-item-image img {
    width: 100%;
    height: auto;
    display: block;
    /* No shadow/border per design choice? Or add if needed */
}

.love-item-content {
    width: 45%;
    text-align: left;
}

.love-item.reverse {
    flex-direction: row-reverse;
}

/* Numbered Title */
.love-item-title {
    font-size: 1.8rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
}

.love-item-title .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2b4630;
    /* Dark Green */
    color: #fff;
    border-radius: 50%;
    font-family: "Philosopher", serif;
    /* Or sans-serif */
    font-size: 1.4rem;
    line-height: 1;
}

.love-item-desc {
    font-size: 1rem;
    line-height: 2.0;
    margin-bottom: 30px;
    color: #333;
}

/* Button */
.love-experience-section .btn-wrapper {
    text-align: left;
    margin-top: 30px;
}

.love-experience-section .btn-gold {
    display: inline-block;
    background-color: #a08e2e;
    /* Gold color matching theme */
    color: #fff;
    padding: 15px 60px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
    /* Arrow alignment */
    position: relative;
    padding-right: 80px;
}

.love-experience-section .btn-gold::after {
    content: "▶";
    font-size: 0.8em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.love-experience-section .btn-gold:hover {
    background-color: #8a7a28;
}

/* Responsive */
@media (max-width: 768px) {
    .love-title {
        font-size: 2.0rem;
    }

    .love-section {
        padding: 60px 4%;
    }

    .love-item {
        flex-direction: column;
        gap: 30px;
    }

    .love-item.reverse {
        flex-direction: column;
    }

    .love-item-image,
    .love-item-content {
        width: 100%;
    }

    .love-item-title {
        font-size: 1.5rem;
    }
}

/* Wedding Section */
.love-wedding-section {
    width: 100%;
    background-image: url('../images/love_wedding_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 5%;
    color: #fff;
    position: relative;
    /* Ensure no white bg from previous rules */
    background-color: transparent;
}

.love-wedding-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 60, 0.5);
    /* Overlay */
    z-index: 1;
}

.love-wedding-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.love-wedding-title {
    font-size: 2.2rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    /* Force white */
}

.love-wedding-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.love-wedding-image {
    width: 50%;
}

.love-wedding-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Border removed */
}

.love-wedding-text {
    width: 45%;
    text-align: left;
    font-size: 0.95rem;
    line-height: 2.0;
    color: #fff;
    /* Force white */
}

.love-wedding-text p {
    margin-bottom: 30px;
    color: #fff;
    /* Explicitly white */
}

.love-wedding-section .btn-gold {
    background-color: #a08e2e;
    color: #fff;
    padding: 15px 80px;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    transition: background-color 0.3s;
    padding-right: 100px;
}

.love-wedding-section .btn-gold::after {
    content: "▶";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
}

.love-wedding-section .btn-gold:hover {
    background-color: #8a7a28;
}

@media (max-width: 768px) {
    .love-wedding-title {
        font-size: 1.6rem;
    }

    .love-wedding-content {
        flex-direction: column;
        gap: 40px;
    }

    .love-wedding-image,
    .love-wedding-text {
        width: 100%;
    }
}