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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #021824;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* LOGO BACKGROUND (FIXED SIZE + SOFTER) */
.logo-overlay {
  position: absolute;
  inset: 0;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;   /* THIS FIXES THE GIANT LOGO */
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3rem 2.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 2rem;
  backdrop-filter: blur(8px);
}

.logo {
  width: 140px;
  margin-bottom: 1.5rem;
}

/* TEXT SCALE FIX */
.hero-content h1 {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* CTA */
.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffd84d;
  color: #021824;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* WAVES (RESTORED) */
.waves {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 1;
}

.waves span {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 140px;
  background: rgba(255,255,255,0.22);
  border-radius: 100%;
  animation: wave 20s linear infinite;
}

.waves span:nth-child(2) {
  opacity: 0.3;
  animation-duration: 28s;
  animation-direction: reverse;
}

.waves span:nth-child(3) {
  opacity: 0.4;
  animation-duration: 36s;
}

@keyframes wave {
  0% { transform: translateX(-25%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* SECTIONS */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.drink {
  background: rgba(255,255,255,0.06);
  padding: 2rem;
  border-radius: 1.5rem;
}

.drink h3 {
  color: #ffd84d;
  margin-bottom: 0.75rem;
}

/* FOOTER */
.footer {
  background: #01131c;
  text-align: center;
  padding: 3rem 2rem;
}

.footer p {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.socials a {
  color: #ffd84d;
  text-decoration: none;
  font-weight: 600;
}
