body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffebcd;
    background-color: #b32c25;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    font-size: 2.2em;
    text-align: center;
    color: #ffebcd;
}

h2 {
    margin-top: 40px;
}

p {
    font-size: 1.1em;
    text-align: center;
}

.directions-button {
    background-color: transparent;
    border: 1px solid #ffedcd;
    color: #ffebcd;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.directions-button:hover {
    color: #b32c25;
    background-color: #ffedcd;
}

.text-center {
    text-align: center;
    margin-bottom: 20px;
}

.responsive-image {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: block; /* Ensures centering */
}

.whats-on-list {
    list-style: none; /* Removes bullet points */
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.whats-on-list li {
    font-size: 1.1em;
    color: #ffebcd;
    margin-bottom: 8px;
}

.youtube-container {
    text-align: center;
    margin-top: 20px;
}

.youtube-container iframe {
    max-width: 100%;
    height: auto;
}