@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #f02529;
    --secondary-color: #191414;
    --background-color: #121212;
    --text-color: #FFFFFF;
    --accent-color: #f02529;
    --card-background: #181818;
    --hover-color: #282828;
    --border-color: #333;
    --background-light: #222222;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

#sidebar {
    width: 250px;
    height: 100vh;
    background-color: var(--secondary-color);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 100;
}

.logo img {
    width: 100%;
    margin-bottom: 30px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    margin-bottom: 15px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

main {
    flex: 1;
    margin-left: 250px;
    padding: 40px;
    max-width: calc(100% - 250px);
}

.index-page main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.event-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 120px;
}

.event-logo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: var(--card-background);
    padding: 20px;
    border-radius: 50%;
    z-index: 2;
}

.event-logo img {
    max-width: 200px;
    height: auto;
}

.event-header {
    text-align: center;
    margin-bottom: 30px;
}

.event-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.event-tagline {
    font-size: 20px;
    color: var(--accent-color);
}

.event-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.detail-item {
    text-align: center;
}

.detail-item .icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event-description {
    text-align: center;
    margin-bottom: 30px;
}

.event-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Event Metrics */
.event-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.metric-card {
    background: rgba(240, 37, 41, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.metric-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.time-block {
    text-align: center;
    min-width: 50px;
    background: rgba(240, 37, 41, 0.2);
    padding: 8px;
    border-radius: 4px;
}

.time-block span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.date {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

/* Campaign */
.campaign-highlight {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.tags span {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(240, 37, 41, 0.2);
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.cta-button {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 37, 41, 0.3);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    #sidebar {
        transform: translateX(-100%);
        width: 100%;
        max-width: 300px;
    }

    #sidebar.active {
        transform: translateX(0);
    }

    main {
        margin-left: 0;
        max-width: 100%;
        padding: 20px;
    }

    .index-page main {
        margin-left: 0;
    }

    .event-card {
        padding: 20px;
        padding-top: 100px;
    }

    .event-header h1 {
        font-size: 32px;
    }

    .event-tagline {
        font-size: 16px;
    }

    .event-details {
        flex-direction: column;
        gap: 20px;
    }

    .event-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 15px;
    }

    .time-block {
        min-width: 40px;
    }

    .time-block span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .event-header h1 {
        font-size: 24px;
    }

    .event-tagline {
        font-size: 14px;
    }

    .event-description {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .event-logo {
        top: -30px;
    }

    .event-logo img {
        max-width: 150px;
    }
}