/* --- Global Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1e; /* Dark slate background */
    color: #f4f4f6; /* Off-white text */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

hr {
    border: 0;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: #0f0f12;
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.95), rgba(255, 46, 99, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero .location {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2e63; /* Energetic Red/Pink accent */
    font-size: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 15px 0;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #eaeaea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: #ff2e63;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #e02251;
}

/* --- Intro Section --- */
.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* --- Events Grid & Cards --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.event-card {
    background-color: #25252b;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-time {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff2e63;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.event-location {
    font-size: 0.9rem;
    color: #b3b3b3;
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-event {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #3d3d45;
    font-size: 0.9rem;
}

.sub-event ul, .sub-event ol {
    margin-top: 8px;
    padding-left: 20px;
}

.sub-event li {
    margin-bottom: 5px;
}

/* Featured Styling for Highlighted Cards */
.highlight-card {
    border: 2px solid #ff2e63;
    box-shadow: 0 10px 20px rgba(255, 46, 99, 0.15);
}

/* --- Card Image Formatting --- */
.card-img-container {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #1a1a1e;
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Registration Perks --- */
.registration-perks {
    background: #1a1a1e;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.9rem;
    border-left: 3px solid #ff2e63;
}

.registration-perks ul {
    margin-top: 5px;
    list-style-type: none;
}

.registration-perks li {
    margin-bottom: 5px;
}

/* --- Merchandise Section --- */
.merch-section {
    text-align: center;
    padding: 20px 0;
}

.merch-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.merch-section p {
    color: #b3b3b3;
    margin-bottom: 25px;
}

.merch-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shirt-img {
    max-width: 100%;
    height: auto;
    width: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

/* --- Contact Section --- */
.contact-section {
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-intro {
    color: #b3b3b3;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-box {
    background: #25252b;
    border: 1px solid #333;
    padding: 20px 40px;
    border-radius: 6px;
    min-width: 280px;
}

.contact-box h4 {
    color: #ff2e63;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background: #3d3d45;
    padding: 6px 15px;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.2s ease;
}

.contact-link:hover {
    background: #ff2e63;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0f0f12;
    color: #666;
    font-size: 0.85rem;
    margin-top: 60px;
}

/* --- Responsive Adjustments --- */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero .subtitle {
        font-size: 1.1rem;
    }
    .contact-box {
        width: 100%;
    }
}