* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
background-color: #a0522d;
color: #000;
}

/* NAVIGATION BAR */
.top-bar{
    background-color: #a0522d;
    padding: 0px 0px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 60px;
}
nav ul {
    list-style: none;
    display: flex;
    gap:20px;
}

nav a {
    color: #000;
    text-decoration:none;
    font-weight: bold;
    font-size: 1.5em;
}
.active{
    color:#fff;

}

/* HERO TEXT */
.hero-text {
    text-align: center;
    background-color: #a0522d;
    padding: 0px 0px;
    color:#fff;
}

.hero-text h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.hero-text img {
    width: 140px;
}

/* AUDIO PLYER SECTION */
.audio-player {
    background-color: #a0522d;
    padding: 0px 0;
    padding-bottom: 20px;
}
.audio-player h2 {
    text-align: center;
}

.audio-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-wrapper audio {
    width: 90%;
    max-width: 600px;
}


/* MAIN IMAGE */
.hero-img{
    height: 500px;
    overflow: hidden;
}
 
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CALL TO ACTION BUTTON SECTION  */
.cta-section {
    background-color: #a0522d;
    text-align: center;
    padding: 20px 0;
}

.cta-button {
    background-color: #045704;
    color:#fff;
    padding: 20PX 40px;
    border-radius: 25px;
    font-size: 2em;
    font-weight:bold;
    text-decoration: none;
}
.cta-button :hover{
    background-color: #010f01;
}


footer{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-image: url('media/image/footer.jpg');
    background-size:cover ;
    background-position: center;
    color: #fff;
    padding: 20px;
    min-height: 150px;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}
.footer-left p {
    margin:0;

} 

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}
.footer-right p {
    text-align:left;
    max-width: 200px;
}

footer a,
footer a:visited,
footer a:hover,
footer a:active{
    color: #fff !important;
    text-decoration:underline;
}

/* MOTTO SECTION */
.motto{
    text-align: center;
    padding: 20px;
}
.motto h1 {
    color: #fff;
}
    
.motto p{
    font-size: 1.2em;
    Color: #fff;
}



/* ABOUT MAIN SECTION */
.about-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    gap: 30px;
    background-color: #fff;
}

/* STORY TEXT */
.story-text{
flex: 1;
min-width: 300px;
max-width: 400px;

}
.story-text h2 {
    font-size: 3em;
    color: #000;
    margin-bottom: 10px;
}
.story-text p {
    font-size: 2em;
    line-height:1.6;
    color: #000;
    font-weight: bold;
}

/* media */
.about-media{
    flex:1;
    min-width: 320px;
    max-width: 600px;
}

.about-media iframe{
    width: 100%;
    height:300px;
    margin-bottom: 20px;
    display: block;
}
.about-media img{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}  

/* OPENING HOURS BOX */
.hours-box {
    background-color: #045704;
    color:#fff;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    font-weight: bold;
    align-self: center;
    flex-shrink: 0;
}

.hours-box h3{
    font-size: 2em;
    margin-bottom: 10px;

}
.hours-box p{
    font-size: 1.5em;
    margin: 0;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 900px){
    .about-layout{
        flex-direction: column;
        align-items: center;
        text-align:center
    }
    .story-text,
    .about-media,
    .hours-box {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
}


/* GALLERY */
.gallery {
text-align:center;
background-color: #a0522d;
padding: 40px 20px;
height: 700px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.gallery img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


/* MENU */
.menu-title {
    text-align: center;
    color: #fff;
    background-color: #a0522d;
    padding: 20px;
    font-size: 2em;
}

.menu-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #78c2ad;
    border-radius: 10px;
    color:#000
}

.menu-wrapper h2 {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #000;
    boarder-bottom: 2px solid #5d4037;
    padding: 5px;
}

.menu-wrapper p {
    margin: 10px 0;
    line-height: 1.5;
}


/* CONTACT */
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    background-color: #a0522d;
    padding: 30px;
    color:#fff;
    margin: 60px auto;
    max-width: 1000px;
    boarder-radius: 10px;
    min-height: 70vh;
}

.contact-box {
    flex: 1 1 300px;
    font-size: 1.2em;
}

.contact-box h1{
    margin-bottom: 20px;
    
}

.contact-box p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-box a {
    color:#fff;
    text-decoration: underline;
}