/* REGION PAGE */

.region-title {
  font-size: 46px;
  color: #65081f;
  margin-bottom: 10px;
}

.region-desc {
  max-width: 800px;
  color: #666;
  line-height: 1.6;
}

/* CARDS */

.region-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.region-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.region-card h4 {
  color: #65081f;
  margin-bottom: 6px;
}

.region-card p {
  font-size: 14px;
  color: #666;
  min-height: 40px; /* keeps layout aligned */
}

/* HOVER */

.region-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.region-card:hover {
  transform: translateY(-6px);
}

/* BUTTON */

.region-btn {
  display: inline-block;
  margin-top: 12px;

  /* REMOVE LINK LOOK */
  text-decoration: none !important;
  color: #222 !important;

  background: white;
  border: 1px solid #222;
  border-left: 3px solid #65081f;

  padding: 10px 22px;
  font-size: 14px;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.region-btn:hover {
  background: #65081f;
  color: white !important;
  border-color: #65081f;

  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}



/* LIST SECTION */

.region-subtitle {
  font-size: 34px;
  margin-bottom: 10px;
}

.region-list h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.region-list ul {
  list-style: none;
  padding: 0;
}

.region-list li {
  margin-bottom: 6px;
  color: #555;
}

/* MAIN BUTTON */

.region-btn-main {
  margin-top: 20px;
  background: white;
  border: 1px solid #ccc;
  padding: 10px 30px;
  transition: all 0.25s ease;
}

.region-btn-main:hover {
  background: #65081f;
  color: white;
}

/* REGION HERO (FADE EFFECT LIKE REFERENCE) */

.region-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */

.region-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/browsewineregionimg1.jpg") right center/cover
    no-repeat;
  z-index: 1;
}

/* GRADIENT FADE */

.region-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* THIS IS THE MAGIC */
  background: linear-gradient(
    to right,
    #fafafa 15%,
    rgba(250, 250, 250, 0.95) 30%,
    rgba(250, 250, 250, 0.7) 45%,
    rgba(250, 250, 250, 0.2) 65%,
    rgba(250, 250, 250, 0) 85%
  );

  z-index: 2;
}

/* TEXT CONTENT */

.region-hero-content {
  position: relative;
  z-index: 3;
  max-width: 550px;
}

.region-hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.region-hero-content p {
  color: #555;
  line-height: 1.7;
}
