/* ===================================
   UX IMPROVEMENTS CSS
   Hampton Venue - Comprehensive Section Refinements
   =================================== */

/* ============================================
   1. HERO / WHAT WE OFFER SECTION
   ============================================ */

/* Adjust Services section spacing to tighten gap from About section */
#services {
    padding-top: 4rem !important;
    padding-bottom: 4rem;
}

/* Reduce extra bottom space after About / Timeline section */
#about {
    padding-bottom: 3rem;
}

/* Make "WHAT WE OFFER" badge more prominent */
.section-badge {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    padding: 0.65rem 1.75rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 2rem !important;
}

/* Add breathing room to heading and subtext */
.section-title-enhanced {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1F1F1F !important;
    font-weight: 800 !important;
}

/* Improve tagline contrast */
.section-subtitle-enhanced,
.text-hampton-gray {
    color: #4A4A4A !important;
    font-weight: 500 !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
}

/* Remove hero CTA section - using existing buttons */

/* ============================================
   2. SERVICE CARDS - UNIFORM ALIGNMENT
   ============================================ */

.service-card,
.service-card-enhanced {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    padding: 2.5rem 2rem 2rem 2rem;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Uniform button styling */
.service-card .btn-primary,
.service-card-enhanced .btn-primary,
.service-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 0.875rem 1.75rem !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
}

/* Remove the duplicate text issue - let HTML handle button text */

/* Feature badge alignment */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Icon centering */
.service-icon,
.service-icon-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Bullet list consistency */
.service-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* ============================================
   3. INCLUDED SERVICES & ADD-ONS
   ============================================ */

.included-services-section {
    padding: 4rem 2rem;
}

/* Feature icon blocks spacing */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.feature-block i {
    font-size: 3rem !important;
    color: #C5A572;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-block h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.75rem;
}

.feature-block p {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.6;
}

/* CTA section spacing */
.cta-centered {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.cta-centered h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1F1F1F;
}

.cta-centered .btn-primary {
    font-size: 1.05rem !important;
    padding: 1rem 2.5rem !important;
}

/* ============================================
   4. PRICING CARDS - STANDARDIZATION
   ============================================ */

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.pricing-header {
    flex-shrink: 0;
}

.pricing-features {
    flex: 1;
}

/* Uniform button style */
.pricing-btn {
    background: #1f4045 !important;
    color: white !important;
    font-family: 'Khula', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1.15rem 2.5rem !important;
}

.pricing-btn-featured {
    background: #479eed !important;
    color: white !important;
}

/* Standardize button labels */
.pricing-btn::after {
    content: ' →';
}

/* Feature list alignment */
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    padding: 0.65rem 0;
}

.pricing-features li i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Most Popular badge alignment */
.pricing-badge {
    top: -15px;
    right: 25px;
}

/* Card padding */
.pricing-card {
    padding: 3rem 2.5rem 2.5rem 2.5rem;
}

/* ============================================
   5. STATISTICS / HIGHLIGHTS
   ============================================ */

.highlights-section,
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, 
        rgba(250, 245, 235, 0.3), 
        rgba(255, 255, 255, 0.5)
    );
}

/* Uniform stat blocks */
.stat-block,
.highlight-block {
    text-align: center;
    padding: 2rem 1rem;
}

/* Consistent icon sizing */
.stat-block i,
.highlight-block i {
    font-size: 2.5rem !important;
    color: #C5A572;
    margin-bottom: 1.5rem;
    display: block;
}

/* Uniform number styling */
.stat-number,
.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #1F1F1F;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

/* Consistent labels */
.stat-label,
.highlight-label {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #4A4A4A;
    letter-spacing: 0.03em;
}

/* Equal padding and alignment */
.stats-grid,
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* ============================================
   6. GALLERY INTRODUCTION & FILTERS
   ============================================ */

.gallery-intro {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.gallery-intro .section-title-enhanced {
    margin-bottom: 1.25rem;
}

.gallery-intro .section-subtitle {
    font-size: 1.15rem;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Prominent filter pills */
.gallery-filters,
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.gallery-filter,
.category-filter {
    background: white;
    color: #4A4A4A;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(197, 165, 114, 0.25);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-filter:hover,
.category-filter:hover,
.gallery-filter.active,
.category-filter.active {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    border-color: #C5A572;
    box-shadow: 0 6px 25px rgba(197, 165, 114, 0.4);
    transform: translateY(-3px);
}

/* ============================================
   7. GALLERY / VIRTUAL TOUR
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Virtual tour card */
.virtual-tour-card {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95), rgba(74, 74, 74, 0.9));
    border-radius: 16px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.virtual-tour-card .play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(197, 165, 114, 0.5);
}

.virtual-tour-card .play-icon i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.virtual-tour-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.virtual-tour-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-align: center;
}

/* Gallery thumbnails */
.gallery-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(197, 165, 114, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumbnail:hover .zoom-icon {
    opacity: 1;
}

.gallery-thumbnail .zoom-icon i {
    color: white;
    font-size: 1.5rem;
}

/* ============================================
   8. WHY COUPLES CHOOSE / BENEFITS
   ============================================ */

.benefits-section {
    padding: 4rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.benefit-item p {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.6;
}

/* ============================================
   9. TESTIMONIALS / BLOG SECTION
   ============================================ */

.testimonials-section {
    padding: 4rem 2rem 3rem 2rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.testimonial-card {
    text-align: center;
    padding: 3rem;
}

.testimonial-quote {
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    color: #2A2A2A !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem;
}

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

/* Slider arrows prominence */
.testimonial-arrow {
    width: 50px;
    height: 50px;
    background: rgba(197, 165, 114, 0.15);
    border: 2px solid #C5A572;
    border-radius: 50%;
    color: #C5A572;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

/* Blog section separation */
.blog-preview-section {
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.blog-search-bar {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(197, 165, 114, 0.2);
    border-radius: 50px;
    font-size: 1.05rem;
}

/* Blog category filters */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter {
    background: white;
    color: #4A4A4A;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    border: 2px solid rgba(197, 165, 114, 0.2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter.active {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    border-color: #C5A572;
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

/* ============================================
   10. CONTACT SECTION
   ============================================ */

#contact {
    padding: 4rem 2rem 3rem 2rem;
}

.contact-form-section {
    padding: 2rem;
}

/* Form field styling */
.form-field {
    margin-bottom: 2rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: #2A2A2A;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(197, 165, 114, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #C5A572;
    box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.15);
    outline: none;
}

/* Submit button */
.contact-form-section .btn-primary {
    width: 100%;
    font-size: 1.05rem !important;
    padding: 1rem 2rem !important;
    margin-top: 1rem;
}

/* Map spacing */
.contact-map {
    margin-left: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-sidebar {
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #C5A572;
    width: 30px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item strong {
    display: block;
    font-size: 1.1rem;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
}

.contact-info-item span {
    color: #5A5A5A;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   11. FOOTER IMPROVEMENTS
   ============================================ */

#footer {
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    padding: 0 1rem;
}

/* Footer links spacing */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-links a {
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Office hours distinction */
.footer-hours-box {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(184, 149, 106, 0.3) !important;
    border-radius: 12px;
    padding: 1.5rem !important;
}

.footer-hours-box h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Social icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    #services {
        padding-top: 4rem !important;
    }
    
    .feature-grid,
    .stats-grid,
    .highlights-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .service-card,
    .service-card-enhanced {
        min-height: 500px;
        padding: 2rem 1.5rem 1.5rem;
    }
}
