/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #000000;
}

.main {
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

.title {
    text-align: center;
}

.title h1 {
    color: #f1f1f1;
    font-size: 128px;
    font-weight: 900;
}

.title p {
    color: #f1f1f1;
    font-size: 70.57px;
    font-weight: 700;
}

.lineup {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Ensures everything inside lineup is centered */
    gap: 10px; /* Adds space between the image and button */
}

.lineup img {
    width: 100%; /* Make the image responsive */
    max-width: 860px; /* Maximum width to maintain image quality */
    height: auto; /* Maintain aspect ratio */
    padding-bottom: 20px;
}

.ticket-link {
    text-align: center;
    background-color: #DC136c; /* Set button background color */
    color: #f1f1f1; /* Text color */
    padding: 12px 24px; /* Adjust padding for a smaller button */
    font-size: 16px; /* Slightly smaller font for a better look */
    border-radius: 20px; /* Rounded corners */
    cursor: pointer; /* Makes it clear the button is clickable */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Add transition for smooth hover effect */
    width: 200px; /* Fixed width for the button */
    text-decoration: none;
}

.ticket-link:hover {
    background-color: #333; /* Change background color when hovering */
    transform: scale(1.05); /* Slight scale up effect for visual interaction */
    color: #f1f1f1; /* Ensure text color stays readable */
}
.map{
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Ensures everything inside lineup is centered */
    gap: 10px; /* Adds space between the image and button */
}
.map img{
    width: 100%; /* Make the image responsive */
    max-width: 830px;
    height: auto; /* Maintain aspect ratio */
}
.map h1{
    font-family: "Roboto";
    font-size: 97px;
    font-weight: 500;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .title h1 {
        font-size: 60px; /* Reduce title size on smaller screens */
    }
    .title p {
        font-size: 33px; /* Reduce title size on smaller screens */
    }

    .lineup img {
        width: 90%; /* Allow image to scale better on smaller screens */
    }

    .ticket-link {
        width: 80%; /* Make the button width responsive */
    }
    .map h1{
        font-size: 60px;}
}

@media (max-width: 480px) {
    .title h1 {
        font-size: 40px; /* Smaller title size for very small screens */
    }

    .lineup img {
        width: 100%; /* Ensure the image takes up full width on very small screens */
    }

    .ticket-link {
        width: 90%; /* Ensure the button adjusts to smaller screen sizes */
    }
    .map h1{
        font-size: 50px;}
}

