/* Homepage Specific Styles - Extends modern-style.css */
@import url('modern-style.css');

/* Override hero section for homepage with animated banner */
.hero {
    background-image: url(../banner_image/005.gif);
    background-color: #B3B3B3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    text-align: center;
    color: white;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero_header {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Homepage content styling */
.about {
    padding: 3rem 0;
    background-color: var(--surface);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.text_column {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 0 2rem;
    text-align: center;
}

.text_column img {
    margin: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
}

/* Facebook embed styling */
.fb-page {
    margin: 2rem auto;
    text-align: center;
    max-width: 600px;
}

iframe {
    max-width: 100%;
    margin: 2rem auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* App download buttons */
.app-downloads {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 1rem;
    }
    
    .hero_header {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .text_column {
        padding: 0 1rem;
    }
}