/* =========================================
   FONTS
========================================= */
@font-face {
  font-family: 'AugustStories';
  src: url('../fonts/AugustStories-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AugustStories';
  src: url('../fonts/AugustStories-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  --navy: #0d1c2e;
  --gold: #c6a25a;
  --cream: #f8f5ef;
  --light: #ffffff;
}

/* =========================================
   GLOBAL BASE
========================================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--navy);
  font-family: "Lato", sans-serif;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
}

/* حذف bullet در کل سایت */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* =========================================
   HERO (GLOBAL BOX NOT IMAGE)
========================================= */
.hero {
  background: none;
  width: 200%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 40px 0;
}

.hero-text {
  background: rgba(13, 28, 46, 0.7);
  color: var(--gold);
  padding: 25px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 900px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 18px;
  color: var(--cream);
}



/* =========================================
   WHATSAPP FLOAT (GLOBAL)
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 70px !important;     /* اندازه دایره */
  height: 70px !important;    /* اندازه دایره */

  border-radius: 50% !important;
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 0 !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}


/* فقط اندازه آیکون واتساپ */
.whatsapp-float i {
  font-size: 36px;        /* ← اندازه آیکون واتساپ اینجاست */
  color: var(--gold);
}

/* Hover */
.whatsapp-float:hover {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fffbe6 !important;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(198,162,90,0.5);
}

.whatsapp-float:hover i {
  color: #0d1c2e;  /* رنگ آیکون در حالت هاور */
}


/* Pulse Animation */
@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 8px rgba(198,162,90,0.25); }
  50%  { box-shadow: 0 0 14px rgba(198,162,90,0.55); transform: scale(1.05); }
  100% { box-shadow: 0 0 8px rgba(198,162,90,0.25); transform: scale(1); }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}




/* =========================================
   QUALITY & PURITY SECTION (HOME)
========================================= */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  flex-wrap: wrap;
  background: none;
  border: none;
  box-shadow: none;

  /* Smooth Fade */
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.about.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 0 100px;
}

.about-text h2 {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 15px;
}

.about-text p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--navy);
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
}


/* =========================================
   RELIABLE SUPPLY — CENTERED SECTION (HOME)
========================================= */
.supply-centered-new {
  background-color: #F2ECDF;
  padding: 80px 10%;
  text-align: center;
  color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInSlow 3s ease forwards;
}

.supply-content-new {
  max-width: 800px;
}

.supply-content-new h2 {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 20px;
}

.supply-content-new p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--navy);
  margin-bottom: 15px;
}

/* Animation */
@keyframes fadeInSlow {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =========================================
   RELIABLE SUPPLY — ORIGINAL VERSION
========================================= */
.supply-centered {
  background: linear-gradient(135deg, var(--cream) 0%, #f1e7d4 100%);
  padding: 120px 8%;
  text-align: center;
  color: var(--navy);
}

.supply-content {
  max-width: 850px;
  margin: auto;
}

.supply-content h2 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 25px;
}

.supply-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--navy);
}

@media (max-width: 768px) {
  .supply-centered {
    padding: 80px 6%;
  }
  .supply-content h2 {
    font-size: 28px;
  }
}


/* =========================================
   PRODUCTS PARALLAX (HOME)
========================================= */
.products-parallax {
  position: relative;
  background-image: url("../images/background/products-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 70vh;
  margin-bottom: 0;
  text-align: center;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.products-parallax h2 {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 15px;
}

.products-parallax p {
  color: var(--cream);
  font-size: 18px;
  max-width: 800px;
}


/* =========================================
   PRODUCT GALLERY — GRID (HOME)
========================================= */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  width: 100%;
}

.product-item {
  position: relative;
  min-height: 260px;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}

.product-item:hover img {
  filter: brightness(80%);
}

.product-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(13,28,46,.6);
  padding: 12px 0;
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .3px;
}

.product-item.missing {
  background: #eee3c8;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
  .product-gallery {
    grid-template-columns: repeat(2,1fr);
  }
}

.whatsapp-float,
.whatsapp-float i {
  text-decoration: none !important;
}
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:active {
  text-decoration: none !important;
}


