/* =============================================
   RESET & BASE
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  direction: rtl;
  background: #f7f0ea;
  color: #2c1810;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

/* =============================================
   HEADER / HERO
   ============================================= */
.header {
  background: linear-gradient(135deg, #1a0f09 0%, #3b2417 40%, #2d1a10 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #c4905a;
}

/* الگوی تزئینی روی هدر */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(196, 144, 90, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(196, 144, 90, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* =============================================
   TOP BAR
   ============================================= */
.head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 144, 90, 0.15);
  position: relative;
  z-index: 2;
}

.adress ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
}

.adress ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e8d5c4;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.2rem 0;
}

.adress ul li .fa {
  color: #c4905a;
  font-size: 1.1rem;
  width: 1.2rem;
  text-align: center;
  transition: 0.3s ease;
}

.adress ul li:hover .fa {
  color: #e8b88a;
  transform: scale(1.1);
}

/* =============================================
   BRAND NAME
   ============================================= */
.name-of {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f5e6d3;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.name-of .shop {
  font-weight: 700;
  color: #c4905a;
  background: rgba(196, 144, 90, 0.15);
  padding: 0.1rem 0.8rem;
  border-radius: 30px;
  margin-right: 0.2rem;
  border: 1px solid rgba(196, 144, 90, 0.2);
}

/* =============================================
   TOP NAVIGATION
   ============================================= */
.top-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.8rem;
}

.top-list ul li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  color: #e0cdbc;
  transition: 0.3s;
  position: relative;
}

/* خط زیر منو */
.top-list ul li a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #c4905a;
  transition: 0.3s ease;
  border-radius: 10px;
}

.top-list ul li a:hover {
  color: #fff;
  background: rgba(196, 144, 90, 0.12);
}

.top-list ul li a:hover::after {
  width: 60%;
}

/* دکمه ورود ویژه */
.top-list ul li:first-child a {
  background: rgba(196, 144, 90, 0.15);
  border: 1px solid rgba(196, 144, 90, 0.2);
  padding: 0.5rem 1.2rem;
}

.top-list ul li:first-child a:hover {
  background: rgba(196, 144, 90, 0.3);
  border-color: #c4905a;
}

/* =============================================
   HERO CONTENT
   ============================================= */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
}

.center-content {
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  letter-spacing: 3px;
  line-height: 1.1;
}

.center-content span {
  color: #c4905a;
  display: inline-block;
}

.content2 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #dcc9b8;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.6rem 2rem;
  border-radius: 60px;
  margin-top: 1rem;
  border: 1px solid rgba(196, 144, 90, 0.15);
  max-width: 90%;
}

/* دانه قهوه تزئینی */
.content::after {
  content: "\f0f4";
  font-family: "FontAwesome";
  font-size: 4rem;
  color: rgba(196, 144, 90, 0.08);
  position: absolute;
  bottom: 10%;
  right: 8%;
  transform: rotate(15deg);
  pointer-events: none;
}

/* =============================================
   SPECIAL SECTION
   ============================================= */
.center {
  max-width: 1200px;
  margin: -3rem auto 3rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #ffffff;
  border-radius: 40px 40px 30px 30px;
  box-shadow: 0 25px 60px -18px rgba(44, 24, 16, 0.3);
  position: relative;
  z-index: 5;
  border: 1px solid rgba(196, 144, 90, 0.08);
}

.image1 {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 40px 12px 40px 12px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border: 4px solid #f5ede7;
}

.image1:hover {
  transform: scale(1.03) rotate(-1deg);
  border-color: #c4905a;
  box-shadow: 0 20px 40px rgba(196, 144, 90, 0.15);
}

.content3 {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0.5rem;
}

.head-center {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: #2c1810;
}

.head-center .espacially {
  font-weight: 700;
  color: #c4905a;
  background: #f7ede6;
  padding: 0.1rem 1rem;
  border-radius: 40px;
  display: inline-block;
  border: 1px solid rgba(196, 144, 90, 0.15);
}

.content-center {
  font-size: 1.05rem;
  color: #4d3428;
  max-width: 380px;
  margin: 0.5rem auto 0;
  padding-right: 1.2rem;
  border-right: 4px solid #c4905a;
  opacity: 0.85;
}

/* =============================================
   BADGES / LOGOS
   ============================================= */
.center-logo {
  width: 100%;
  margin-top: 0.5rem;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.logos li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2c1810;
  background: #f8f2ec;
  padding: 0.4rem 1.6rem 0.4rem 2rem;
  border-radius: 60px;
  border: 1px solid #e8dbd0;
  transition: 0.3s ease;
  cursor: default;
}

.logos li:hover {
  background: #efe1d6;
  border-color: #c4905a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(196, 144, 90, 0.12);
}

.logos li img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c4905a;
  background: #fff;
  padding: 2px;
  transition: 0.3s;
}

.logos li:hover img {
  border-color: #a0704a;
  transform: scale(1.05);
}

/* =============================================
   FOOTER
   ============================================= */
.my-adress {
  background: linear-gradient(135deg, #1a0f09, #2d1a10);
  color: #b8a394;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  border-top: 2px solid rgba(196, 144, 90, 0.15);
  font-size: 0.9rem;
  gap: 0.8rem;
}

.my-adress p {
  opacity: 0.8;
  transition: 0.3s;
}

.my-adress p:hover {
  opacity: 1;
  color: #e8d5c4;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* تبلت و موبایل بزرگ */
@media (max-width: 992px) {
  .head {
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
    justify-content: center;
  }

  .adress ul {
    justify-content: center;
    gap: 0.5rem 1.2rem;
  }

  .name-of {
    font-size: 1.6rem;
  }

  .top-list ul {
    justify-content: center;
  }

  .center {
    margin: -2rem 1rem 2rem;
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }

  .image1 {
    max-width: 180px;
  }

  .my-adress {
    padding: 1rem 1.5rem;
    justify-content: center;
    text-align: center;
  }
}

/* موبایل */
@media (max-width: 576px) {
  .head {
    padding: 0.6rem 1rem;
    flex-direction: column;
    gap: 0.4rem;
  }

  .adress ul li {
    font-size: 0.75rem;
  }

  .adress ul li .fa {
    font-size: 0.9rem;
    width: 1rem;
  }

  .name-of {
    font-size: 1.3rem;
  }

  .top-list ul li a {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .top-list ul {
    gap: 0.1rem 0.3rem;
  }

  .content {
    padding: 1rem 0.5rem 2.5rem;
  }

  .center-content {
    font-size: 2.8rem;
  }

  .content2 {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .center {
    margin: -1.5rem 0.5rem 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 25px;
    gap: 1.2rem;
  }

  .image1 {
    max-width: 140px;
    border-width: 3px;
  }

  .head-center {
    font-size: 1.4rem;
  }

  .head-center .espacially {
    padding: 0 0.6rem;
  }

  .content-center {
    font-size: 0.85rem;
    padding-right: 0.8rem;
    max-width: 100%;
  }

  .logos li {
    font-size: 0.8rem;
    padding: 0.2rem 1rem 0.2rem 1.2rem;
    gap: 0.5rem;
  }

  .logos li img {
    width: 32px;
    height: 32px;
  }

  .logos {
    gap: 0.8rem 1.2rem;
  }

  .my-adress {
    font-size: 0.75rem;
    padding: 0.8rem 1rem;
    flex-direction: column;
    gap: 0.2rem;
  }

  .content::after {
    font-size: 2.5rem;
    bottom: 5%;
    right: 5%;
  }
}
