@font-face {
  font-family: 'Balmy Beta';
  src: url('Balmy Beta.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --vasco-yellow: #FFD500;
  --vasco-yellow-hover: #e6c000;
  --vasco-black: #000000;
  --vasco-black-light: #111111;
  --vasco-red: #E63946;
  --text-light: #F4F4F4;
  --text-dark: #111111;
  --font-display: 'Balmy Beta', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--vasco-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.highlight {
  color: var(--vasco-yellow);
}

/* Layout Utilities */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-logo {
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--vasco-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--vasco-yellow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: var(--vasco-yellow);
  color: var(--text-dark);
}

.social-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--vasco-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.social-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section (New Split-Column Layout with Yellow-Gold Theme) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background-color: #FFD500;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero {
    background-image: url('horizontal-hero.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .hero-content {
    grid-template-columns: 1fr;
    max-width: 1200px;
  }
  .hero-left {
    max-width: 550px;
  }
  .hero-right {
    display: none;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-brand-logo {
  height: 80px;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
  animation: fadeInUp 0.8s ease forwards;
}

.headline {
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  margin-bottom: 2rem;
  color: var(--vasco-black);
  line-height: 1.05;
  font-family: var(--font-display);
  text-transform: uppercase;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline .highlight-dark {
  color: #c90000;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 340px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* Custom Buttons for Hero Section on Yellow Background */
.btn-hero {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-hero-dark, .btn-hero-outline {
  background-color: #9B1A0E;
  color: #ffffff !important;
  border: 2px solid #9B1A0E;
}

.btn-hero-dark:hover, .btn-hero-outline:hover {
  background-color: var(--vasco-black);
  border-color: var(--vasco-black);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-showcase-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(1deg);
  transition: transform 0.6s var(--transition-smooth);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-showcase-img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Stockists Section styling */
.stockists-section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 6rem 2rem 5rem;
  background-color: var(--vasco-black);
  border-bottom: 1px solid #1f1f1f;
  text-align: left;
}



.stockists-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stockists-section .section-title {
  text-align: left;
  color: #ffffff;
}

.stockists-section .section-title .highlight {
  color: #ffffff !important;
}

.stockist-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 3.5rem 0 2.5rem;
}

/* Premium Pure-CSS Circular Stamp for Beckenham Butchery */
.stockist-stamp {
  width: 180px;
  height: 180px;
  border: 4px double var(--vasco-yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--vasco-yellow);
  padding: 1.2rem;
  background: rgba(255, 213, 0, 0.02);
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s, color 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.stockist-stamp:hover {
  transform: scale(1.08) rotate(6deg);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 213, 0, 0.15);
}

.stockist-link {
  text-decoration: none;
  display: inline-block;
}

.stockist-brand-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.4s var(--transition-smooth);
}

.stockist-brand-link:hover {
  transform: scale(1.08);
}

.stockist-brand-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Converts the black logo to a beautiful, clean white */
  opacity: 0.85;
  transition: opacity 0.3s var(--transition-smooth), filter 0.3s var(--transition-smooth);
}

.stockist-brand-link:hover .stockist-brand-logo {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 213, 0, 0.5)); /* Adds a warm glow on hover */
}

.stockist-stamp.has-logo {
  background: #ffffff;
  border-color: #ffffff;
  padding: 1.2rem;
}

.stockist-stamp.has-logo:hover {
  border-color: var(--vasco-yellow);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.stockist-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stamp-text-top {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: inherit;
}

.stamp-icon {
  font-size: 2.2rem;
  margin: 0.3rem 0;
  line-height: 1;
}

.stamp-text-bottom {
  font-size: 0.95rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}

.stockist-note {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 2rem 0 0;
  font-style: italic;
  text-align: left;
}

/* General Buttons (used elsewhere on the page) */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid var(--vasco-yellow);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--vasco-yellow);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--vasco-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(255, 213, 0, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--vasco-yellow);
  border: 2px solid var(--vasco-yellow);
}

.btn-secondary:hover {
  background-color: var(--vasco-yellow);
  color: var(--vasco-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(255, 213, 0, 0.25);
}

/* Flavors Section */
.flavors-section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 5rem 2rem;
}



.flavors-section > * {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.flavor-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flavor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card-image-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f7f7f7;
}

.flavor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.flavor-card:hover .flavor-img {
  transform: scale(1.05);
}

.card-content {
  padding: 2.5rem 2rem;
  text-align: center;
  color: #8B1C14;
}

.flavor-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #8B1C14 !important;
  margin-bottom: 0.25rem;
}

.zesty .flavor-name,
.warm .flavor-name,
.hot .flavor-name {
  color: #8B1C14 !important;
}

.flavor-subtitle {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: #8B1C14;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flavor-desc {
  color: #8B1C14;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  min-height: auto;
  margin-bottom: 0;
}

.price-dual {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
}

.price-rrp {
  font-size: 0.85rem;
  color: #777;
  text-decoration: line-through;
}

.price-wholesale {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--vasco-yellow);
}

.mix-note {
  text-align: center;
  color: var(--vasco-yellow);
  font-weight: 600;
  margin-top: 2rem;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  max-width: 100%;
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--vasco-black);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .section-title {
  margin-bottom: 1rem;
}

.cta-section .section-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Value Section (Why Stock Vasco's) */
.value-section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 5rem 2rem;
  background: var(--vasco-black-light);
}

.value-section > * {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--vasco-black);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--vasco-yellow);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--vasco-yellow);
}

.value-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 5rem 2rem;
  background-color: var(--vasco-black);
}

.pricing-section > * {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--vasco-black-light);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: var(--vasco-yellow);
  transform: translateY(-6px);
}

.pricing-card.popular {
  border: 2px solid var(--vasco-yellow);
  box-shadow: 0 0 40px rgba(255, 213, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vasco-yellow);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--vasco-yellow);
}

.tier-qty {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
}

.tier-bottles {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.tier-price span {
  font-size: 1rem;
  color: #888;
}

.tier-total {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.tier-discount {
  font-weight: 700;
  color: var(--vasco-yellow);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tier-btn {
  width: 100%;
}

/* Form Section */
.order-section {
  max-width: 800px;
}

.form-container {
  background-color: var(--vasco-black-light);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #333;
}

.form-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #aaa;
  margin-bottom: 2rem;
}

.vascos-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  background-color: var(--vasco-black);
  border: 1px solid #444;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--vasco-yellow);
}

.submit-btn {
  margin-top: 1rem;
  width: 100%;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(255, 213, 0, 0.1);
  border: 1px solid var(--vasco-yellow);
  color: var(--vasco-yellow);
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--vasco-yellow);
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Footer */
.footer {
  background-color: var(--vasco-black);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #666;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact p {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--vasco-yellow);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--text-light);
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--vasco-yellow);
}

.copyright {
  color: #555;
  font-size: 0.85rem;
}

/* Animations */
.reveal-text .block {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-text .block:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.6s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    background-image: url('mobile-hero.jpg') !important;
    background-color: #FFD500;
    background-repeat: no-repeat !important;
    background-position: center center !important; /* Vertically and horizontally centers the mobile-optimized vertical shot */
    background-size: cover !important;
    padding: 6rem 1.5rem 32rem !important; /* Pushes content down so the beautiful sauce bottles at the bottom are fully visible */
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
  }
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
    width: 100%;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .hero-actions {
    justify-content: center;
    margin: 0 auto;
  }
  .hero-right {
    display: none !important; /* Cleanly hidden */
  }
  .stockists-section {
    text-align: center;
  }
  .stockists-section .section-title {
    text-align: center;
  }
  .stockist-list {
    justify-content: center;
    margin: 3.5rem auto 2.5rem;
  }
  .stockist-note {
    text-align: center;
    margin: 2rem auto 0;
  }
  .form-container {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .value-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .checkbox-group {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Extra Mobile Adjustments for Narrow Viewports */
@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  .nav-logo {
    height: 45px;
  }
  .nav-right {
    gap: 0.75rem;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }
  .social-link {
    font-size: 0.75rem;
  }
  .form-container {
    padding: 1.5rem 1rem;
  }
  .form-title {
    font-size: 2.2rem;
  }
  .section {
    padding: 3.5rem 1rem;
  }
  .cta-section {
    padding: 4rem 1rem;
  }
}
