/* css/concert.css */

body {
    font-family: 'Lemonmilk', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.event-banner {
    background-image: url('../img/hh-50-friends-conert-banner.jpg'); /* Adjusted path */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h1, h2, h3 {
    color: #d85b00;
}

.event-content section {
    margin-bottom: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-description h3 {
    color: #d85b00;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.event-description .event-date {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.event-description h4 {
    color: #d85b00;
    margin-top: 1.5em;
}

.event-schedule ul, .performers ul {
    list-style-type: none;
    padding-left: 0;
}

.event-schedule li, .performers li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.event-schedule li:before, .performers li:before {
    content: "\f0da"; /* Font Awesome right arrow icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d85b00;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d85b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #ff6c00;
}

.performers ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.performers li {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
}

.footer {
    margin-top: 40px;
    padding: 20px 0;
    background-color: #1a2b47;
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #f0a050;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
}

.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #d85b00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
}

.home-button:hover {
    background-color: #ff6c00;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .event-banner {
        height: 200px;
    }

    .home-button {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .performers ul {
        grid-template-columns: 1fr;
    }
}