body {
    font-family: 'Barlow', sans-serif;
    margin-top: 0;
    padding: 0;
    background-color: #1a1a1a;
    /* Dark charcoal background */
    color: #e0e0e0;
    /* Light gray text */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* the hex logo on index page */
.image-section img,
.content-wrapper img {
    display: block;
    margin: 0 auto;
}



/* Global Button Styles */
button {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    padding: 12px 24px;
    background-color: #EC1E24;
    /* Lava Red */
    color: #FAFAFA;
    /* Off-white text */
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

button:hover {
    background-color: #7B0000;
    /* Dark Burgundy hover */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Specific: Large Buttons Group */
.large-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.large-buttons button {
    font-size: 1.4rem;
    width: 80%;
    max-width: 400px;
}

p {
    margin: 0.5rem 3rem;
    padding: 0.75rem 1rem;
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(51, 51, 51, 0.4);
    /* Darker gray overlay */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

p:hover {
    transform: scale(1.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    background: #333333;
    /* Darker background on hover */
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

main.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    gap: 20px;
    max-width: 90%;
    margin: auto;
    font-size: 1.3rem;
}

section {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

h2 {
    font-size: 1.8rem;
    color: #EC1E24;
    /* Lava Red */
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.welcome-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 1.4rem;
    max-width: 800px;
}

.image-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 0;
    margin-bottom: 1rem;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    max-width: 800px;
}

.welcome-section,
.video-section {
    background: linear-gradient(135deg, #333333, #7B0000);
    /* Gray to Burgundy */
    color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.video-container {
    position: relative;
    width: 90%;
    padding-top: 56.25%;
    margin-top: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

footer {
    background: #444444;
    /* Mid-gray footer */
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}