/* الخطوط والألوان */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

:root {
  --primarycolor: #ff274b;
  --secondarycolor: #f7bcf7;
  --ligthcolor: #ffffff;
  --bgcolor-1: #171a1c;
  --bgcolor-2: #22282a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* أزرار */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  border: 1px solid #fff;
  background: var(--primarycolor);
  color: #fff;
}

.btn-primary:hover,
.btn-third {
  background: #e4b95b;
  color: #000;
}

.primary-text {
  color: #e4b95b;
}

/* Header */


/* About */
#about {
  background-color: var(--bgcolor-1);
  padding: 80px 20px;
  color: #fff;
}

#about .title {
  text-align: center;
  margin-bottom: 40px;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #e4b95b;
}

#about .title p {
  font-size: 20px;
}

#about .about-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

#about .about-content p {
  font-size: 18px;
  line-height: 1.6;
}

#about img {
  max-width: 300px;
}

/* Offers */
#offers {
  padding: 80px 20px;
  background: #f4f2ed;
}

#offers .title {
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.offer-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.offer-item:hover {
  transform: scale(1.05);
}

.offer-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.offer-item h3 {
  font-size: 20px;
  margin: 10px 0;
}

.offer-item p {
  font-size: 16px;
  color: #555;
}

/* Contact */
#contact {
  background: #f4f2ed;
  padding: 5rem 0;
}

#contact .container {
  max-width: 900px;
}

#contact .contact-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#contact .contact-info {
  width: 50%;
}

#contact .contact-info div {
  margin: 30px 0;
  line-height: 1.7;
}

#contact .contact-info h3 {
  font-size: 28px;
  color: #383848;
  margin-bottom: 10px;
}

#contact .contact-info p {
  color: #9a9a9a;
}

#contact .contact-info p i {
  color: #e4b95b;
  margin-right: 5px;
}

#contact .contact-info a i {
  color: #fff;
  background: #383848;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
}
.contact-info .ho {
 size: 60px;
}
#contact .contact-info a i:hover {
  background-color: #e4b95b;
  color: #383848;
}

form {
  width: 50%;
}

form input,
textarea {
  display: block;
  width: 100%;
  padding: 20px 15px;
  margin: 20px 0;
  border: none;
  background-color: #e3e2dd;
}

form input:focus,
textarea:focus {
  outline: none;
}

form button {
  color: #fff;
}



.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px; /* جعله في الجانب الأيمن */
  top: 35px;
  z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #333;
    width: 100%;
    padding: 20px 0;
    text-align: right;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin-bottom: 20px; /* مسافة بين كل عنصر */
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  #navbar {
    
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  header .content h1 {
    font-size: 32px;
  }

  header .content p {
    font-size: 16px;
  }

  #about .about-content {
    flex-direction: column;
    text-align: center;
  }

  #about img {
    margin-top: 20px;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  header .content h1 {
    font-size: 26px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* 2) اجعل الصور والإطارات والـ media تتصرف بشكل مرن */
img, picture, svg, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3) كسر الكلمات الطويلة (لوفي النصوص بدون مسافات) */
body, p, h1, h2, h3, h4, h5, h6, .single-blog, .offer-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
}



/* 5) ضبط سلايدر / مكتبات صور شائعة */
.nivoSlider img, .slides img { width: 100%; max-width: 100%; height: auto; }

/* 6) إذا كانت لديك صناديق مخصصة تسبب تمددًا */
.container, .container1 { overflow-x: hidden; }


