/* COLORS */
.text-wine { color: #7A1C2A; }
.bg-wine { background-color: #7A1C2A; }
.text-gold { color: #D4AF37; }

/* BODY */
body {
  background: #ffffff;
  color: #171717;
}

html {
  scroll-behavior: smooth;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  letter-spacing: -0.015em;
  line-height: 1.12;
}

p {
  line-height: 1.65;
}

/* PRIMARY BUTTON */
.td-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  background-image: linear-gradient(135deg, #7A1C2A, #D4AF37);
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(122, 28, 42, 0.18);
}

.td-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(122,28,42,0.35);
}

/* OUTLINE WHITE */
.td-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.td-btn-outline-white:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.1);
}

/* OUTLINE WINE */
.td-btn-outline-wine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7A1C2A;
  color: #7A1C2A;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.td-btn-outline-wine:hover {
  transform: scale(1.05);
  background: rgba(122,28,42,0.04);
}

/* CARD */
.card {
  border-radius: 16px;
  background: white;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(122,28,42,0.15);
}

/* NAV LINK */
.td-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.td-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: #7A1C2A;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

.td-nav-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}


.td-nav-link::after {
  height: px;
  background: #7a1c2a;
}