* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Albert Sans", Arial, sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
}

/* --- 1. Logo Header --- */
.site-header {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.logo-wrapper {
    width: 100%;
    max-width: 512px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 2. Hero Section --- */
.hero-container {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 40px;
    text-align: left;
}

.page-title {
    font-size: 3rem; /* Requested size */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 2.4rem; /* Requested size 'sidebar 2' interpreted as subtitle */
    font-weight: 700;
    color: #cf2e2e;
}

/* --- 3. Main Events Section --- */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 40px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Event Card Grid */
.event-card {
    display: grid;
    grid-template-columns: 280px 30px 1fr;
    gap: 80px;
    align-items: start;
}

.date-text {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.time-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #cf2e2e;
    margin-top: 10px;
}


.event-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #cf2e2e;
}

.event-desc {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    max-width: 600px;
}

.event-tags {
    display: flex;
    gap: 15px;
}

.event-tags span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #E63917;
    text-transform: uppercase;
}

/* --- 4. Footer --- */
.site-footer {
    width: 100%;
}

.footer-image-container {
    width: 100%;
    overflow: hidden;
}

.footer-hero-img {
    width: 100%;
    object-fit: cover;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 30px 40px;
}

.contact-info h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
	line-height: 0.9;
	letter-spacing: -1px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .event-card {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .event-image img {
        max-width: 400px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.5rem;
    }
}
