:root {
  --j2-start: #ff7a00;   /* orange */
  --j2-mid:   #ff3b6a;   /* pink/red */
  --j2-end:   #1ab89d;   /* teal */
  --j2-dark:  #111827;
  --j2-soft:  #f8fafc;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #ffffff;
}

/* NAVBAR */
.navbar .nav-link:hover {
  color: #ff7a00 !important;
}

/* HERO GRADIENT */
.hero-gradient {
  min-height: 75vh;
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--j2-start), var(--j2-mid), var(--j2-end));
  background-size: 200% 200%;
  animation: j2GradientMove 16s ease infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 50%);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 240px;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.4));
}

.hero-title {
  font-size: 2.4rem;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.hero-buttons .btn {
  min-width: 180px;
}

/* Gradient animation */
@keyframes j2GradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* BUTTONS */
.btn-j2 {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid));
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-j2:hover,
.btn-j2:focus {
  filter: brightness(0.95);
  color: #fff;
}

.btn-j2-outline {
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(90deg, var(--j2-mid), var(--j2-end)) 1;
  color: #ffffff;
  background: transparent;
  font-weight: 600;
}

.btn-j2-outline:hover,
.btn-j2-outline:focus {
  background: linear-gradient(90deg, var(--j2-mid), var(--j2-end));
  color: #ffffff;
}

/* SECTIONS */
section {
  scroll-margin-top: 80px;
}

.section-title {
  font-size: 1.9rem;
}

/* JUICE CARDS / CAROUSEL */
.juice-card {
  max-width: 380px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,0.06);
  background-color: #ffffff;
}

.juice-card img {
  height: 230px;
  object-fit: cover;
}

.juice-card .card-body {
  padding: 1.25rem 1.4rem 1.4rem;
}

.card-title-gradient {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.small-pricing {
  font-size: 0.95rem;
}

/* small colored "cold pressed" text */
.text-j2 {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Carousel controls & indicators */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255,255,255,0.6);
}

.carousel-indicators .active {
  background-image: linear-gradient(90deg, var(--j2-mid), var(--j2-end));
}

/* Cold-pressed strip */
.coldpress-strip {
  background: #fff7f1;
}

/* ABOUT */
.about-carousel img {
  height: 360px;
  object-fit: cover;
}

/* SERVICE BAR */
.service-gradient {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid));
}

.service-text {
  font-size: 0.98rem;
}

/* ORDER SECTION */
.order-bg {
  background: var(--j2-soft);
}

/* Option B: white card with gradient border & accents */
.order-form {
  border-radius: 1.25rem;
  position: relative;
  padding: 1.75rem;
  background: #ffffff;
}

/* subtle gradient border around whole form card */
.order-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--j2-start), var(--j2-mid), var(--j2-end));
  z-index: -1;
}

/* Labels */
.order-form .form-label {
  font-size: 0.95rem;
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
}

/* Gradient border focus for inputs */
.form-control:focus,
.form-select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 1px transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, var(--j2-start), var(--j2-mid));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Gradient text link */
.text-j2-link {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FOOTER */
.footer-gradient {
  background: linear-gradient(90deg, var(--j2-start), var(--j2-mid), var(--j2-end));
  font-size: 0.9rem;
}

/* ---------- MOBILE TWEAKS ---------- */
@media (max-width: 767.98px) {
  .hero-gradient {
    min-height: 70vh;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .hero-logo {
    max-width: 200px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-text {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .order-form {
    padding: 1.25rem;
  }

  .about-carousel img {
    height: 260px;
  }
}

/* ---------- LARGE SCREENS ---------- */
@media (min-width: 992px) {
  .hero-gradient {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.9rem;
  }
}
