/* General Styling & Typography */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: linear-gradient(to right, #3a2c20, white);
  color: #2e2823; /* Dark brown */
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #4a2f1d;
}

/* Header and Navigation */
header {
  position: sticky;
  top: 0;
  background-color: rgba(44, 29, 15, 0.9);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem; /* Increased horizontal spacing */
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem; /* Increased spacing */
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.4s ease;
  letter-spacing: 1px; /* Added letter spacing */
}

.nav-links a:hover {
  color: #d4af37; /* Golden amber */
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

.hero-text {
  color: #fff;
  text-align: center;
  transform: translateY(-40%); /* Raised text to 40% viewport height */
  animation: fadeIn 1.5s ease-out;
}

.hero-text h1 {
  font-size: 4.5rem;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); /* Softer, deeper shadow */
  margin: 0;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down a {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(-15px) rotate(-45deg);
  }
  60% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.section-divider {
  position: relative;
  background: linear-gradient(to right, #3a2c20, white);
  display: block;
  width: 100%;
}

.parallax-wrapper {
  position: relative;
  height: 150px;
  overflow: hidden;
  margin: 0;
}

.parallax-bg {
  background-image: url("images/tap-strip-blurred.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  background-repeat: no-repeat;
  height: 300px;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Content Sections */
.content-section {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #eae0d5; /* Faint divider line */
}

.content-section:last-of-type {
  border-bottom: none;
}
#beer-dock-section {
  background-color: #5e0808;
  padding: 4rem 0;
  text-align: center;
}

#beer-dock-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: white;
}

.beer-dock {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 2rem;
}

.beer-dock img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.beer-dock img:hover {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
#specials,
#events {
  background-color: #fdf8f0; /* Main background */
}

#menu,
#contact {
  background-color: #f9f2e8; /* Alternating warm background */
}

.content-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Menu Section */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.menu-item {
  background: #fdf8f0;
  padding: 2.5rem; /* Increased padding */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-8px); /* Enhanced lift effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); /* Pulsing shadow */
}

.menu-item h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.map-placeholder {
  height: 350px;
  background: #e0d8cd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c1d0f;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-text {
    transform: translateY(-25%);
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .content-section {
    padding: 4rem 1.5rem;
  }

  .content-section h2 {
    font-size: 2.5rem;
  }
}
