/* Homepage specific styles - common styles now in main.css */

.logo-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-horiz {
    max-width: 100%;
    height: auto;
}

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

.intro-video-section h2 {
    color: #921729;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.intro-video-section .intro-text-card {
    background: #f1f1f8;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 0 auto 1.5rem;
    max-width: 80%;
    border: 1px solid #e8e8e8;
}

.intro-video-section h3 {
    color: #921729;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d5735b;
    display: inline-block;
}

.intro-video-section p {
    text-align: left;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-video-section p:last-child {
    margin-bottom: 0;
}

/* Link styles now centralized in main.css */

.intro-video-section .intro-video-cta {
    background: linear-gradient(135deg, #faf8f8 0%, #f5f0f0 100%);
    border-left: 3px solid #d5735b;
    padding: 1rem 1.25rem;
    margin: 0 auto 1.5rem;
    max-width: 80%;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #555;
    text-align: left;
    line-height: 1.8;
}

.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;
}

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

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

/* Content section base styles now in main.css */
.content-section {
    padding: 1.5rem;
}

.container > .content-section {
    margin-bottom: 1.5rem;
}

.event-section {
    display: flex;
    justify-content: center;
}

.event-flyer-wrapper {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-flyer {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.event-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .event-cta {
        font-size: 1.1rem;
    }
}

.content-section h2 {
    font-size: 1.8rem;
}

/* Facebook section styles now centralized in main.css */

/* Newsletter and contact styles now centralized in main.css */

/* Sponsor and join section styles now centralized in main.css */

/* Homepage-specific responsive styles */
@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%;
    }

    .intro-video-section {
        padding: 1.5rem;
    }

    .intro-video-section .intro-text-card {
        max-width: 100%;
        padding: 1.25rem;
    }

    .intro-video-section .intro-video-cta {
        max-width: 100%;
        padding: 0.85rem 1rem;
    }

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

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