@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Lora&display=swap');

body {
    font-family: 'Lora', serif;
    background-color: #3C352D; /* deep earthy brown */
    color: #EFEAE1; /* off-white cream */
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

header {
    background-color: #2B2722;
    padding: 0rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #A78A55; 
}

.logo {
    height: 300px;
    width: auto;
}

nav a {
    font-family: 'Cinzel', serif;
    color: #A78A55;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #EFEAE1; /* off-white hover */
}

.hero {
    background-color: #514941;
    text-align: center;
    padding: 2.5rem 1rem;
    border-bottom: 3px solid #A78A55;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #A78A55; /* gold accent */
    margin-bottom: 0.5rem;
}

section {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
}

section h2 {
    font-family: 'Cinzel', serif;
    color: #A78A55; /* gold */
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #A78A55;
    display: block;
    margin: 0.5rem auto 0;
}

.menu-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    margin-top: 1rem;
}

address {
    font-style: normal;
    text-align: center;
    margin-top: 1rem;
}

footer {
    background-color: #2B2722;
    color: #EFEAE1;
    padding: 1.2rem 2rem;
    border-top: 3px solid #A78A55;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-left p, .footer-center p {
    margin: 0.2rem 0;
}

.footer-left a {
    color: #CDBE78;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-right a img {
    transition: transform 0.3s;
}

.footer-right a img:hover {
    transform: scale(1.2);
}   

.event-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.event-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #A78A55;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 4px;
}

.event-list strong {
    color: #CDBE78;
}

#facebook {
    text-align: center;
    margin-top: 2rem;
}

#facebook img {
    transition: transform 0.3s ease;
}

#facebook img:hover {
    transform: scale(1.2);
}

