@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:wght@400;500;700&display=swap");
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}
:root {
  /* Color */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;
  /* Font Size*/
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;
  /* Font Weight  */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* Border radius  */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;
  /* Site max width  */
  --site-max-width: 1300px;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
img {
  width: 100%;
}
.section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}
.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--secondary-color);
}
.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

/* ============== Start Header ==================== */
header {
  background: var(--primary-color);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.navbar .nav-logo .logo-text {
  color: var(--white-color) ;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  transition: transform 0.3s ease;
  text-decoration: none !important;
}

.navbar .nav-logo .logo-text:hover {
  transform: scale(1.05);
}

.navbar .nav-menu {
  display: flex;
  gap: 15px;
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: all 0.3s ease;
  font-weight: var(--font-weight-medium);
}

.navbar .nav-menu .nav-link:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
  color: var(--white-color);
  font-size: var(--font-size-l);
}
/* Mobile Menu Styles */
.show-mobile-menu .nav-menu {
  left: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.show-mobile-menu #menu-open-button {
  display: none !important;
}

.show-mobile-menu #menu-close-button {
  display: block !important;
}

/* Optional: Add overlay when menu is open */
.show-mobile-menu::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
}
/* Mobile menu styles */
@media screen and (max-width: 1024px) {
  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    z-index: 1001;
  }

  .navbar #menu-close-button {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--primary-color);
    font-size: var(--font-size-xl);
  }

  .navbar .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--white-color);
    transition: all 0.5s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .nav-menu.active {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--dark-color);
    margin: 15px 0;
    font-size: var(--font-size-l);
    width: 100%;
    text-align: center;
  }
}

/* ============== End Header ==================== */

/* ============== Start Hero Section ==================== */
.hero-section {
  min-height: 100vh;
  background: var(--primary-color);
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-color);
  padding: 40px 20px;
}

.hero-section .hero-details {
  flex: 1;
  padding-right: 40px;
}

.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  color: var(--secondary-color);
  font-family: "Miniver", sans-serif;
  margin-bottom: 10px;
}

.hero-section .hero-details .sub-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-section .hero-details .description {
  font-size: var(--font-size-m);
  margin: 24px 0 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-section .hero-details .btn {
  padding: 12px 28px;
  border: 2px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.hero-section .hero-details .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.hero-section .hero-details .order-now:hover {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid #fff;
}
.hero-section .hero-details .contact-us {
  color: var(--white-color);
  border-color: var(--white-color);
  background: transparent;
}

.hero-section .hero-details .contact-us:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
  flex: 1;
  max-width: 500px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Hero Section */
@media screen and (max-width: 992px) {
  .hero-section .section-content {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
  }

  .hero-section .hero-details {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-section .hero-details .sub-title,
  .hero-section .hero-details .description {
    max-width: 100%;
  }

  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .hero-section .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .hero-section .hero-details .title {
    font-size: 2rem;
  }

  .hero-section .hero-details .sub-title {
    font-size: 1.5rem;
  }

  .hero-section .hero-details .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-section .hero-details .btn {
    width: 100%;
  }
}

/* ============== End Hero Section ==================== */
/* ============== Start About Section ==================== */
.coffee {
  padding: 100 0;
  background-color: var(--light-pink-color);
}
.coffee .coffee-content {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  align-items: center;
  height: 70vh;
}
.coffee .coffee-img .img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin-left: 50px;
}
.desc-coffee .title {
  text-align: center;
  padding: 60 0 100;
  text-transform: uppercase;
  font-size: 30px;
}
/* .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: brown;
  margin: auto;
} */
.coffee .desc-coffee {
  max-width: 50%;
}
.coffee .desc-coffee .text {
  line-height: 1.6;
  text-align: center;
  margin: 50px 0 30px;
  font-size: var(--font-size-l);
}
.coffee .desc-coffee .title {
  padding: 0;
}
.coffee .desc-coffee .icon {
  display: flex;
  gap: 25px;
  justify-content: center;
}
.coffee .desc-coffee .icon .icon-coffee {
  color: brown;
  font-size: 20px;
  transition: 0.5s;
  margin-bottom: 20px;
}
.coffee .desc-coffee .icon .icon-coffee:hover {
  color: var(--secondary-color);
}

/* ============== End About Section ==================== */
/* ============== Start Menu Section ==================== */

.Best {
  text-align: center;
}
menu {
  height: 70vh;
}
.section-header {
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  text-transform: capitalize;
  font-size: 35px;
  margin-bottom: 10px;
  color: black;
}
.section-header .line {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #333; /* لون السايت */
  margin: 0 auto 70px auto;
}
.container {
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
}

.menu-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.menu-item {
  background: none;
  border-radius: 12px;
  overflow: hidden;
  width: 25%;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

.menu-item:hover {
  transform: scale(1.05);
  background-color: #f9f9f9;
}
.menu-item img {
  width: 100%;
  height: 70%;
  border-radius: 12px;
}
.layer-info {
  text-align: center;
}

.layer-content-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: black;
  text-transform: capitalize;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.layer-content-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.menu-item:hover .layer-content-title {
  opacity: 1;
}
.menu-item:hover .layer-content-desc {
  opacity: 1;
}
.mmm {
  padding: 30px 0 20px 0;
}
.tbody img {
  width: 30px !important;
  height: 40px !important;
}

/* ============== End Menu Section ==================== */
/* ============== Start Testimonials Section ==================== */
.testiminials-section {
  padding: 20px 0 100px;
  background: var(--light-pink-color);
}
.testiminials-section .testiminial {
  display: flex;
  padding: 55px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.testiminials-section .testiminial .user-image {
  width: 150px; /* تحديد عرض ثابت */
  height: 150px; /* تحديد ارتفاع ثابت */
  object-fit: cover; /* لضمان ملء المساحة دون تشويه */
  margin-bottom: 30px;
  border-radius: 50%; /* لجعل الصورة دائرية */
  border: 3px solid var(--secondary-color); /* إضافة حدود اختيارية */
}
.testiminials-section .testiminial .name {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
}
.testiminials-section .testiminial .feedback {
  line-height: 1.6;
}
.testiminials-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--secondary-color);
}
.testiminials-section .swiper-slide-btn {
  color: var(--secondary-color);
  transition: 0.4s ease;
}
.testiminials-section .swiper-slide-btn:hover {
  color: var(--primary-color);
}
/* ============== End Testimonials Section ==================== */
/* ============== Start Gallery Section ==================== */
.Gallery {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}
.Gallery h2 {
  border-bottom: solid var(--secondary-color);
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 30px;
}
.Gallery .conainer {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.Gallery .conainer .card {
  width: 30%;
  color: black;
  background-color: #fad59a;
  border: solid var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: ease 0.5s;
}
.Gallery .conainer .card img {
  width: 100%;
  height: 250px;
  border-radius: 0px 0px 20px 20px;
  object-fit: cover;
  opacity: 1;
}
.Gallery .conainer .card p {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  padding: 2px;
}
.Gallery .conainer .card button {
  padding: 7px 11px;
  background-color: rgb(58, 11, 102);
  color: white;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: ease 0.5s;
}
.Gallery button:hover {
  background-color: #ec5228 !important;
  letter-spacing: 0.5px;
  transform: scale(1.1);
}
.Gallery .card:hover {
  transform: translateY(-10px);
}

/* ============== End Gallery Section ==================== */
/* ============== Start Contact Section ==================== */
.contact-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  background: var(--white-color);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
  max-width: 50%;
}

.contact-section .contact-form .form-input:focus {
  border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}

.contact-section .contact-form .submit-button {
  padding: 10px 20px;
  margin-top: 10px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--primary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--primary-color);
  transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
  color: var(--primary-color);
  background: transparent;
}
/* ============== End Contact Section ==================== */
/* ============== Alternative Footer Style ==================== */
.footer-section {
  background-color: var(--primary-color);
  color: #e0e0e0;
  padding: 70px 0 0;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  /* margin-bottom: 10px; */
}

.footer-column {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #f3961c;
  border-radius: 3px;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #b0b0b0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f3961c;
}

.footer-links a {
  color: #b0b0b0;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #f3961c;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 12px;
  color: #f3961c;
  font-size: 1rem;
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  margin-top: 25px;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  outline: none;
  background: #2a2a2a;
  color: #e0e0e0;
  font-size: 0.9rem;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: #f3961c;
  color: #1a1a1a;
  border: none;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: #ffffff;
  transform: rotate(360deg);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: #f3961c;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 0.85rem;
  margin: 0;
}

.footer-payments {
  display: flex;
  gap: 15px;
}

.footer-payments i {
  color: #b0b0b0;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-payments i:hover {
  color: #f3961c;
  transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-title {
    font-size: 1.2rem;
  }
}
