/* Wedding Page CSS - Part 3: Photographer & Portfolio Sections - Enhanced Font Sizes */

/* ================================================ */
/* MEET YOUR PHOTOGRAPHER SECTION */
/* ================================================ */

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

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

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

.marshall-wedding-photographer-title {
    color: #333;
    font-size: 2.75rem; /* Increased from 2.625rem (44px) */
    font-weight: 500;
    margin-bottom: 45px; /* Increased from 40px */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.marshall-wedding-photographer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

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

.marshall-wedding-photographer-image {
    flex: 1;
    max-width: 400px;
}

.marshall-wedding-photographer-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.marshall-wedding-photographer-text {
    flex: 2;
}

.marshall-wedding-photographer-subtitle {
    color: #333;
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) */
    font-weight: 500;
    margin-bottom: 22px; /* Increased from 20px */
    position: relative;
    padding-bottom: 10px;
}

.marshall-wedding-photographer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #5ca7db;
}

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

.marshall-wedding-photographer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* ================================================ */
/* WEDDING PORTFOLIO HIGHLIGHTS SECTION */
/* ================================================ */

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

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

.marshall-wedding-portfolio-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.marshall-wedding-portfolio-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;
    display: inline-block;
}

.marshall-wedding-portfolio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

.marshall-wedding-portfolio-subtitle {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
    color: #555;
    line-height: 1.6;
    margin-bottom: 55px; /* Increased from 50px */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-wedding-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px; /* Increased from 30px */
    max-width: 900px;
    margin: 0 auto;
}

.marshall-wedding-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.marshall-wedding-portfolio-item img {
    width: 100%;
    height: 310px; /* Increased from 300px */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.marshall-wedding-portfolio-item:hover img {
    transform: scale(1.05);
}

.marshall-wedding-portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 32px 22px 22px; /* Increased from 30px 20px 20px */
    text-align: center;
}

.marshall-wedding-portfolio-caption h4 {
    color: #fff;
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Lancelot', cursive, serif;
}

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

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-wedding-photographer,
    .marshall-wedding-portfolio {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-wedding-photographer-container,
    .marshall-wedding-portfolio-container {
        padding: 0 30px;
    }
    
    .marshall-wedding-photographer-title,
    .marshall-wedding-portfolio-title {
        font-size: 2.4875rem; /* Increased from 2.375rem (39.8px) */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-wedding-photographer-main {
        gap: 45px; /* Increased from 40px */
    }
    
    .marshall-wedding-photographer-subtitle {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-wedding-photographer-description {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 25px; /* Increased from 22px */
    }
    
    .marshall-wedding-photographer-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-photographer-list li::before {
        top: 7px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-portfolio-subtitle {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 50px; /* Increased from 45px */
    }
    
    .marshall-wedding-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px; /* Increased from 25px */
    }
    
    .marshall-wedding-portfolio-item img {
        height: 290px; /* Increased from 280px */
    }
    
    .marshall-wedding-portfolio-caption h4 {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
    }
    
    .marshall-wedding-portfolio-caption {
        padding: 30px 20px 20px; /* Increased from 28px 18px 18px */
    }
}

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

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-wedding-photographer,
    .marshall-wedding-portfolio {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-wedding-photographer-container,
    .marshall-wedding-portfolio-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-wedding-photographer-title,
    .marshall-wedding-portfolio-title {
        font-size: 2.125rem; /* Increased from 2rem (34px) */
        margin-bottom: 35px; /* Increased from 30px */
    }
    
    .marshall-wedding-photographer-main {
        gap: 30px; /* Increased from 25px */
    }
    
    .marshall-wedding-photographer-subtitle {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-wedding-photographer-description {
        font-size: 1.03125rem; /* Increased from 0.9375rem (16.5px) */
        margin-bottom: 25px; /* Increased from 20px */
    }
    
    .marshall-wedding-photographer-list li {
        font-size: 1rem; /* Extra boost for bullet points (16px) */
        padding-left: 20px; /* Increased from 18px */
        margin-bottom: 10px; /* Increased from 8px */
    }
    
    .marshall-wedding-photographer-list li::before {
        width: 7px;
        height: 7px;
        top: 5px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-portfolio-subtitle {
        font-size: 1.03125rem; /* Increased from 0.9375rem (16.5px) */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-wedding-portfolio-grid {
        gap: 25px; /* Increased from 20px */
        margin-bottom: 45px; /* Increased from 40px */
    }
    
    .marshall-wedding-portfolio-item img {
        height: 230px; /* Increased from 220px */
    }
    
    .marshall-wedding-portfolio-caption {
        padding: 28px 18px 18px; /* Increased from 25px 15px 15px */
    }
    
    .marshall-wedding-portfolio-caption h4 {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-wedding-photographer-container,
    .marshall-wedding-portfolio-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-wedding-photographer-title,
    .marshall-wedding-portfolio-title {
        font-size: 2rem; /* Increased from 1.875rem (32px) */
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-wedding-photographer-subtitle {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-wedding-photographer-description {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
        margin-bottom: 22px; /* Increased from 18px */
    }
    
    .marshall-wedding-photographer-list li {
        font-size: 0.9375rem; /* Extra boost for bullet points (15px) */
        padding-left: 18px; /* Increased from 16px */
        margin-bottom: 8px; /* Increased from 6px */
    }
    
    .marshall-wedding-photographer-list li::before {
        width: 6px;
        height: 6px;
        top: 5px; /* Adjusted for larger text */
    }
    
    .marshall-wedding-portfolio-subtitle {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
        margin-bottom: 35px; /* Increased from 30px */
    }
    
    .marshall-wedding-portfolio-item img {
        height: 210px; /* Increased from 200px */
    }
    
    .marshall-wedding-portfolio-caption {
        padding: 25px 15px 15px; /* Increased from 20px 12px 12px */
    }
    
    .marshall-wedding-portfolio-caption h4 {
        font-size: 0.90625rem; /* Increased from 0.8125rem (14.5px) */
    }
}