/* FOR THE MAIN SECTION */

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background: rgb(0, 0, 0);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: wheat;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: aqua;
  transform: scale(1.07);
}

.hero {
  background: url('forbg.jpg') no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
  height: 100vh;
  color: rgb(255, 255, 255);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(5px);
}

.hero h1, 
.hero p {
  position: relative;
  z-index: 2;
}

.big {
  font-size: 50px;
  color: rgb(36, 109, 109);
}

/* FOR THE ORDER SECTION */

.menu {
  padding: 3rem 1rem;
  text-align: center;
  background: #f9f9f9;
}

.menu h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  margin: 0;
  font-size: 1rem;
  color: #666;
}

.card .gold {
  color: rgba(255, 217, 0, 0.801);
}

.card button {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.card button:hover {
  background: #444;
}

/* GALLERY SECTION */

.gallery {
  text-align: center;
  padding: 40px 20px;
}

.gallery h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.gallery button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery button:hover {
  background: #555;
}

/* FOR REVIEWS SECTION */

.reviews {
  text-align: center;
}

.review {
  background-color: rgba(0, 0, 0, 0.863);
  color: wheat;
  padding: 2%;
  margin: 1% auto;
  border-radius: 10px;
  max-width: 400px;
  transition: 0.3s;
}

.review:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3)
}

.review .name {
  background-color: rgba(22, 105, 212, 0.589);
  color: rgb(255, 255, 255);
  padding: 2%;
  width: fit-content;
  margin: auto;
  border-radius: 6px;
}

/* CONTACT */

.contact {
  background-color: antiquewhite;
  border-radius: 16px;
  padding: 10% 3%;
}

.contact a {
  text-decoration: none;
}

.contact iframe {
  max-width: 300px;
}
