:root {
    --primary-color: #FFC436;
    --secondary-color: #0C356A;
    --text-dark-color: #333;
    --text-light-color: #FFFFFF;
    --main-font: 'Montserrat', sans-serif;
    --heading-font: 'Lora', serif;
}

/* General Styling */
body {
    font-family: var(--main-font);
    background-color: #f4f4f4;
    color: var(--text-dark-color);
}

/* Event Hero Section */
.event-hero {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #f4f4f4;
    align-items: center;
}

.event-info {
    max-width: 50%;
}

.event-info p {
    font-size: 1em;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-info h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event-info h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.event-button {
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--text-light-color);
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.event-button:hover {
    background-color: #333;
}

.event-carousel {
    display: flex;
    gap: 10px;
}

.event-carousel img {
    width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Countdown Section */
.countdown {
    display: flex;
    justify-content: center;
    padding: 40px;
    background-color: #fdfcf9;
    gap: 20px;
}

.countdown-item {
    font-size: 2em;
    color: var(--secondary-color);
    margin: 0 20px;
    text-align: center;
}

.countdown-item h4 {
    font-size: 2em;
    margin: 0;
}

.countdown-item span {
    font-size: 0.8em;
    color: #333;
}

/* Lineup Section */
.lineup {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.lineup h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.lineup-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.artist-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.artist-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.artist-card h4 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.artist-card p {
    font-size: 0.9em;
    color: #333;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 30px;
    text-align: center;
    color: var(--primary-color);
}

footer h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 20px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

footer p {
    font-size: 1em;
    color: var(--text-light-color);
}
