/* HERO */

.hero-full {
  height: 90vh;
  background: url("../images/homebg.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 700px;
  margin-left: 80px;
  color: white;
}

.hero-inner h1 {
  font-size: 56px;
  font-weight: 500;
}

.hero-inner p {
  margin: 20px 0;
  color: #ddd;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* BUTTONS */
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #d6c37a, #b8965d) !important;
  color: #111;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);

  transition: all 0.35s ease;
}

/* subtle shine overlay */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER */
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* shimmer effect */
.btn-primary:hover::before {
  opacity: 1;
}

/* ACTIVE (press feel) */
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.btn-outline {
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  transition: all 0.35s ease;
}

/* hover fill */
.btn-outline:hover {
  background: white;
  color: black;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

.btn-outline-dark {
  position: relative;
  border: 1px solid #111;
  color: #111;
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

/* hover */
.btn-outline-dark:hover {
  background: #111;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* SECTION */

.section {
  padding: 80px 0;
}

.section-heading {
  font-size: 34px;
  margin-bottom: 40px;
}

.section-dark {
  background: #0f0f0f;
  color: white;
  padding: 80px 0;
}

/* COLLECTION GRID */

/* GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.collection-card {
  position: relative;
  height: 320px; /* 🔥 taller = more premium */
  overflow: hidden;
  border-radius: 16px;
  display: block;
}

/* IMAGE */
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

/* TITLE */
.collection-overlay h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}

/* SUBTEXT */
.collection-overlay span {
  color: #ddd;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* HOVER (luxury feel) */
.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

@media (max-width: 991px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

/* WINE GRID */

.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.wine-item {
  transition: all 0.35s ease;
  cursor: pointer;
}

.wine-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wine-item h6 {
  margin-top: 14px;
  font-size: 17px;
}

.wine-item p {
  font-size: 14px;
  color: #aaa;
  font-style: italic;
}

/* HOVER */
.wine-item:hover {
  transform: translateY(-6px);
}

.wine-item:hover img {
  transform: scale(1.05);
}

/* ALLOCATION */

.allocation {
  background: #111;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.allocation-bar {
  margin: 20px 0;
  border: 1px solid #c9a96e;
  padding: 12px;
}

.allocation-actions {
  display: flex;
 
  justify-content: center;
  gap: 14px;
}

.allocation-highlight {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

/* STEPS */

.steps {
  display: flex;
  justify-content: space-between;
}

.step span {
  font-size: 28px;
  color: #c9a96e;
}

/* CONCIERGE */

.concierge {
  text-align: center;
  padding: 100px 20px;
  background: #f8f8f8;
}

.section-heading.center {
  text-align: center;
}

.steps.refined {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.step span {
  display: block;
  font-size: 26px;
  color: #c9a96e;
  margin-bottom: 10px;
}

.step h5 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #777;
  max-width: 220px;
  margin: 0 auto;
}

.concierge.refined {
  background: #0f0f0f;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.concierge.refined h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.concierge.refined p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: #bbb;
  line-height: 1.6;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* smooth feel everywhere */
* {
  transition: all 0.2s ease;
}

/* subtle hover for images globally */
img:hover {
  filter: brightness(0.95);
}


.cherry-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.cherry-wrapper {
  display: flex;
  align-items: center;
  gap: 80px; /* controlled spacing */
}

/* LEFT TEXT */
.cherry-text {
  max-width: 420px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.cherry-text h2 {
  font-size: 42px;
  margin: 10px 0 20px;
}

.cherry-text p {
  color: #666;
  line-height: 1.7;
}

/* DIVIDER */
.cherry-divider {
  width: 60px;
  height: 1px;
  background: #ccc;
  margin: 25px 0;
}

/* NAME */
.cherry-text h5 {
  margin: 0;
  font-size: 18px;
}

.consultancy {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
}

/* BUTTON */
.btn-outline-dark {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #111;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #111;
  color: white;
}

/* RIGHT SIDE (MINIMAL PREVIEW) */



.mini-wine img {
  width: 100%;
  height: 240px; /* 🔥 taller like Pulpi */
  object-fit: contain; /* wine bottles should NOT be cropped */
}

/* TITLE */
.mini-wine span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #444;
}

.mini-wine span {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* HOVER */
.mini-wine:hover img {
  transform: translateY(-4px) scale(1.02);
}



.mini-wine:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* AUTHOR BLOCK */
.cherry-author {
  margin-top: 20px;
}

.cherry-author h5 {
  margin-bottom: 2px; /* tighter */
  font-size: 18px;
}

.consultancy {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  display: block;
}

/* BUTTON POSITION FIX */
.cherry-btn {
  display: inline-block;
  margin-top: 25px; /* pushes it BELOW text */
}

/* RIGHT SIDE - PULPI STYLE */
.cherry-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 perfect 4 layout */
  gap: 25px;
}

/* CARD */
.wine-card {
  flex: 1;
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

/* IMAGE (IMPORTANT FIX) */
.wine-card img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* 🔥 correct for bottles */
  margin-bottom: 18px;
}

/* TITLE */
.wine-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.wine-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* HOVER LIKE PULPI */
.wine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .cherry-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cherry-preview {
    grid-template-columns: 1fr;
  }
}

/* PRIVATE ALLOCATION — HERO STYLE */
.allocation {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.allocation-inner {
  max-width: 650px;
  margin: 0 auto;
}

.eyebrow-light {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9ba6e;
}

.allocation h2 {
  font-size: 46px;
  margin: 10px 0 20px;
}

.allocation-desc {
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* PREMIUM HIGHLIGHT */
.allocation-highlight {
  display: inline-block;
  border: 1px solid rgba(201,186,110,0.5);
  padding: 14px 24px;
  margin-bottom: 30px;
  font-size: 18px;
  letter-spacing: 1px;
}

/* subtle glow */
.allocation-highlight strong {
  color: #c9ba6e;
}

/* BUTTON WRAPPER */
.allocation-actions {
  display: flex;
 
  justify-content: center;
  gap: 12px;
}

/* MAKE BOTH SAME HEIGHT */
.allocation-highlight,
.allocation-btn {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

/* FIX OUTLINE BOX */
.allocation-highlight {
  border: 1px solid rgba(201,186,110,0.5);
  font-size: 15px;
  letter-spacing: 1px;
}

/* FIX PRIMARY BUTTON */
.allocation-btn {
  padding: 0 26px; /* remove vertical padding */
}

/* REMOVE EXTRA SPACING FROM INNER SPAN */
.allocation-btn span {
  display: inline-block;
}

.allocation-highlight:hover {
  border-color: #c9ba6e;
  color: #c9ba6e;
}

/* CONCIERGE SPLIT (PULPI STYLE) */
/* CONCIERGE — TRUE LEFT/RIGHT LAYOUT */
.concierge-split {
  background: #f5f5f5;
  padding: 120px 0;
}

/* IMPORTANT: DO NOT CENTER */
.concierge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/* LEFT IMAGE */
.concierge-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-start; /* 🔥 keeps image LEFT */
}

.concierge-image img {
  max-width: 520px;
  width: none;
}

.concierge-image img {
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.15));
}

/* RIGHT TEXT */
.concierge-content {
  flex: 1;
  max-width: 520px;
}

/* TEXT STYLING */
.concierge-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.concierge-content .lead {
  font-weight: 600;
  margin-bottom: 15px;
}

.concierge-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .allocation-wrapper,
  .concierge-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .allocation-text,
  .concierge-content {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .concierge-row {
    flex-direction: column;
    text-align: center;
  }

  .concierge-image {
    justify-content: center;
  }
}

/* HOW IT WORKS — UPGRADED */
.how-section {
  padding: 120px 0;
  background: #fafafa;
}

/* HEADER */
.how-header {
  text-align: center;
  margin-bottom: 70px;
}

.how-header h2 {
  font-size: 40px;
  margin: 10px 0;
}

.how-header p {
  color: #777;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.how-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.3s ease;
}

/* NUMBER */
.how-number {
  font-size: 18px;
  color: #c9ba6e;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* TITLE */
.how-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.how-card p {
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.how-card:hover {
  
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}