/* AC-01, AC-02, AC-03, AC-04, AC-05, AC-06, AC-07: Homepage Section Hierarchy & Flow */

/* Section Spacing & Rhythm */
.vt-services-section,
.vt-gallery-section,
.vt-testimonials-section,
.vt-cta-section {
    padding-top: clamp(3rem, 8vw, 6rem);
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

/* Section Titles */
.vt-section-title {
    font-family: var(--wp--preset--font-family--playfair-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--vt-color-emerald);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.vt-cta-section .vt-section-title {
    color: var(--vt-color-ivory);
}

/* Gold Divider */
.vt-gold-divider {
    border-top: 1px solid var(--vt-color-gold);
    width: 60px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

/* Services Grid */
.vt-services-grid {
    gap: 2rem;
}

.vt-service-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.vt-service-card:hover {
    transform: translateY(-4px);
}

.vt-service-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(26, 58, 42, 0.1);
}

.vt-service-title {
    font-family: var(--wp--preset--font-family--playfair-display);
    font-size: 1.25rem;
    color: var(--vt-color-emerald);
    margin-top: 0.5rem;
}

/* Gallery Grid */
.vt-gallery-grid {
    gap: 1.5rem;
}

.vt-gallery-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.vt-gallery-img:hover img {
    transform: scale(1.02);
}

/* Testimonials */
.vt-testimonials-grid {
    gap: 2rem;
}

.vt-testimonial-card {
    background: var(--vt-color-ivory);
    padding: 2rem;
    border-radius: 4px;
    border-left: 3px solid var(--vt-color-gold);
}

.vt-testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--vt-color-emerald);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vt-testimonial-author {
    font-size: 0.9rem;
    color: var(--vt-color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.vt-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vt-services-grid,
    .vt-gallery-grid,
    .vt-testimonials-grid {
        flex-direction: column;
    }

    .vt-service-img img,
    .vt-gallery-img img {
        height: 200px;
    }
}
