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

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #fff;
    background-color: #121212;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-event h2, 
.featured-event .button.primary {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    margin-bottom: 0.5rem;  
}

.featured-event .button.primary {
    margin-left: 2rem;      
}

.featured-event {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 0.5rem;
    z-index: 2;
    max-width: 500px;
}

.featured-event h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

.button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.button.primary {
    background: #e11d48;
    color: white;
}

.button.primary:hover {
    background: #be123c;
}

.button.outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.badge {
    background: transparent;
    text-decoration: underline solid #e11d48 0.2em;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.events {
    padding: 4rem 2rem;
    background: #1a1a1a;
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 0.5rem;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.05);
}

.event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    color: white;
}

.date {
    display: inline-block;
    flex-direction: column;
    color: white;
}

.date .day {
    font-size: 2rem;
    font-weight: bold;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 2rem;
    background: #2a2a2a;
}

.stat {
    text-align: center;
}

.stat .value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.stat .label {
    color: #a3a3a3;
}

.testimonials {
    padding: 4rem 2rem;
    background: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer {
    text-align: center;
    background: #1a1a1a;
    padding: 4rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #e11d48;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #e11d48;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
}
@media (max-width: 768px) {
    .featured-event {
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    }

    .stats {
    flex-direction: column;
    gap: 2rem;
    }
    
    .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    }
}


 