* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f6f2f1;
}

/* ===== Hero Section ===== */
.hero {
  background: url('back.jpg') no-repeat center/cover ;
  height: 90vh;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

/* === NAVBAR === */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between; /* يضع النص يسار والصورة يمين */
  align-items: flex-start;
  padding: 20px 60px;
}

.logo-area {
  text-align: left;
}

.logo {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  letter-spacing: 1px;
}

.underline {
  border: 0;
  border-top: 2.5px solid white;
  width: 300px;
  margin: 5px 0 10px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-family: 'Italianno', cursive;
  font-size: 2rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e3c6b3;
}

/* === IMAGE ON RIGHT === */
.hero-image img {
  width: 90px; /* حجم صغير */
  height: auto;
  border-radius: 35px;
  transition: transform 0.4s ease;
  animation: fadeInRight 1.5s ease;
}

.hero-image img:hover {
  transform: scale(1.1);
}

/* حركة دخول ناعمة من اليمين */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === HERO TEXT === */
.hero-text {
  position: absolute;
  top: 70%;
  left: 15%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 15;
  animation: fadeIn 3s ease;
}

.hero-text h2 {
  font-family: 'Italianno', cursive;
  font-size: 4rem;
  color: white;
}

.hero-text p {
  font-family: 'Italianno', cursive;
  font-size: 3.4rem;
  color: #e8d3c4;
  margin-top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ===== About Section ===== */
.about {
  background: linear-gradient(to bottom right, #fff9f6, #f9f6f5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.about h2 {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  color: #3b2b24;
  margin-bottom: 10px;
}

.about-line {
  width: 120px;
  height: 3px;
  border: none;
  background-color: #d1a17f;
  margin: 0 auto 30px;
  border-radius: 2px;
}

.about .intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* محتوى القسم */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* قسم Why choose us */
.about-features {
  flex: 1 1 400px;
  text-align: center;
}

.about-features h3 {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  color: #3b2b24;
  margin-bottom: 20px;
}

.about-features ul {
  list-style: none;
  padding: 0;
  color: #5c4a3e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  line-height: 1.9;
}

.about-features li {
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-features li:hover {
  transform: translateX(6px);
  color: #d1a17f;
}

/* صورة على اليمين */
.about-image {
  flex: 1 1 350px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius:305px;
  box-shadow: 0 18px 28px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-features {
    text-align: center;
  }
}


/* ===== Products ===== */
.products {
  text-align: center;
  padding: 60px 20px;
  background: #f6f2f1;
}

.section-title {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  margin-bottom: 15px;
}
.section-title-line {
  width: 120px;
  height: 3px;
  border: none;
  background-color: #d1a17f;
  margin: 0 auto 30px;
  border-radius: 2px;
}
.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.product-item {
  transition: transform 0.3s;
}

.product-item img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s;
}

.product-item:hover img {
  transform: scale(1.3);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-item p {
  margin-top: 10px;
  font-family: 'Italianno', cursive;
  font-size: 2rem;
}

/* ===== Contact Section ===== */
.contact {
  background: #e5dcd9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  overflow: hidden;
}

/* 🔹 Title in the Middle */
.contact-title {
  flex: 1;
  text-align: center;
  animation: fadeIn 1.5s ease forwards;
}

.contact-title h2 {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  color: #000;
  margin-top: 10px;
}

.title-line {
  width: 120px;
  height: 3px;
  border: none;
  background-color: #d1a17f;
  margin: 0 auto;
  border-radius: 2px;
}

/* 🔹 Contact Form (Left) */
.contact-form {
  flex: 1;
  background: #ceb4ac;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(109, 108, 108, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  animation: slideInLeft 1.2s ease forwards;
}

.contact-form input {
  padding: 10px;
  border: none;
  background: #ecebeb;
  color: rgb(12, 12, 12);
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
}

.contact-form input::placeholder {
  color: #0a0a0a;
}

.btn {
  padding: 10px;
  border: none;
  background: #d1a17f;
  color: black;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 5px;
}

.btn:hover {
  background: #634136;
  color: rgb(235, 230, 230);
}

/* 🔹 Contact Info (Right) */
.contact-info {
  flex: 1;
  text-align: center;
  animation: slideInRight 1.2s ease forwards;
}

.logo-img {
  width: 120px;
  margin: 10px 0;
}

.social img {
  width: 25px;
  margin: 5px;
  transition: transform 0.3s;
}

.social img:hover {
  transform: scale(1.2);
}

/* ==== Animations ==== */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact {
    flex-direction: column;
  }

  .contact-title {
    order: -1; /* يخلي العنوان يظهر فوق */
  }

  .contact-form, .contact-info {
    width: 90%;
  }
}

/* ===== Footer ===== */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer h3 {
  font-family: 'Italianno', cursive;
  font-size: 2rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

footer .designer {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 0.6rem;
  opacity: 0.6;
}

footer {
  position: relative;
}





/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .product-row {
    flex-direction: column;
  }
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}