﻿/* Header Section Styling */
.header-section {
    padding: 80px 20px; /* Generous padding for prominence */
    background-color: #ffffff;
    text-align: center;
}

/* Tagline (EVENTS & GALLERY) */
.tagline {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #7c3aed; /* Vibrant Purple */
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Main Heading */
.main-heading {
    font-size: 2.5rem;
    font-weight: 900; /* Extra bold */
    color: #1f2937; /* Dark text */
    margin: 0 auto 20px;
    max-width: 800px;
    line-height: 1.2;
}

/* Accent Line Separator */
.main-heading-container {
    display: inline-block;
    text-align: center;
}

    .main-heading-container::after {
        content: '';
        display: block;
        width: 80px; /* Fixed width line */
        height: 4px;
        background-color: #ea580c; /* Primary Orange accent */
        border-radius: 2px;
        margin: 15px auto 0;
    }

/* Description/Subtext */
.description {
    font-size: 0.9rem;
    color: #6b7280; /* Medium gray text */
    max-width: 700px;
    margin: 20px auto 0;
}

/* Responsiveness */
@media (min-width: 768px) {
    .header-section {
        padding: 50px 30px;
    }

    .main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
}


/* Gallery Placeholder Styling (For visual context) */
.gallery-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: #e5e7eb;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}
