* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
  color: white;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* nav links */
nav {
  display: flex;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

nav a:hover {
  color: red;
}

/* hamburger */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
}

.hero button {
  margin-top: 15px;
  padding: 10px 20px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
}

/* Menu */
.menu {
  padding: 50px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card button {
  margin-top: 10px;
  padding: 8px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.card button:hover {
  background: red;
}

/* About */
.about {
  padding: 50px;
  background: #f5f5f5;
  text-align: center;
}

/* Contact */
.contact {
  padding: 50px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 0 10px;
}
form input, form textarea {
  margin: 10px 0;
  padding: 10px;
}

form button {
  background: red;
  color: white;
  border: none;
  padding: 10px;
}

/* Footer */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 15px;
}

/* responsive menu */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: center;
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid #333;
  }

  nav.show {
    display: flex;
  }
}

/* highlight effect */
.menu.active {
  animation: glow 1s ease;
}

@keyframes glow {
  0% { transform: scale(0.98); }
  50% {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
  }
  100% { transform: scale(1); }
}
/* Reviews Section */
.reviews {
  padding: 60px;
  text-align: center;
  background: #111;
  color: white;
}

.reviews h2 {
  margin-bottom: 30px;
  color: red;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.review-card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.review-card h3 {
  margin-bottom: 10px;
  color: white;
}

.review-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 18px;
}
/* Review Form */
.review-form {
  margin-top: 50px;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.review-form input,
.review-form textarea {
  width: 100%;
}
.review-form h3 {
  margin-bottom: 15px;
  color: red;
}

.review-form form {
  display: flex;
  flex-direction: column;
}


.review-form textarea {
  resize: none;
  height: 100px;
}

.review-form button {
  margin-top: 10px;
  padding: 10px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.review-form button:hover {
  background: darkred;
}

/* Star Rating */
.rating {
  display: flex;
  justify-content: center;
  direction: rtl;
  margin: 10px 0;
}

.rating input {
  display: none;
}

.rating label {
  font-size: 25px;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: gold;
}