/* ==========================================================
   SUNNYBANK — WEDDING FLORIST PAGE STYLES
   Focus: Clean, professional, approachable design
========================================================== */
.sb-wedding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Lato', sans-serif;
    color: #2C2C2C;
    line-height: 1.7;
}

/* --- HEADER SECTION --- */
.sb-wedding-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
}

.sb-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #688673;
    font-weight: 600;
    margin-bottom: 18px;
}

.sb-wedding-container h1 {
    font-family: 'Playfair Display', serif;
    color: #4A6655;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
}

.sb-intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sb-intro-text strong {
    color: #4A6655;
    font-weight: 600;
}

/* --- SERVICE GRID --- */
.sb-service-section {
    margin-bottom: 80px;
}

.sb-section-title {
    font-family: 'Playfair Display', serif;
    color: #4A6655;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.sb-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    align-items: stretch;
}

.sb-info-card {
    background: #ffffff;
    padding: 50px 35px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(74, 102, 85, 0.06);
    border: 1px solid rgba(74, 102, 85, 0.08);
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.sb-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(74, 102, 85, 0.12);
    border-color: rgba(74, 102, 85, 0.15);
}

.sb-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #E8F0EB;
    font-weight: 700;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 0;
    line-height: 1;
}

.sb-info-card h3 {
    font-family: 'Playfair Display', serif;
    color: #4A6655;
    font-size: 1.5rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.sb-info-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    line-height: 1.7;
}

/* --- GALLERY --- */
.sb-gallery-section {
    margin-bottom: 80px;
}

.sb-gallery-wrap {
    padding: 15px;
    background: #fff;
    border: 1px solid #f0efeb;
    border-radius: 3px;
}

/* --- CALL TO ACTION --- */
.sb-cta-wrap {
    text-align: center;
    padding: 80px 40px;
    background: #F9F7F2;
    border-radius: 3px;
}

.sb-cta-wrap h2 {
    font-family: 'Playfair Display', serif;
    color: #4A6655;
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.sb-cta-wrap p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #555;
}

.sb-cta-button {
    display: inline-block;
    background-color: #4A6655;
    color: #ffffff !important;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.sb-cta-button:hover {
    background-color: #5a7765;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 102, 85, 0.25);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .sb-wedding-container { 
        padding: 40px 20px; 
    }
    
    .sb-wedding-container h1 { 
        font-size: 2.2rem; 
    }
    
    .sb-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .sb-info-grid { 
        gap: 25px; 
    }
    
    .sb-info-card { 
        padding: 40px 25px;
        text-align: center;
    }
    
    .sb-card-num {
        position: static;
        display: block;
        margin-bottom: 15px;
        font-size: 2.5rem;
    }
    
    .sb-cta-wrap {
        padding: 60px 25px;
    }
    
    .sb-cta-wrap h2 {
        font-size: 1.8rem;
    }
    
    .sb-cta-button {
        padding: 16px 35px;
        font-size: 0.85rem;
    }
}