/* =========================================================
   PAGE: GOLDEN RAISINS – Afagh Kala Rostami
   Scoped CSS (No conflicts with other pages)
   ========================================================= */

.golden-raisins-page {
  background: var(--cream);
  color: var(--navy);
}

/* ===== HERO ===== */
.golden-raisins-page .hero-golden {
  position: relative;
  width: 100%;
  height: 60vh;
  display: grid;
  place-items: center;
  background: url("../images/raisins/hero-golden.jpg") center/cover no-repeat;
  text-align: center;
  color: var(--light);
  overflow: hidden;
}

.golden-raisins-page .hero-golden::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 28, 46, 0.6), rgba(13, 28, 46, 0.35));
}

.golden-raisins-page .hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 6vw;
}

.golden-raisins-page .hero-inner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.golden-raisins-page .hero-inner p.sub {
  font-size: clamp(14px, 1.4vw, 18px);
  opacity: 0.95;
  color: #f8f5ef;
}

/* ===== SECTIONS GENERAL ===== */
.golden-raisins-page .section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
  text-align: center;
}

.golden-raisins-page .section h2 {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 20px;
}

.golden-raisins-page .section p,
.golden-raisins-page .section li {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.8;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.golden-raisins-page .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.golden-raisins-page .two-col.reverse {
  direction: rtl;
}

.golden-raisins-page .two-col.reverse .text,
.golden-raisins-page .two-col.reverse .image {
  direction: ltr;
}

.golden-raisins-page .two-col img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

/* =========================================================
   Nutritional Benefits (Text Left - Image Right)
   ========================================================= */
.nutri-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 10%;
}

.nutri-text {
  flex: 1;
  text-align: left; /* متن چپ */
}

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

.nutri-text p,
.nutri-text ul li {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.8;
}

.nutri-image {
  flex: 1;
  text-align: right; /* عکس راست */
}

.nutri-image img {
  width: 90%;
  max-width: 420px;
  object-fit: contain;
}


/* ===== LISTS ===== */
.golden-raisins-page ul {
  list-style: none;
  padding: 0;
}

/* ===== PACKAGING & EXPORT (TABLE) ===== */
.golden-raisins-page table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.golden-raisins-page th {
  background: var(--gold);
  color: var(--navy);
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
}

.golden-raisins-page td {
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.golden-raisins-page tr:nth-child(even) td {
  background: #fafafa;
}
/* =========================================================
   PARALLAX SECTION – WHY CHOOSE US
   ========================================================= */
.why-parallax {
  position: relative;
  background-image: url("../images/raisins/why-choose-bg.jpg"); /* عکس دلخواه */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* ---- فعال کردن پارالاکس ---- */
  background-attachment: fixed;

  padding: 120px 10%;
  text-align: center;
  overflow: hidden;
}

/* لایه تیره برای خوانایی */
.why-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 20, 30, 0.55);
  z-index: 0;
}

.why-parallax .why-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.why-parallax h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--gold); /* طلایی برند */
  font-weight: 700;
}

.why-parallax ul li {
  color: #F8F5EF; /* کرمی برند */
  font-size: 20px;
  line-height: 2;
}

/* ===== GALLERY – Raisin Golden (Always 3 items in 1 row) ===== */

/* ================================
   GALLERY SECTION FIX
================================ */
.gallery-section .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* سه ستون کنار هم */
  gap: 20px; /* فاصله بین عکس‌ها و ویدئو */
  padding: 20px 10%;
}

.gallery-section img,
.gallery-section video {
  width: 100%;
  height: 280px;
  object-fit: cover; /* همه یک اندازه و مرتب */
  border-radius: 12px; /* گرد و زیبا */
}

@media (max-width: 768px) {
  .gallery-section .gallery {
    grid-template-columns: 1fr; /* تک ستون */
  }

  .gallery-section img,
  .gallery-section video {
    height: 250px;
  }
}


/* ===== WHATSAPP FLOAT BUTTON ===== */
.golden-raisins-page .whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 9999;
}

.golden-raisins-page .whatsapp-float:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .golden-raisins-page .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .golden-raisins-page .two-col.reverse {
    direction: ltr;
  }
}





/* ===== GALLERY – Raisin Golden (Always 3 in one row) ===== */
.raisin-golden-page .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* سه ستون دقیق */
  gap: 20px;
  padding: 0 8%;
  margin-top: 20px;
}

.raisin-golden-page .gallery img,
.raisin-golden-page .gallery video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

@media (max-width: 768px) {
  .raisin-golden-page .gallery {
    grid-template-columns: 1fr;
  }

  .raisin-golden-page .gallery img,
  .raisin-golden-page .gallery video {
    height: 200px;
  }
}
