/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF3E0; /* Warm, inviting background */
    color: #333;
}

/* Header */
header {
    background-color: #A52A2A; /* Rich brown/red tone */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    content: url('/logo.jpg'); /* Updated to use the new logo */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

h1, h2 {
    color: #8B0000; /* Deep red for headers */
}

p {
    font-size: 18px;
}

/* Home Section */
#home {
    position: relative;
}

#home img.stage-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* Menu Section */
#menu {
    background-color: #FFF8DC; /* Light creamy tone */
    padding: 50px;
}

/* Events Section */
#events {
    background-color: #F5DEB3; /* Soft warm beige */
    padding: 50px;
}

/* Contact Section */
#contact {
    background-color: #D2B48C; /* Tan tone for warmth */
    padding: 50px;
}

#map {
    width: 100%;
    height: 300px;
    background-color: #ddd;
}

/* Footer */
footer {
    background-color: #A52A2A;
    color: white;
    text-align: center;
    padding: 20px;
}
