/* ============================================
   DRY RUN SPIRITS DISTILLERY — CUSTOM STYLES
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ---- Navbar ---- */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(139, 26, 74, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8B1A4A, #f4a0b5);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ---- Mobile Menu ---- */
#mobileMenu {
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 26, 74, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:hover { color: #8B1A4A; padding-left: 8px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #8B1A4A 0%, #a01e56 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 26, 74, 0.35);
  background: linear-gradient(135deg, #7a1540 0%, #8B1A4A 100%);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #8B1A4A;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #8B1A4A;
  transition: all 0.3s ease;
  font-size: inherit;
}
.btn-secondary:hover {
  background: #8B1A4A;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #8B1A4A;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(139, 26, 74, 0.3);
  transition: all 0.3s ease;
  font-size: inherit;
}
.btn-outline:hover {
  border-color: #8B1A4A;
  background: rgba(139, 26, 74, 0.05);
}
.btn-primary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #8B1A4A;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: inherit;
}
.btn-primary-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ---- Tags / Labels ---- */
.tag-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B1A4A;
  background: rgba(139, 26, 74, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(139, 26, 74, 0.15);
}
.tag-label-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}
.tag-sm {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #8B1A4A;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---- Links ---- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8B1A4A;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 10px; }

/* ---- Spirit Cards ---- */
.spirit-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(139, 26, 74, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.spirit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 26, 74, 0.15);
}
.spirit-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.spirit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.spirit-card:hover .spirit-card-img img { transform: scale(1.08); }
.spirit-card-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}
.spirit-card-content {
  padding: 24px 28px 28px;
}

/* ---- Experience Cards ---- */
.experience-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(139, 26, 74, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(139, 26, 74, 0.12);
}
.experience-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-card:hover .experience-card-img img { transform: scale(1.08); }
.experience-card-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}
.experience-card-body {
  padding: 24px 28px 28px;
}

/* ---- Geometric Shapes ---- */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.geo-circle-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,26,74,0.07) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.geo-circle-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(244,160,181,0.15) 0%, transparent 70%);
  top: 20%; right: -60px;
  animation: float 10s ease-in-out infinite reverse;
}
.geo-circle-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(139,26,74,0.06) 0%, transparent 70%);
  bottom: 10%; left: 15%;
  animation: float 12s ease-in-out infinite;
}
.geo-rect {
  position: absolute;
  pointer-events: none;
}
.geo-rect-1 {
  width: 120px; height: 120px;
  background: rgba(244,160,181,0.12);
  border-radius: 24px;
  top: 25%; left: 8%;
  transform: rotate(15deg);
  animation: spin-slow 20s linear infinite;
}
.geo-rect-2 {
  width: 80px; height: 80px;
  background: rgba(139,26,74,0.06);
  border-radius: 16px;
  bottom: 20%; right: 10%;
  transform: rotate(-30deg);
  animation: spin-slow 15s linear infinite reverse;
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(244,160,181,0.08);
  top: 30%; right: 20%;
  animation: float 9s ease-in-out infinite;
}
.geo-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  width: 100%; height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes spin-slow {
  from { transform: rotate(15deg); }
  to { transform: rotate(375deg); }
}

/* ---- Scroll Indicator ---- */
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #8B1A4A, transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---- Hero Animations ---- */
.hero-badge {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
h1 {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}
#hero p {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}
#hero .flex { animation: fadeUp 0.8s ease forwards; opacity: 0; animation-delay: 0.8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .geo-circle-1 { width: 250px; height: 250px; }
  .geo-circle-2 { width: 160px; height: 160px; }
  .geo-circle-3 { display: none; }
  .geo-rect-1 { width: 70px; height: 70px; }
  .geo-rect-2 { display: none; }
  .geo-triangle { display: none; }
}
