/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body ===== */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
header {
  background: #000;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff4b2b;
}

/* ===== Navbar ===== */
nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #111;
  padding: 18px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
}

/* خط احترافي تحت الرابط */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff4b2b;
  transition: 0.3s;
}

nav a:hover {
  color: #ff4b2b;
}

nav a:hover::after {
  width: 100%;
}

/* ===== Section ===== */
section {
  flex: 1;
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 25px;
  font-size: 26px;
  color: #ff4b2b;
}

/* ===== Menu List ===== */
ul {
  list-style: none;
}

ul li {
  background: #ffffff;
  color: #000;
  margin: 15px auto;
  padding: 15px;
  width: 220px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

ul li:hover {
  background: #ff4b2b;
  color: #fff;
  transform: translateY(-5px);
}

/* ===== Login Box ===== */
.login-box {
  background: #fff;
  color: #000;
  width: 340px;
  margin: 50px auto;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 25px;
}

/* ===== Inputs ===== */
.input-group {
  margin-bottom: 18px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s ease;
}

.input-group input:focus {
  border-color: #ff4b2b;
  outline: none;
  box-shadow: 0 0 10px rgba(255,75,43,0.5);
}

/* ===== Button ===== */
button {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: #ff4b2b;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #e63e1f;
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background: #000;
  text-align: center;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 1px;
}
/* HERO SECTION */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092") center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #ff4b2b;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 35px;
  background: #ff4b2b;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e63e1f;
  transform: scale(1.08);
}

/* ===== ABOUT US ===== */
.about {
  padding: 100px 20px;
  background: #1a1a1a;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 35px;
  color: #ff4b2b;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature h4 {
  margin-bottom: 5px;
  color: #ff4b2b;
}

.feature p {
  font-size: 14px;
  color: #ccc;
}

/* menu  */


.pro-menu {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  color: #ff4b2b;
  margin-bottom: 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 20px;
  color: #000;
}

.menu-info h3 {
  margin-bottom: 10px;
}

.menu-info p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

.menu-info span {
  font-weight: bold;
  color: #ff4b2b;
}



/* Contact Page */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #ff4b2b;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #ff4b2b;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4b2b;
  outline: none;
  box-shadow: 0 0 8px rgba(255,75,43,0.4);
}

.contact-form button {
  background: #ff4b2b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e63e1f;
  transform: scale(1.05);
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .special-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

}
/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff4b2b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  position: relative;
}

/* Hide button in desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}