/* ============================================
   ELEGANT WEDDING THEME STYLES
   Matching your theme's romantic aesthetic
   ============================================ */

/* Elegant Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.service-title {
    font-family: var(--font-script);
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-description {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-style: italic;
}

/* Elegant Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Testimonial Styles */
.testimonial-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    border-top: 3px solid #748173;
}

.testimonial-stars {
    color: #748173;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.9;
    color: #5A5A58;
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-author {
    font-family: var(--font-elegant);
    font-weight: 600;
    color: #3C3C3A;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.testimonial-event {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: #7A8B7D;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* Elegant Feature List */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.feature-title {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.875rem;
}

.feature-text {
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.9375rem;
    font-style: italic;
}

/* Elegant CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #7A8B7D 0%, #6A7B6D 100%);
    padding: 6rem 3rem;
    text-align: center;
    color: white;
    border-radius: 8px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #748173;
}

.cta-banner h2 {
    font-family: var(--font-script);
    color: white;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-banner p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    font-style: italic;
    line-height: 1.8;
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: #748173;
    margin: 2rem auto;
}

/* Elegant Section Headers */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7A8B7D;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 6vw, 5rem);
    color: #3C3C3A;
    margin-bottom: 1.75rem;
    font-weight: 400;
    line-height: 1.1;
}

.section-description {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: #5A5A58;
    line-height: 1.8;
    font-style: italic;
}

/* About Section Elegant Styling */
.heading-script {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.2;
    color: #7A8B7D;
}

/* Section Spacing */
.section {
    padding: 6rem 0;
}

.section.bg-light {
    background: #FDFDFB;
    padding: 5rem 0;
}

.section.bg-cream {
    background: #F5EFE7;
    padding: 6rem 0;
}

.section-sage {
    background: #7A8B7D;
    color: white;
    padding: 6rem 0;
}

.section-sage h1,
.section-sage h2,
.section-sage h3,
.section-sage .section-title,
.section-sage .section-label {
    color: white;
}

.section-sage .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section.bg-light,
    .section.bg-cream,
    .section-sage {
        padding: 4rem 0;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .services-grid,
    .gallery-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        height: 420px;
    }

    .testimonial-card {
        padding: 3rem 2rem;
    }

    .testimonial-text {
        font-size: 1.0625rem;
    }

    .cta-banner {
        padding: 4rem 2rem;
        margin: 3rem 0;
    }
}
