* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    background: #eea629;
    display: flex;
    flex-direction: column;
  padding-top: 80px;

}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;  /* تثبيت النافبار فوق */
     top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100px;
  background: #5A0E24;
  border-bottom: 1px solid #eea629;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);


}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 55px;
  filter: brightness(1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
  cursor: pointer;
}

.logo h2 {
  font-size: 25px;
  color: #eea629;
  line-height: 1;
  margin: 0;
  font-style: italic;
}

.logo span {
  font-size: 15px;
  color: #e7e7e7;
  margin: 0;
 font-style:initial;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  font-style: italic;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #eea629;
}
/* اللوكيشن */
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: #eea629;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.location:hover {
  background: #d58e20;
}


/* SEARCH & ICONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}


.btn-maroon{
    background-color: #6C1D1D;
    color: #fff;
    border-color: #eea629;
}
.btn-maroon:hover{
    background-color: #c3851a;
    color: #6C1D1D;
    border-color: #6C1D1D;
}
.icons i {
  font-size: 20px;
  cursor: pointer;
  color: #ffffff;
  transition: 0.3s;
}

.icons i:hover {
  color: #eea629;
}

/* MENU TOGGLE (MOBILE) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}


/* RESPONSIVE */
/* لاب */
@media (max-width: 992px) {
  .container {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
.nav-links li a:hover {
  color: #eea629; /* Desktop */
}

.nav-links.active li a:hover {
  color: #6C1D1D; /* Mobile menu */
}

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #eea629;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
  .hero-slider{
  margin-top: 20px;
}

}

.carousel-caption {
  z-index: 2;
  bottom: 20%;
  text-align: right;
}
.carousel-caption h2{
    color: #eea629;
}
.carousel-caption h2 {
  font-size: 36px;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 18px;
  margin: 10px 0 20px;
}

.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}


.carousel-caption .btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.carousel-item {
  transition: transform 1s ease-in-out;
}

.carousel-item img {
  animation: zoom 8s ease-in-out infinite;
}

@keyframes zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}


.hero-slider img {
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
}


.hero-slider .carousel-item {
  position: relative;
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}


/* abute */
.ap{
  background-color: #eea629;
}
.abute{
font-style: italic;  
text-align: center;
  color: #cde5d4;
  background-color: #5A0E24;
  border-radius: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 30px;
padding-top: 30px;
margin-top: 15px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 15px;
 transition: transform 0.7s ease;
}
.abute:hover{
  color:#eea629 ;
  box-shadow: #bb506f;
  transform: translateY(-5px);
  font: bold;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px; /* عشان يبقى بيضاوي زي الصورة */
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: Arial, sans-serif;
  z-index: 999;
}


.whatsapp-btn img {
  width: 25px;
  margin-right: 10px;
}

.offers-title {
  margin: 10px;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
}

.offers-grid {
  margin : 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
#countdown span {
  display: inline-block;
  min-width: 45px;
  font-size: 28px;
  background: #d5e461;
  border-radius: 8px;
  padding: 6px 10px;
  margin: 0 5px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
 
}

/* من نحن */
.offer-card {
  color: #5A0E24;
  background-color: #FFDAB3;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(2, 87, 35, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(2, 87, 35, 0.4);
}

.offer-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.best-sellers {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.best-sellers h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.product-card img {
  width: 50%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers {
  padding: 70px 20px;
  background: #eea629;
  text-align: center;
}

.best-sellers h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  background: #FFDAB3;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  transform-style: preserve-3d;

  opacity: 0;
  transform: translateY(40px);
}

/* دخول تدريجي */
.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* الهفر */
.product-card:hover {
  transform: translateY(-15px) rotateX(6deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* الصورة */
.product-card img {
  width: 95%;
  height: 70%;
  border-radius: 14px;
  transition: 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.12);
}

/* العناوين */


.product-card p {
  font-weight: bold;
  color: #5A0E24;
}

/* زرار */
.product-card .btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #5A0E24;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transition: 0.4s ease;
}

.product-card:hover .btn {
  bottom: 20px;
  opacity: 1;
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5252;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* لازم تسيب overflow زي ما Bootstrapعامل*/
.carousel {
  overflow: hidden;
}

/* كل سلايد */
.carousel-item {
  position: relative;
  height: 80vh;
}

/* الصورة */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* الكابتشن */
.custom-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  pointer-events: none; /* مهم */
}

.custom-caption * {
  pointer-events: auto;
}

/* زر */
.btn-maroon {
  background-color: #7a0c2e;
  color: #fff;
  border-radius: 30px;
  padding: 12px 26px;
  text-decoration: none;
}

/* موبايل */
@media (max-width: 576px) {
  .carousel-item {
    height: 100vh;
  }

  .custom-caption h2 {
    font-size: 22px;
  }

  .custom-caption p {
    font-size: 15px;
  }
}



/* gallery */

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* اللوكيشن داخلي */
.loocation {
  padding: 60px 20px;
  text-align: center;
  
}

.loocation h2 {
  margin-bottom: 25px;
  font-size: 28px;
}

.map-box {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #6C1D1D;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.map-btn:hover {
  background: #5A0E24;
  transform: scale(1.05);
}


/* التواصل */

.contact-page {
  padding: 70px 20px;
  background: #FFDAB3;
  text-align: center;
}

.co{
font-style:italic;  
text-align: center;
  color: #5A0E24;
  background-color: #ccc;
  border-radius: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 30px;
padding-top: 30px;
margin-top: 15px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 15px;
 transition: transform 0.7s ease;

}
.co:hover{
  color:#145c46 ;
  box-shadow: #bb506f;
  transform: translateY(-5px);
  
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-info {
  background: #FFDAB3;
  padding: 30px;
  border-radius: 15px;
  text-align: right;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-info a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
}

.contact-form {
  background: #FFDAB3;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #5A0E24;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #eea629;
}


.contact-page {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0)
  );
}




/* ===== FOOTER ===== */
.footer {
    background: #5A0E24;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-box p {
    color: #eea629;
    font-size: 14px;
    max-width: 280px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #d58e20;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 22px;
    color: #ffffff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d58e20;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eea629;
    font-size: 14px;
    color: #cde5d4;
}





/* footer-prepared */
.footer-prepared {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #eea629; 
  margin-top: 15px;
}

.footer-whatsapp {
  color: #25D366;
  font-size: 18px;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  transform: scale(1.2);
  color: #1ebe5d;
}






































