/**
 * Homepage Specific Styles
 * Modern design with parallax and video effects
 */

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 110, 120, 0.85) 0%, rgba(30, 90, 100, 0.9) 100%);
    z-index: 2;
}

/* Enhanced Hero */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content-enhanced {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    max-width: 1000px;
}

.hero-content-enhanced h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content-enhanced p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    line-height: 1.7;
    font-weight: 300;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(42, 110, 120, 0.3);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(42, 110, 120, 0.95), rgba(42, 110, 120, 0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-caption h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author .text-muted {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-content-enhanced h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-enhanced p {
        font-size: 1.2rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

