/* ===================================
   IBIZA WEDDING FILMS - Home Page Styles
   =================================== */

/* Additional Home Page Styles */

/* Home specific CTA in features section */
.features-cta {
    text-align: center;
    margin-top: 60px;
}

/* Film preview section */
.films-preview {
    margin-top: 60px;
}

/* Packages preview on home */
.packages-preview {
    margin-top: 60px;
}

.packages-preview .packages-grid {
    margin-bottom: 0;
}

/* Calculator preview on home */
.calculator-preview {
    margin-top: 60px;
}

/* Responsive adjustments for home page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-cta {
        margin-top: 40px;
    }
}

/* Additional animations for home page */
.home-hero .hero-content {
    animation: fadeInUp 1s ease;
}

.home-hero .hero-video-bg {
    animation: scaleIn 1.5s ease;
}

/* Section dividers */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 40px;
}

.text-center .section-divider {
    margin: 20px auto;
}

/* Quick contact box */
.quick-contact {
    background: var(--cream);
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.quick-contact h4 {
    margin-bottom: 15px;
}

.quick-contact .btn {
    margin-top: 15px;
}

/* Trust badges or logos */
.trust-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item span {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .trust-logos {
        gap: 30px;
    }
    
    .trust-logos > * {
        flex: 0 0 40%;
    }
}
