/* Homepage specific styles */

main {
    padding: 2rem 0;
}

.hero-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.intro-video-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.intro-video-section h2 {
    color: #921729;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.intro-video-container {
    position: relative;
    width: 80%;
    height: 0;
    padding-bottom: 45%;
    margin: 0 auto;
}

.intro-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.construction-notice {
    background: linear-gradient(135deg, #e7573b 0%, #d10024 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.two-column-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.left-column,
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #921729;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.facebook-section {
    text-align: center;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    background: #1877f2;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.facebook-link:hover {
    background: #166fe5;
}

.facebook-iframe-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.facebook-iframe-container iframe {
    max-width: 100%;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e7573b;
}

.contact-info h3 {
    color: #921729;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #d10024;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.sponsor-carousel h3 {
    color: #921729;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.sponsors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.sponsor-item {
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}

.sponsor-item:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.sponsor-item img {
    height: 7rem;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .facebook-iframe-container iframe {
        width: 100%;
        max-width: 350px;
        height: 500px;
    }

    .intro-video-container {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .sponsor-item img {
        height: 5rem;
    }

    .sponsors-list {
        gap: 1.5rem;
    }
}