* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

:root {
  --l-m-main-color: #cf2928;
  --white: #fff;
}


.container {
  width: 85%;
  margin: auto;
}

/* ================== DARK MODE ================== */
body.dark {
  background: #121212;
  color: #fff;
}

/* Navbar */
body.dark .navbar {
  background: #1e1e1e;
  box-shadow: none;
}
body.dark .navbar .menu ul li a { color: #ccc; }
body.dark .navbar .menu ul li a:hover {
  color: #fff;
  border-bottom: 2px solid #f1c40f;
}
body.dark .navbar .icon,
body.dark .navbar-main h2::after {
  color: #f1c40f;
}



/* Hero */
body.dark .hero { background: #1b1b1b; }
body.dark .hero-text h1 { color: #fff; }
body.dark .hero-text p { color: #bbb; }

/* Hero Buttons */
body.dark .hero-btns a,
body.dark button,
body.dark .btn,
body.dark .hero-btn,
body.dark .subscribe-btn {
  background: #f1c40f;
  color: #000;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
body.dark button:hover,
body.dark .btn:hover,
body.dark .subscribe-btn:hover {
  background: #fff200;
  color: #000;
}
body.dark .hero-text .hero-btns .btn-1 {
  background-color: #f1c40f;
  color: #000;
}
body.dark .hero-text .hero-btns .btn-2 {
  background-color: transparent;
  color: #fff;
}
body.dark .hero-text .hero-btns .btn-2::before { background: #f1c40f; }
body.dark .hero-text .hero-btns .btn-2:hover { color: #f1c40f; }
body.dark .hero-text .hero-btns .btn-2 i {
  background-color: #000;
  color: #fff;
}
body.dark .hero-text .hero-btns .btn-2 i:hover { color: #f1c40f; }

/* Buttons Icons */
body.dark button i,
body.dark .btn i,
body.dark .subscribe-btn i {
  color: #000;
  transition: 0.3s;
}
body.dark button:hover i,
body.dark .btn:hover i,
body.dark .subscribe-btn:hover i {
  color: #000;
}

/* General Icons */
body.dark i,
body.dark .icon,
body.dark .social-media-icons i {
  color: #f1c40f;
  transition: 0.3s;
}
body.dark i:hover,
body.dark .icon:hover,
body.dark .social-media-icons i:hover {
  color: #fff200;
}

/* Chefs */
body.dark .chefs { background: #121212; }
body.dark .chefs-card,
body.dark .chef-info {
  background: #1e1e1e;
}
body.dark .chefs-card {
  box-shadow: 0 4px 10px rgba(255,255,255,0.08);
}
body.dark .chef-info h2 { color: #fff; }
body.dark .chef-info .role {
  color: #f1c40f;
  font-weight: bold;
}
body.dark .chef-info .desc { color: #ccc; }
body.dark .chef-icons a { color: #bbb; }
body.dark .chef-icons a:hover { color: #f1c40f; }
body.dark .chefs-card .wave path { fill: #1e1e1e; }
body.dark .chefs-text p span { color: #f1c40f !important; }

/* Gallery */
body.dark .gallery { background: #1b1b1b; }
body.dark .gallery-text h1 { color: #ccc; }
body.dark .gallery-text p { color: #fff; }
body.dark .gallery-text span { color: #f1c40f; }
body.dark .gallery-item {
  border: 5px solid #333;
  box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}
body.dark .layout { background: rgba(0,0,0,0.85); }

/* Contact */
body.dark .contact-text h1 { color: #ccc; }
body.dark .contact-text p { color: #fff; }
body.dark .contact-text span { color: #f1c40f; }
body.dark .address,
body.dark .call,
body.dark .email,
body.dark .hours,
body.dark .contact-form {
  background: #1e1e1e;
}
body.dark .address,
body.dark .call,
body.dark .email,
body.dark .hours { color: #ddd; }
body.dark .contact-form {
  color: #eee;
  box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}
body.dark .form-1 input,
body.dark .form-2 input,
body.dark .form-3 textarea {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}
body.dark .form-1 input:focus,
body.dark .form-2 input:focus,
body.dark .form-3 textarea:focus {
  outline: 1px solid #f1c40f;
}

/* Footer */
body.dark .footer { background: #0e0e0e; }
body.dark .footer-logo-desc,
body.dark .footer-middle,
body.dark .footer-right { color: #ddd; }
body.dark .footer a { color: #bbb; }
body.dark .footer a:hover { color: #f1c40f; }
body.dark .footer-main h2::after { color: #f1c40f; }
body.dark .social-media-icons i { color: #ccc; }
body.dark .social-media-icons i:hover { color: #f1c40f; }




/* Navbar */
.navbar {
  background-color: var(--white);
  height: 100px;
  padding: 40px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  box-shadow: 10px 10px 15px rgba(0,0,0,0.1);
}

.navbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-main h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
}

.navbar-main h2::after {
  content: '.';
  display: inline-block;
  color: var(--l-m-main-color);
}

.navbar .menu ul {
  display: flex;
  gap: 20px;
}

.navbar .menu ul li a {
  color: gray;
  text-decoration: none;
}

.navbar .menu ul li a:hover {
  color: black;
  border-bottom: 2px solid var(--l-m-main-color);
}

.navbar .icon {
  color: #CC9900;
  font-size: 30px;
}

.hero {
  background-color: #EEEEEE;
}

.hero-main {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  height: 100vh;
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    text-align: center;
  }

  .menu.show {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}





@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    text-align: center;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* Hero */

.hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.hero-img {
  width: 40%;
  margin-top: 80px;
  border-radius:50%;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
}

.hero-text h1 {
  font-size: 70px;
  font-family: 'Amatic SC', cursive;
}

.hero-text p {
  color: gray;
}

.hero-img img {
  width: 100%;
  transition: transform 3s ease-in-out; 
}

.hero-img img:hover {
  animation: randomMove 1s infinite alternate;
}


@keyframes randomMove {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(3px, -2px); }
  50%  { transform: translate(-2px, 3px); }
  75%  { transform: translate(2px, 1px); }
  100% { transform: translate(-3px, -1px); }
}

.hero-text .hero-btns a {
  text-decoration: none;
  display: inline-block;
}

.hero-text .hero-btns .btn-1 {
  color: var(--white);
  padding: 10px 20px;
  background-color: var(--l-m-main-color);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-right: 30px;
  transition: all 1s;
}

.hero-text .hero-btns .btn-1:hover {
  background-color:  #cf28286b;
}


.hero-text .hero-btns .btn-2 {
  color: var(--h1-l-m-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 1s;
  position: relative;
}

.hero-text .hero-btns .btn-2::before {
  content: '';
  width: 30px;
  height: 60px;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  background: var(--l-m-main-color);
  position: absolute;
  left: -8px;
  top: -8px;
}

.hero-text .hero-btns .btn-2:hover {
  color: #cf28286b
}

.hero-text .hero-btns .btn-2 i {
  font-size: 20px;
  padding: 12px;
  padding-left: 14px;
  border-radius: 50%;
  background-color: var(--white);
  margin-right: 10px;
  position: relative;
}
/* ==========Responsive========== */

@media screen and (max-width: 1206px) {
  .hero {
    height: auto;
    padding-bottom: 100px;
  }

  .hero-main {
    flex-direction: row;
    align-items: center;
  }

  .hero-img {
    width: 70%;
    margin-bottom: 30px;
    border-radius: none;
    box-shadow: none;
    overflow: visible;
  }

  .hero-img img {
    width: 100%;
    height: auto;
    border-radius:50%;
  }


  .hero-text {
    width: 60%;
  }
}




/* End Hero */

.chefs {
  padding: 100px 0;
}

.chefs-text {
  text-align: center;
  margin: 50px 0;
}

.chefs-text h1 {
  text-transform: uppercase;
  color: gray;
  font-size: 15px;
}

.chefs-text span {
  font-family: 'Amatic SC', cursive;
  color: var(--l-m-main-color);
  font-size: 50px;
}

.chefs-text p {
  font-family: 'Amatic SC', cursive;
  color: gray;
  font-size: 50px;
}

.chefs-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.chefs-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.chefs-card:hover {
  transform: scale(1.05);
}


/* Hero Icon - نصف دائرة جانبي */


.chef-img {
  position: relative;
  width: 100%;
  height: auto; 
  overflow: hidden;
}

.chef-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wave {
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 100%;
  height: 60px;
}

.chef-info {
  text-align: center;
  padding: 20px;
  background: #fff;
}

.chef-info h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.chef-info .role {
  margin: 5px 0 10px;
  color: #777;
  font-style: italic;
}

.chef-info .desc {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.chef-icons {
  position: absolute;
  top: 50%;
  right: -60px; 
  transform: translateY(-90%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: right 0.4s ease;
  background-color: rgba(128, 128, 128, 0.473);
  border-radius: 10px;
}

.chef-icons a {
  color: #333333a2;
  font-size: 16px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.chef-icons a:hover {
  color: black;
}

.chef-img:hover .chef-icons {
  right: 10px; 
}


@media screen and (max-width: 992px) {
  .chefs-cards  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .chef-img {
    width: 100%;
  }
}

/* End Chefs */


/* Start Gallery */
.gallery {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: hidden; 
  padding: 40px 0;
  background-color:#EEEEEE;
}

.gallery-main {
  max-width: 1200px;
  width: 100%;
}

.gallery-text {
  text-align: center;
  margin: 50px 0;
} 

.gallery-text h1 {
  text-transform: uppercase;
  color: gray;
  font-size: 15px;
}

.gallery-text p {
  font-family: 'Amatic SC', cursive;
  color: black;
  font-size: 50px;
}

.gallery-text span {
  font-family: 'Amatic SC', cursive;
  color: var(--l-m-main-color);
  font-size: 50px;
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-cards > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 5px solid #fff; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.layout {
  position: absolute;
  left: 0;
  bottom: -100%; 
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); 
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  transition: all 0.5s ease;
  padding: 20px;
}

.layout h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.layout p {
  font-size: 16px;
}

.gallery-item:hover .layout {
  bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-cards {
    grid-template-columns: 1fr; 
  }

  .gallery-cards > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .gallery-item {
    width: 80%;
    margin: auto;
  }

  .gallery-item img {
    width: 100%; 
  }
}

@media (max-width: 600px) {
  .gallery-cards {
    grid-template-columns: 1fr; 
  }

  .gallery-item {
    width: 100%; 
  }
}



/* End Gallery */


.contact {
  width: 100%;
  padding: 50px 0;
}

.contact-text {
  text-align: center;
  margin: 50px 0;
}

.contact-text h1 {
  text-transform: uppercase;
  color: gray;
  font-size: 15px;
}

.contact-text p {
  font-family: 'Amatic SC', cursive;
  color: black;
  font-size: 50px;
}

.contact-text span {
  font-family: 'Amatic SC', cursive;
  color: var(--l-m-main-color);
  font-size: 50px;
}

.contact-icons {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  
}

.address , 
.call , 
.email ,
.address , 
.hours{
  background-color: #7777771e;
  padding: 20px;
  width: 100%;
}

.hours p span {
  font-weight: 700;
}

.contact-icons-left , 
.contact-icons-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-right , 
.call-right , 
.email-right , 
.hours-right{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 20px;
  margin-top: -30px;
  transform: translate(45px , -18px);
}


.contact-icons i {
  font-size: 50px;
  color: var(--l-m-main-color);
}

@media screen and (max-width: 992px) {
  .contact-icons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  
.contact-icons-left , 
.contact-icons-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

}

/* contact form */

.contact-form {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  height: auto;
  width: 100%;
  margin: 50px auto;
}

.form-1 {
  display: flex;
  margin: auto 10px;
}

.form-1 input  {
  padding: 12px;
  margin: 20px 2px;
  margin-bottom: 5px;
  width: 100%;
}

.form-2 input {
  padding: 12px;
  margin: 20px 2px;
  width: 100%;
}

.form-2 {
  width: 98%;
  margin: auto;
  border-color: #777;
}

.form-3 {
  width: 98%;
  margin: auto;
}

.form-3 textarea {
  width: 100%;
  resize: none;
  padding: 12px;
}

.form-1 input:focus ,
.form-2 input:focus ,
.form-3 textarea:focus {
  outline: 1px solid var(--l-m-main-color);
}

.form-btn {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.form-btn button {
  background-color: var(--l-m-main-color);
  padding: 10px 30px;
  color: var(--white);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 15px;
}

@media screen and (max-width: 992px) {
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
}

/* End contact  */


/* footer */
/* ===== Footer ===== */
.footer {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url('../images/footer.jpg') no-repeat center center/cover;
  background-color: black;
  min-height: 55vh; 
  position: relative;
}

/* ===== Footer Main ===== */
.footer-main {
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  margin-top: 40px;
  gap: 40px;
}

/* ===== Footer Logo ===== */
.footer-logo {
  grid-area: logo;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.footer-logo-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 50px;
  height: 50px;
}
.footer-logo-top h2 {
  color: var(--white);
}
.footer-main h2 {
  font-size: 30px;
}
.footer-main .footer-logo-top h2::after {
  content: '.';
  display: inline-block;
  color: var(--l-m-main-color);
}
.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  color: #EEEEEE;
}

/* ===== Footer Middle ===== */
.footer-middle {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  margin-top: 0; 
}

/* Middle Input */
.middle-input {
  display: flex;
  gap: 10px;
  width: 100%;
}
.middle-input input {
  padding: 10px;
  border: none;
  flex: 1;
}
.middle-input button {
  padding: 10px 20px;
  border: none;
  background-color: var(--l-m-main-color);
  color: #fff;
  cursor: pointer;
}
.middle-input button i {
  margin-right: 5px;
  font-size: 15px;
}
.middle-input button:hover {
  opacity: 0.9;
}

/* Quick Links */
.quick-links {
  display: flex;
  gap: 180px;
}
.quick-links-l span,
.quick-links-r span {
  font-size: 20px;
  margin-right: 5px;
}
.quick-links ul {
  list-style: none;
  padding: 0;
}
.quick-links li {
  margin: 5px 0;
}
.quick-links li a {
  display: inline-block; 
  transition: all 0.7s ease; 
  color: #fff;
  text-decoration: none;
}
.quick-links li a:hover {
  color: var(--l-m-main-color);
  transform: translateX(10px);
}
.links-title h2 {
  font-size: 20px;
}

/* ===== Middle Links ===== */
.middle-links {
  grid-area: links;
}

/* ===== Footer Right ===== */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  gap: 20px;
  grid-area: right;
}
.footer-right h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.right-info {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}
.right-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.right-info i {
  font-size: 20px;
  color: var(--l-m-main-color);
}

/* ===== Social Media ===== */
.social-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.social-media-title {
  width: 100%;
  text-align: center;
  position: relative;
}
.social-media-title h3 {
  font-size: 20px;
  margin: 0;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.668);
  color: #fff;
  width: 300px;
}
.social-media-icons {
  display: flex;
  gap: 65px;
  font-size: 25px;
  color: #fff;
  margin-left: 10px;
}
.social-media-icons i {
  cursor: pointer;
  transition: color 0.3s ease;
}
.social-media-icons i:hover {
  color: var(--l-m-main-color);
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-logo, 
  .footer-middle {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-logo-desc {
    text-align: center;
  }

  .middle-title h2 {
    font-size: 20px;
    margin: 0;
  }

  .footer-logo-desc p,
  .middle-caption p {
    width: 100%;
    white-space: normal;
    text-align: left;
    color: #EEEEEE;
    margin-top: 10px;
  }

  .footer-logo-desc p br,
  .middle-caption p br {
    display: none;
  }

  .social-media-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 25px;
    color: #fff;
  }

  .social-media-icons i {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .social-media-icons i:hover {
    color: var(--l-m-main-color);
  }

  .middle-input {
    flex-direction: column;
    width: 100%;
    margin-top: 5px 0;
  }

  .middle-input input {
    width: 100%;
    position: relative;
  }

  .middle-input input button {
    position: absolute;
  }

  .middle-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .middle-input input {
    flex: 1;
    width: auto;
  }

  .middle-input button {
    width: auto;
    padding: 10px 20px;
    flex-shrink: 0;
  }

  .quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 240px;
    width: 100%;
    justify-items: center;
  }

  .quick-links ul {
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .quick-links li {
    margin: 20px 0;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .right-info {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .social-media {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .social-media-title h3 {
    text-align: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.5); 
    width: 100%; /* ✅ رجعت البوردر يفرش على عرض الشاشة */
    padding-bottom: 10px;
  }

  .social-media-icons {
    justify-content: flex-start;
    margin-left: 0;
    gap: 25px;
  }
}
