/* General Styles */
body {
    font-family: 'Almarai', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Amiri', serif;
     color: #665454;
    margin-bottom: 20px;
    text-align: center;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.logo h1{
    margin: 0;
}


/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1610771016281-a47dfa7e3780?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8YXplcmJhaWphbiUyMGZvb2R8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}
.hero:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.hero .container{
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}
.hero p{
    font-size: 1.2rem;
}

.phone{
    margin-top: 20px;
    font-weight: bold;
}
/* Buttons */
.btn {
    display: inline-block;
    background-color: #665454;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 50px 0;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}


/* Menu Section */
.menu {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.menu-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-item {
    text-align: center;
    margin: 20px;
    max-width: 300px;
}

.menu-item img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.testimonial-card{
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin: 20px;
    max-width: 400px;
    text-align: center;
}

/* Location */
.location {
    padding: 50px 0;
    text-align: center;
}

.location iframe {
    max-width: 100%;
    margin-bottom: 20px;
}

/* Contact */
.contact {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.contact form{
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}
.contact input, .contact textarea{
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}