@import url('https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Lexend Peta", sans-serif;
  box-sizing: border-box;
}

/* ===== Header ===== */
#header {
  position: fixed; /* لتثبيت الهيدر عند التمرير */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #050505;
  border-bottom: 1px solid #f1eded;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  height: 90px;
}

#header .navbar .logo {
  width: 90px;
}

#header.scrolled {
  background-color: #111;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#header .navbar ul {
  display: flex;
}

#header .navbar ul li a {
  color: beige;
  font-size: 20px;
  font-weight: 500;
  margin: 0 50px;
  transition: all 0.3s ease;
}

#header .navbar ul li a:hover {
  color: cadetblue;
}

/* ===== Contact Section ===== */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 100px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url('images/bg.jpg') no-repeat center center;
  background-size: cover;
}

.contact .content {
  max-width: 800px;
  text-align: center;
}

.contact .content h2 {
  font-size: 30px;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.contact .content p {
  font-weight: 300;
  color: #835622;
}

/* ===== Container ===== */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
}

.container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.container .contactInfo .box {
  position: relative;
  padding: 10px;
  display: flex;
}

.container .contactInfo .box .icon {
  min-width: 60px;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.container .contactInfo .box .text {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}

.container .contactInfo .box .text h3 {
  font-size: 16px;
  color: #131213;
  font-weight: 500;
}

.container .contactInfo .box .text p {
  font-size: 14px;
  color: #8f673a;
}

.container .contactInfo .box .text p a {
  color: #8f673a;
  text-decoration: none;
  transition: 0.3s;
}

.container .contactInfo .box .text p a:hover {
  color: #6b6a69;
}

/* ===== Book a Table Form (Réservez) ===== */
.Contact-Contact {
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: #8f673a;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.Contact-Contact h3 {
  text-align: center;
  font-size: 28px;
  color: #030303;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.Contact-Contact h3::before {
  content: "\f073"; /* FontAwesome calendar icon */
  font-family: FontAwesome;
  color: #0c0c0c;
  font-size: 26px;
}

.Contact-Contact form {
  display: flex;
  flex-direction: column;
}

.Contact-Contact input,
.Contact-Contact textarea {
  position: relative;
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #141414;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.Contact-Contact input::placeholder,
.Contact-Contact textarea::placeholder {
  color: #ececec;
  opacity: 0.7;
}

.Contact-Contact input:focus,
.Contact-Contact textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 5px rgba(37,211,102,0.5);
}

.Contact-Contact .btn-submit {
  width: 140px;
  background: #050505;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  align-self: center;
  transition: 0.3s;
}

.Contact-Contact .btn-submit:hover,
.Contact-Contact .btn-submit:focus {
  background: #1ebe5d;
  box-shadow: 0 0 8px rgba(30,200,80,0.7);
  outline: none;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float i {
  margin-top: 15px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

/* ===== Phone Float Button ===== */
.phone-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 20px;
  background-color: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.phone-float i {
  margin-top: 15px;
}

.phone-float:hover {
  transform: scale(1.1);
  background-color: #d6792c;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .container .contactInfo,
  .contactForm,
  .Contact-Contact {
    width: 90%;
    margin-bottom: 30px;
  }

  .contact {
    padding: 50px 20px;
  }
}

