/* Who We Are & Wedding Services Sections - Enhanced Font Sizes Following Style Guide - Simplified Buttons */

/* Base font size */
html {
    font-size: 16px;
}

/* ================================================ */
/* WHO WE ARE SECTION */
/* ================================================ */

.marshall-home-who {
    background-color: #ffffff;
    padding: 90px 0; /* Increased from 80px to match style guide */
    font-family: 'Lancelot', cursive, serif;
}

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

.marshall-home-who-content {
    max-width: 1100px; /* Increased from 1000px to match style guide */
    margin: 0 auto;
}

.marshall-home-who-title {
    color: #333;
    font-size: 2.75rem; /* Increased from 2.625rem (44px) - matches style guide */
    font-weight: 500;
    margin-bottom: 45px; /* Reduced from 50px to match style guide */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

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

/* Main Content Layout */
.marshall-home-who-main {
    display: flex;
    align-items: center;
    gap: 55px; /* Increased from 50px to match style guide */
    margin-bottom: 55px; /* Reduced from 60px to match style guide */
}

.marshall-home-who-text-column {
    flex: 1;
}

.marshall-home-who-text {
    text-align: left;
}

.marshall-home-who-text p {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - matches body text */
    line-height: 1.7; /* Improved from 1.6 to match style guide */
    color: #333;
    margin-bottom: 22px; /* Increased from 20px to match style guide */
}

.marshall-home-who-text p:last-child {
    margin-bottom: 0;
}

.marshall-home-who-image-column {
    flex: 1;
}

.marshall-home-who-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.marshall-home-who-image img {
    width: 100%;
    height: 420px; /* Increased from 400px for better proportion */
    object-fit: cover;
    display: block;
}

.marshall-home-who-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; /* Reduced from 40px to match style guide grid spacing */
    margin-bottom: 55px; /* Reduced from 60px to match style guide */
}

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

.marshall-home-who-feature:hover {
    transform: translateY(-5px); /* Increased from -3px to match style guide */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Enhanced to match style guide */
}

.marshall-home-who-feature i {
    font-size: 45px; /* Reduced from 48px to match style guide icon sizes */
    color: #5ca7db;
    margin-bottom: 22px; /* Increased from 20px to match style guide */
}

.marshall-home-who-feature h3 {
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) - matches subtitle hierarchy */
    font-weight: 500;
    color: #333;
    margin-bottom: 22px; /* Increased from 15px to match style guide */
}

.marshall-home-who-feature p {
    font-size: 1.25rem; /* Increased from 1.125rem (20px) - extra boost for readability */
    color: #555;
    line-height: 1.6; /* Improved from 1.5 */
}

/* Who We Are CTA Button - Simplified */
.marshall-home-who-cta {
    text-align: center;
    margin-top: 55px; /* Increased from 40px to match style guide */
}

.marshall-home-who-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.1875rem;
    font-weight: 500;
    padding: 16px 38px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.marshall-home-who-button:hover {
    background-color: #4a94c4;
    color: white;
    text-decoration: none;
}

/* ================================================ */
/* WEDDING SERVICES SECTION */
/* ================================================ */

.marshall-home-weddings {
    background-color: #e8e8e8;
    padding: 90px 0; /* Increased from 80px to match style guide */
    font-family: 'Lancelot', cursive, serif;
}

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

.marshall-home-weddings-content {
    text-align: center;
}

.marshall-home-weddings-title {
    color: #333;
    font-size: 2.75rem; /* Increased from 2.625rem (44px) - matches style guide */
    font-weight: 500;
    margin-bottom: 22px; /* Increased from 15px to match style guide */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

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

.marshall-home-weddings-subtitle {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - matches body text */
    color: #555;
    margin-bottom: 55px; /* Increased from 50px to match style guide */
    max-width: 800px; /* Increased from 600px for better readability */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.marshall-home-weddings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px; /* Reduced from 40px to match style guide grid spacing */
    margin-bottom: 55px; /* Reduced from 60px to match style guide */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-home-wedding-service {
    background-color: #fff;
    padding: 38px 28px; /* Increased from 35px 25px to match style guide */
    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;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #5ca7db; /* Added to match style guide */
}

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

.marshall-home-service-icon {
    margin-bottom: 22px; /* Increased from 20px to match style guide */
}

.marshall-home-service-icon i {
    font-size: 45px; /* Increased from 42px to match style guide */
    color: #5ca7db;
}

.marshall-home-service-title {
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) - matches subtitle hierarchy */
    font-weight: 500;
    color: #333;
    margin-bottom: 22px; /* Increased from 15px to match style guide */
}

.marshall-home-service-description {
    font-size: 1.25rem; /* Increased from 1.125rem (20px) - extra boost for readability */
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px; /* Increased from 25px to match style guide */
    flex-grow: 1;
}

/* Wedding Service Buttons - Simplified */
.marshall-home-service-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
    align-self: center;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.marshall-home-service-button:hover {
    background-color: #4a94c4;
    color: white;
    text-decoration: none;
}

.marshall-home-weddings-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; /* Increased from 30px to match style guide */
    margin-top: 55px; /* Reduced from 60px to match style guide */
}

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

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

/* Wedding Gallery Link Styles */
.marshall-home-wedding-image a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.marshall-home-wedding-image a:hover {
    color: inherit;
}

.marshall-home-wedding-image img {
    width: 100%;
    height: 260px; /* Increased from 250px for better proportions */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.marshall-home-wedding-image a:hover img {
    transform: scale(1.05);
}

.marshall-home-image-caption {
    padding: 18px; /* Increased from 15px for better spacing */
    font-size: 1.0625rem; /* Increased from 1rem (17px) - improved readability */
    color: #666;
    text-align: center;
    background-color: #fff;
    margin: 0;
    line-height: 1.5; /* Improved from 1.4 */
    transition: color 0.3s ease;
}

.marshall-home-wedding-image a:hover .marshall-home-image-caption {
    color: #5ca7db;
}

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

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-home-who,
    .marshall-home-weddings {
        padding: 80px 0; /* Increased from 70px to match style guide */
    }
    
    .marshall-home-who-container,
    .marshall-home-weddings-container {
        padding: 0 30px;
    }
    
    .marshall-home-who-title,
    .marshall-home-weddings-title {
        font-size: 2.4875rem; /* Updated to match style guide (39.8px) */
        margin-bottom: 40px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-text p {
        font-size: 1.1875rem; /* Updated to match style guide (19px) */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-subtitle {
        font-size: 1.1875rem; /* Updated to match style guide (19px) */
        margin-bottom: 50px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-main {
        gap: 45px; /* Adjusted to match style guide */
        margin-bottom: 50px;
    }
    
    .marshall-home-who-image img {
        height: 390px; /* Adjusted proportionally */
    }
    
    .marshall-home-who-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px; /* Adjusted to match style guide */
        margin-bottom: 50px;
    }
    
    .marshall-home-who-feature {
        padding: 35px 25px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature i {
        font-size: 40px; /* Adjusted to match style guide */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature h3,
    .marshall-home-service-title {
        font-size: 1.4375rem; /* Updated to match style guide (23px) */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature p,
    .marshall-home-service-description {
        font-size: 1.125rem; /* Updated to match style guide (18px) */
        margin-bottom: 25px; /* For descriptions only */
    }
    
    .marshall-home-weddings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px; /* Adjusted to match style guide */
        margin-bottom: 50px;
    }
    
    .marshall-home-wedding-service {
        padding: 35px 25px; /* Adjusted to match style guide */
    }
    
    .marshall-home-service-icon {
        margin-bottom: 20px;
    }
    
    .marshall-home-service-icon i {
        font-size: 40px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px; /* Adjusted to match style guide */
        margin-top: 50px;
    }
    
    .marshall-home-wedding-image img {
        height: 240px; /* Adjusted proportionally */
    }
    
    .marshall-home-image-caption {
        padding: 16px; /* Adjusted proportionally */
        font-size: 1rem; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-button {
        font-size: 1.0625rem;
        padding: 15px 35px;
    }
    
    .marshall-home-service-button {
        font-size: 1rem;
        padding: 13px 25px;
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-home-who,
    .marshall-home-weddings {
        padding: 70px 0; /* Increased from 60px to match style guide */
    }
    
    .marshall-home-who-container,
    .marshall-home-weddings-container {
        padding: 0 20px;
    }
    
    .marshall-home-who-title,
    .marshall-home-weddings-title {
        font-size: 2.25rem; /* Updated to match style guide (36px) */
        margin-bottom: 38px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-text p {
        font-size: 1.0625rem; /* Updated to match style guide (17px) */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-subtitle {
        font-size: 1.0625rem; /* Updated to match style guide (17px) */
        margin-bottom: 45px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-main {
        gap: 35px; /* Adjusted to match style guide */
        margin-bottom: 45px;
    }
    
    .marshall-home-who-image img {
        height: 330px; /* Adjusted proportionally */
    }
    
    .marshall-home-who-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px; /* Adjusted to match style guide */
        margin-bottom: 45px;
    }
    
    .marshall-home-who-feature {
        padding: 32px 22px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature i {
        font-size: 38px; /* Adjusted to match style guide */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature h3,
    .marshall-home-service-title {
        font-size: 1.3125rem; /* Updated to match style guide (21px) */
        margin-bottom: 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature p,
    .marshall-home-service-description {
        font-size: 1rem; /* Updated to match style guide (16px) */
        margin-bottom: 22px; /* For descriptions only */
    }
    
    .marshall-home-weddings-grid {
        grid-template-columns: 1fr;
        gap: 28px; /* Adjusted to match style guide */
        margin-bottom: 45px;
    }
    
    .marshall-home-wedding-service {
        padding: 32px 22px; /* Adjusted to match style guide */
    }
    
    .marshall-home-service-icon {
        margin-bottom: 20px;
    }
    
    .marshall-home-service-icon i {
        font-size: 38px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px; /* Adjusted to match style guide */
        margin-top: 45px;
    }
    
    .marshall-home-wedding-image img {
        height: 220px; /* Adjusted proportionally */
    }
    
    .marshall-home-image-caption {
        padding: 15px; /* Adjusted proportionally */
        font-size: 1rem; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-button {
        font-size: 1rem;
        padding: 15px 32px;
    }
    
    .marshall-home-service-button {
        font-size: 0.96875rem;
        padding: 12px 24px;
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-home-who,
    .marshall-home-weddings {
        padding: 60px 0; /* Increased from 50px to match style guide */
    }
    
    .marshall-home-who-container,
    .marshall-home-weddings-container {
        padding: 0 20px; /* Increased from 15px to match style guide */
    }
    
    .marshall-home-who-title,
    .marshall-home-weddings-title {
        font-size: 2.125rem; /* Updated to match style guide (34px) */
        margin-bottom: 35px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-text p {
        font-size: 1.03125rem; /* Updated to match style guide (16.5px) */
        margin-bottom: 25px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-subtitle {
        font-size: 1.03125rem; /* Updated to match style guide (16.5px) */
        margin-bottom: 40px; /* Adjusted to match style guide */
    }
    
    /* Mobile: Stack content vertically with image at bottom */
    .marshall-home-who-main {
        flex-direction: column;
        gap: 30px; /* Adjusted to match style guide */
        margin-bottom: 40px;
        text-align: center;
    }
    
    /* Reorder content on mobile - text first, image second */
    .marshall-home-who-text-column {
        order: 1;
    }
    
    .marshall-home-who-image-column {
        order: 2;
    }
    
    .marshall-home-who-text {
        text-align: center;
    }
    
    .marshall-home-who-image img {
        height: 280px; /* Adjusted proportionally */
    }
    
    /* Mobile: Single column layout for features */
    .marshall-home-who-features {
        grid-template-columns: 1fr;
        gap: 25px; /* Adjusted to match style guide */
        margin-bottom: 40px;
    }
    
    .marshall-home-who-feature {
        padding: 28px 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature i {
        font-size: 35px; /* Adjusted to match style guide */
        margin-bottom: 18px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature h3,
    .marshall-home-service-title {
        font-size: 1.1875rem; /* Updated to match style guide (19px) */
        margin-bottom: 18px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature p,
    .marshall-home-service-description {
        font-size: 0.96875rem; /* Updated to match style guide (15.5px) */
        margin-bottom: 25px; /* For descriptions only */
    }
    
    .marshall-home-weddings-grid {
        gap: 25px; /* Adjusted to match style guide */
        margin-bottom: 40px;
    }
    
    .marshall-home-wedding-service {
        padding: 28px 20px; /* Adjusted to match style guide */
    }
    
    .marshall-home-service-icon {
        margin-bottom: 18px;
    }
    
    .marshall-home-service-icon i {
        font-size: 35px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-gallery {
        grid-template-columns: 1fr;
        gap: 25px; /* Adjusted to match style guide */
        margin-top: 40px;
    }
    
    .marshall-home-wedding-image img {
        height: 200px; /* Adjusted proportionally */
    }
    
    .marshall-home-image-caption {
        padding: 15px; /* Adjusted proportionally */
        font-size: 0.96875rem; /* Updated to match style guide (15.5px) */
    }
    
    .marshall-home-who-button {
        font-size: 0.96875rem;
        padding: 15px 30px;
    }
    
    .marshall-home-service-button {
        font-size: 0.90625rem;
        padding: 14px 26px;
    }
    
    .marshall-home-who-cta {
        margin-top: 40px; /* Adjusted to match style guide */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-home-who-container,
    .marshall-home-weddings-container {
        padding: 0 18px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-title,
    .marshall-home-weddings-title {
        font-size: 2rem; /* Updated to match style guide (32px) */
        margin-bottom: 30px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-text p {
        font-size: 0.96875rem; /* Updated to match style guide (15.5px) */
        margin-bottom: 22px; /* Adjusted to match style guide */
    }
    
    .marshall-home-weddings-subtitle {
        font-size: 0.96875rem; /* Updated to match style guide (15.5px) */
        margin-bottom: 35px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-image img {
        height: 250px; /* Adjusted proportionally */
    }
    
    .marshall-home-who-feature {
        padding: 25px 18px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature i {
        font-size: 30px; /* Adjusted to match style guide */
        margin-bottom: 15px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature h3,
    .marshall-home-service-title {
        font-size: 1.0625rem; /* Updated to match style guide (17px) */
        margin-bottom: 15px; /* Adjusted to match style guide */
    }
    
    .marshall-home-who-feature p,
    .marshall-home-service-description {
        font-size: 0.90625rem; /* Updated to match style guide (14.5px) */
        margin-bottom: 22px; /* For descriptions only */
    }
    
    .marshall-home-wedding-service {
        padding: 25px 18px; /* Adjusted to match style guide */
    }
    
    .marshall-home-service-icon {
        margin-bottom: 15px;
    }
    
    .marshall-home-service-icon i {
        font-size: 30px; /* Adjusted to match style guide */
    }
    
    .marshall-home-wedding-image img {
        height: 180px; /* Adjusted proportionally */
    }
    
    .marshall-home-image-caption {
        padding: 12px; /* Adjusted proportionally */
        font-size: 0.90625rem; /* Updated to match style guide (14.5px) */
    }
    
    .marshall-home-who-button {
        font-size: 0.90625rem;
        padding: 14px 26px;
    }
    
    .marshall-home-service-button {
        font-size: 0.8125rem;
        padding: 13px 24px;
    }
    
    .marshall-home-who-cta {
        margin-top: 35px; /* Adjusted to match style guide */
    }
}