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

/* Root Variables */

:root {
  --primary-color: #880000; /* Dark Red */
  --secondary-color: #FFD700; /* Gold */
  --dark-color: #222; /* Very Dark Gray */
  --light-color: #f9f9f9; /* Very Light Gray */
  --max-width: 100%;
  --font-main: 'Arial', sans-serif;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

h1,h2, h3 {
  margin-bottom: 1rem;
}

h2 {
    color: #8B0000; /* Primary color */
    font-weight: bold;
}

section {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: auto;
}

header {
  background-color: var(--primary-color);

}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: auto;
  padding: 1.2rem 2rem;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  background-color: var(--primary-color);


}

header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.logo-text h1 {
  font-family: Playfair Display, serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  /* padding-bottom: 5px; */
  color: white;
  font-weight: bold;
}

header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
header .logo img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
header .logo:hover .logo-text h1 {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}
header .logo:hover .logo-img {
  box-shadow: 0 0 15px var(--secondary-color);
  transition: box-shadow 0.3s ease;
}
header .logo:active .logo-img {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
header nav {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;

}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover{
  color: var(--secondary-color)
}

/* hide the mobile button */

.menu-toggle {
  display: none;
}

/* Hero Section */
#home {
  text-align: center;
  /* padding: 6rem 2rem; */
  background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)), url("images/23\ Restaurant\ Interior\ Design\ Ideas\ for\ a\ Stunning….jpeg") center/cover no-repeat;
  color: white;
}

.hero-section {
  width: 100%;
  min-height: 60vh;
  position: relative;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 60vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(34,34,34,0.7) 0%, rgba(34,34,34,0.3) 100%); */
  z-index: 1;
}
.hero {
    position: relative;
    height: 90vh;
    background: url('images/23 Restaurant Interior Design Ideas for a Stunning….jpeg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-content {
  /* position: absolute; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  color: #FFD700; /* Secondary color */
  font-weight: bold;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content .btn {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  background: #FFD700;
  color: #8B0000;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}

.hero-content .btn:hover {
  background: #8B0000;
  color: #fff;
}


/* About Section */
#about {
  text-align: center;
}

/* Menu Section */
#menu {
  background: white;
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

}

#menu span {
  font-weight: bold;
  color: var(--primary-color);
}

/* chefs and testimonials sections */
#chefs, #testimonials {
  background: white;
  padding:1.5rem;
  margin:1rem 0;
  border-radius: 6px;

}
#testimonials  span {
 font-weight: bold;
}


/* Contact Section */
#contact {
  background: #fff5e6;
}
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, form textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
form button {
  background: #8B0000; /* Dark Red */
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s;
}
form button:hover {
  background: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
}
/* form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #ccc;
}

button {
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
} */

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  text-align: center;
  padding: 1rem 2rem;
}

/* MENU GRID STYLES */
#menu {
  text-align:center;
}

.menu-container > article {
  transition: transform 0.3s ease;
}

.menu-container > article:hover {
  transform: translateY(-5px);
}


.menu-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.full-menu-list > div > article {
  transition: transform 0.3s ease;
}
.full-menu-list > div > article:hover {
  transform: translateY(-8px);
}

.full-menu-section h1{
  text-align: center;
  margin-bottom: 1rem;
  color: #8B0000;
  font-weight: bold;
}

.full-menu-section span{
  font-weight: bold;
  color: #8B0000;
}

.full-menu-list {
  text-align: center;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  transform: translateY(0.3s);
  transition-duration: 0.3s;
}

/* chefs section*/
#chefs {
  text-align: center;
}


#chefs {
  text-align: center;
}

.chefs-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

#chefs article {
  max-width: 300px;
}

/* Testimonials Section */

#testimonials {
  text-align: center;
}


.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

#testimonials article {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

#contact {
  text-align: center;
}

article {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.8);

}

.view-full-menu {
    display: inline-block;
    margin: 2rem auto 0 auto;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #FFD700;
    color: #8B0000;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}
.view-full-menu:hover {
    background: #8B0000;
    color: #FFD700;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 18px rgba(139,0,0,0.15);
}

.menu-img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.chefs-img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn {
  background: #8B0000; /* Dark Red */
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #FFD700; /* Dark Red */
  color: #8B0000; /* Gold */
}

nav .fa-bars, nav .fa-marks {
  display: none;
  font-size: 24px;
  color:white;
  cursor: pointer;
}

@media(max-width: 1024px){
  .menu-container , .testimonials-container, .chefs-container {
    flex-direction: column;
    align-items: center;
  }
  nav ul li a.hide{
    display: none;
    visibility: hidden;
  }
  nav ul li a {
    margin-left: 10px;
    opacity: 1;
    pointer-events: auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  nav ul .fa-marks, nav ul .fa-bars {
    display: none;
  }
}

@media only screen and (max-width: 768px){
  header nav h1 {
    font-size:30px;
    text-align: center;
    margin: auto;
  }

   nav .fa-bars, nav .fa-marks {
    display: block;
    font-size: 24px;
    color:white;
    cursor: pointer;
  }

  header nav ul {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transition: right 0.5s ease;
    background-color: var(--primary-color);
  }

  .hero h2{
    font-size: 2rem;
    padding-top: 100px;
  }

  nav ul li {
    display: block;
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  nav ul .fa-marks, nav ul .fa-bars {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    display: block;
  }
}

/* sections*/
#menu {
  grid-template-columns: 1fr;
}



#chefs .chefs-container {
  grid-template-columns: 1fr;
  align-items: center;
}

section {
  padding: 3rem 1.5rem;
}


/* SMALLE MOBILE */
@media(max-width: 480px){
  nav {
    padding: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  #home {
    padding: 4rem 1.5rem;
  }

  #home h2 {
    font-size: 1.5rem;
  }
}