:root {
  --bg: #000;
  --text: #fff;
  --muted: #d5d5d5;
  --accent: #00c4d6;
  --radius: 26px;
  --panel-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

.page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

/* HERO SECTION WITH IMAGE */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("hero-bg.png") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.85));
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

.hero-logo {
  width: min(480px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 25px rgba(0, 191, 255, 0.4));
}

.hero-sub {
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.4rem;
  font-size: .9rem;
}

.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: .7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .1s ease-out;
}
.hero-btn:hover { transform: translateY(-2px); }

.hero-text {
  margin-top: 1.5rem;
  color: #d5d5d5;
  font-size: .95rem;
  line-height: 1.6;
}

/* PANELS BELOW HERO */
.panel {
  border-radius: var(--radius);
  padding: 2.2rem 2.2rem 2.4rem;
  margin-bottom: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--panel-shadow);
}

.panel-bar {
  background:
    radial-gradient(circle at top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 90%),
    url("bar-bg.jpg") center/cover no-repeat;
}

.panel-cocktail {
  background:
    radial-gradient(circle at top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.88) 90%),
    url("cocktail.jpg") center/cover no-repeat;
}

.panel h2 {
  font-size: 1.55rem;
  margin: 0 0 .7rem;
}

.panel p {
  margin: 0;
}

.panel-foot {
  font-size: .75rem;
  color: #e1e1e1;
  opacity: .85;
}

/* SOCIALS + BOOK */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: rgba(10,10,10,0.4);
  border: 1px solid rgba(255,255,255,0.025);
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 18px 30px rgba(0,0,0,0.3);
}

.card h2 { margin-top: 0; }

.muted {
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: .7rem;
}

.social-link {
  display: block;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: .4rem;
  font-weight: 500;
}
.social-link span {
  display: block;
  color: #a9a9a9;
  font-weight: 400;
  font-size: .7rem;
}

label {
  display: block;
  font-size: .75rem;
  margin-bottom: .25rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 12px;
  padding: .55rem .65rem;
  color: #fff;
  margin-bottom: .6rem;
  font-family: inherit;
  font-size: .85rem;
}

textarea { min-height: 70px; }

.footer {
  text-align: center;
  padding: 2.5rem 0 1rem;
  color: #646464;
  font-size: .75rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .page { max-width: 930px; }
}

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
  .panel { min-height: 200px; }
  .hero { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .page { padding: 0 .9rem 3rem; }
  .hero-logo { width: 78vw; }
  .hero-btn, button.hero-btn { width: 100%; text-align: center; }
  .panel { padding: 1.6rem 1.1rem 1.7rem; }
}

@media (max-width: 430px) {
  .hero { height: 90vh; }
  .panel, .card { border-radius: 16px; }
  .hero-text { font-size: .85rem; }
}
