/* Wedding Journey & Moments Sections - Enhanced Font Sizes */

/* ================================================ */
/* WEDDING JOURNEY SECTION */
/* ================================================ */

.marshall-wedding-journey {
    background-color: #e8e8e8;
    padding: 90px 0; /* Increased from 80px */
    font-family: 'Lancelot', cursive, serif;
}

.marshall-wedding-journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-wedding-journey-content {
    max-width: 1100px;
    margin: 0 auto;
}

.marshall-wedding-journey-main {
    display: flex;
    align-items: center;
    gap: 55px; /* Increased from 50px */
}

.marshall-wedding-journey-text {
    flex: 1;
}

.marshall-wedding-journey-title {
    color: #333;
    font-size: 2.75rem; /* Increased from 2.625rem (44px) */
    font-weight: 500;
    margin-bottom: 22px; /* Increased from 20px */
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.marshall-wedding-journey-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

.marshall-wedding-journey-description {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px; /* Increased from 20px */
}

.marshall-wedding-journey-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 32px 0; /* Increased margins */
}

.marshall-wedding-journey-list li {
    font-size: 1.3125rem; /* Extra boost for bullet points (21px) - larger than other secondary text */
    color: #333;
    padding-left: 28px; /* Increased from 25px */
    margin-bottom: 14px; /* Increased from 12px */
    position: relative;
    line-height: 1.6;
}

.marshall-wedding-journey-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Adjusted for larger text */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5ca7db;
}

.marshall-wedding-journey-button {
    color: white;
    background-color: #5ca7db;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
    font-weight: 500;
    padding: 14px 28px; /* Increased from 12px 25px */
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    min-height: 44px; /* Ensures proper touch target */
}

.marshall-wedding-journey-button:hover {
    background-color: #4a94c4;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 167, 219, 0.3);
}

.marshall-wedding-journey-image {
    flex: 1;
    max-width: 500px;
}

.marshall-wedding-journey-image img {
    width: 100%;
    max-height: 450px; /* Keep increased size */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.marshall-wedding-journey-image img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================================================ */
/* WEDDING MOMENTS SECTION */
/* ================================================ */

.marshall-wedding-moments {
    background-color: #ffffff;
    padding: 90px 0; /* Increased from 80px */
    font-family: 'Lancelot', cursive, serif;
}

.marshall-wedding-moments-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-wedding-moments-content {
    max-width: 1100px;
    margin: 0 auto;
}

.marshall-wedding-moments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px; /* Increased from 30px */
}

.marshall-wedding-moment-box {
    background-color: #f8f9fa;
    padding: 38px 28px; /* Increased from 35px 25px */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5ca7db;
}

.marshall-wedding-moment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.marshall-wedding-moment-icon {
    margin-bottom: 22px; /* Increased from 20px */
}

.marshall-wedding-moment-icon i {
    font-size: 45px; /* Increased from 42px */
    color: #5ca7db;
}

.marshall-wedding-moment-title {
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) */
    font-weight: 500;
    color: #333;
    margin-bottom: 22px; /* Increased from 20px */
}

.marshall-wedding-moment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.marshall-wedding-moment-list li {
    font-size: 1.25rem; /* Extra boost for bullet points (20px) - larger than other secondary text */
    color: #555;
    padding-left: 28px; /* Increased from 25px */
    margin-bottom: 12px; /* Increased from 10px */
    position: relative;
    line-height: 1.5;
}

.marshall-wedding-moment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* Adjusted for larger text */
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5ca7db;
}

/* Wedding Moments CTA Button */
.marshall-wedding-moments-cta {
    text-align: center;
    margin-top: 55px; /* Increased from 50px */
}

.marshall-wedding-moments-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
    font-weight: 500;
    padding: 16px 38px; /* Increased from 15px 35px */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(92, 167, 219, 0.3);
    text-decoration: none;
    display: inline-block;
    min-height: 44px; /* Ensures proper touch target */
}

.marshall-wedding-moments-button:hover {
    background-color: #4a94c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 167, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* ================================================ */
/* RESPONSIVE BREAKPOINTS */
/* ================================================ */

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-wedding-journey,
    .marshall-wedding-moments {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-wedding-journey-container,
    .marshall-wedding-moments-container {
        padding: 0 30px;
    }
    
    .marshall-wedding-journey-title {
        font-size: 2.4875rem; /* Increased from 2.375rem (39.8px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-journey-main {
        gap: 45px; /* Increased from 40px */
    }
    
    .marshall-wedding-journey-description {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-journey-list {
        margin: 20px 0 28px 0; /* Increased from 18px 0 25px 0 */
    }
    
    .marshall-wedding-journey-list li {
        font-size: 1.1875rem; /* Extra boost for bullet points (19px) */
        margin-bottom: 12px; /* Increased from 10px */
        padding-left: 26px; /* Increased from 25px */
    }
    
    .marshall-wedding-journey-button {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        padding: 13px 25px; /* Increased from 11px 22px */
    }
    
    .marshall-wedding-journey-image img {
        max-height: 420px; /* Keep increased size */
    }
    
    .marshall-wedding-moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px; /* Increased from 25px */
    }
    
    .marshall-wedding-moment-box {
        padding: 35px 25px; /* Increased from 32px 22px */
    }
    
    .marshall-wedding-moment-icon i {
        font-size: 40px; /* Increased from 38px */
    }
    
    .marshall-wedding-moment-title {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-moment-list li {
        font-size: 1.125rem; /* Extra boost for bullet points (18px) */
        margin-bottom: 10px; /* Increased from 8px */
        padding-left: 26px; /* Increased from 25px */
    }
    
    .marshall-wedding-moments-cta {
        margin-top: 50px; /* Increased from 45px */
    }
    
    .marshall-wedding-moments-button {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        padding: 15px 35px; /* Increased from 14px 32px */
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-wedding-journey,
    .marshall-wedding-moments {
        padding: 70px 0; /* Increased from 60px */
    }
    
    .marshall-wedding-journey-container,
    .marshall-wedding-moments-container {
        padding: 0 20px;
    }
    
    .marshall-wedding-journey-title {
        font-size: 2.25rem; /* Increased from 2.125rem (36px) */
        margin-bottom: 20px; /* Increased from 18px */
        text-align: center;
    }
    
    .marshall-wedding-journey-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .marshall-wedding-journey-main {
        flex-direction: column;
        gap: 35px; /* Increased from 30px */
        text-align: center;
    }
    
    .marshall-wedding-journey-text,
    .marshall-wedding-journey-image {
        width: 100%;
        max-width: 100%;
    }
    
    .marshall-wedding-journey-description {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-journey-list {
        text-align: left;
        display: inline-block;
        margin: 20px auto 28px auto; /* Increased from 18px auto 25px auto */
    }
    
    .marshall-wedding-journey-list li {
        font-size: 1.0625rem; /* Extra boost for bullet points (17px) */
        padding-left: 22px; /* Increased from 20px */
        margin-bottom: 10px; /* Increased from 8px */
    }
    
    .marshall-wedding-journey-list li::before {
        width: 8px;
        height: 8px;
        top: 7px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-journey-button {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 12px 24px; /* Increased from 10px 20px */
    }
    
    .marshall-wedding-journey-image img {
        max-height: 390px; /* Keep increased size */
    }
    
    .marshall-wedding-moments-grid {
        grid-template-columns: 1fr;
        gap: 28px; /* Increased from 25px */
    }
    
    .marshall-wedding-moment-box {
        padding: 32px 22px; /* Increased from 30px 20px */
    }
    
    .marshall-wedding-moment-icon i {
        font-size: 38px; /* Increased from 36px */
    }
    
    .marshall-wedding-moment-title {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-moment-list li {
        font-size: 1rem; /* Extra boost for bullet points (16px) */
        padding-left: 22px; /* Increased from 20px */
        margin-bottom: 10px; /* Increased from 8px */
    }
    
    .marshall-wedding-moment-list li::before {
        width: 6px;
        height: 6px;
        top: 6px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-moments-cta {
        margin-top: 45px; /* Increased from 40px */
    }
    
    .marshall-wedding-moments-button {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 15px 32px; /* Increased from 14px 30px */
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-wedding-journey,
    .marshall-wedding-moments {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-wedding-journey-container,
    .marshall-wedding-moments-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-wedding-journey-title {
        font-size: 2.125rem; /* Increased from 2rem (34px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-wedding-journey-main {
        gap: 30px; /* Increased from 25px */
    }
    
    .marshall-wedding-journey-description {
        font-size: 1.03125rem; /* Increased from 0.9375rem (16.5px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-wedding-journey-list {
        margin: 18px auto 25px auto; /* Increased from 15px auto 20px auto */
    }
    
    .marshall-wedding-journey-list li {
        font-size: 1rem; /* Extra boost for bullet points (16px) */
        padding-left: 20px; /* Increased from 18px */
        margin-bottom: 8px; /* Increased from 6px */
    }
    
    .marshall-wedding-journey-list li::before {
        width: 7px;
        height: 7px;
        top: 6px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-journey-button {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
        padding: 12px 24px; /* Increased from 10px 20px */
        min-height: 44px; /* Ensures proper touch target */
    }
    
    .marshall-wedding-journey-image img {
        max-height: 360px; /* Keep increased size */
    }
    
    .marshall-wedding-moments-grid {
        gap: 25px; /* Increased from 20px */
    }
    
    .marshall-wedding-moment-box {
        padding: 28px 20px; /* Increased from 25px 18px */
    }
    
    .marshall-wedding-moment-icon i {
        font-size: 35px; /* Increased from 32px */
    }
    
    .marshall-wedding-moment-title {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-wedding-moment-list li {
        font-size: 0.96875rem; /* Extra boost for bullet points (15.5px) */
        padding-left: 20px; /* Increased from 18px */
        margin-bottom: 8px; /* Increased from 6px */
    }
    
    .marshall-wedding-moment-list li::before {
        width: 6px;
        height: 6px;
        top: 5px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-moments-cta {
        margin-top: 40px; /* Increased from 35px */
    }
    
    .marshall-wedding-moments-button {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 15px 30px; /* Increased from 14px 28px */
        min-height: 44px; /* Ensures proper touch target */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-wedding-journey-container,
    .marshall-wedding-moments-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-wedding-journey-title {
        font-size: 2rem; /* Increased from 1.875rem (32px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-wedding-journey-description {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-wedding-journey-list li {
        font-size: 0.9375rem; /* Extra boost for bullet points (15px) */
        padding-left: 18px; /* Increased from 16px */
        margin-bottom: 6px; /* Increased from 4px */
    }
    
    .marshall-wedding-journey-list li::before {
        width: 6px;
        height: 6px;
        top: 5px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-journey-button {
        font-size: 0.90625rem; /* Increased from 0.8125rem (14.5px) */
        padding: 11px 20px; /* Increased from 9px 18px */
    }
    
    .marshall-wedding-journey-image img {
        max-height: 330px; /* Keep increased size */
    }
    
    .marshall-wedding-moment-box {
        padding: 25px 18px; /* Increased from 22px 16px */
    }
    
    .marshall-wedding-moment-icon i {
        font-size: 30px; /* Increased from 28px */
    }
    
    .marshall-wedding-moment-title {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-wedding-moment-list li {
        font-size: 0.90625rem; /* Extra boost for bullet points (14.5px) */
        padding-left: 18px; /* Increased from 16px */
        margin-bottom: 6px; /* Increased from 4px */
    }
    
    .marshall-wedding-moment-list li::before {
        width: 5px;
        height: 5px;
        top: 5px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-moments-cta {
        margin-top: 35px; /* Increased from 30px */
    }
    
    .marshall-wedding-moments-button {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        padding: 14px 26px; /* Increased from 13px 24px */
    }
}