/* RESET И БАЗА */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.7;
}

/* ШАПКА */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('beans1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero .location {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #aeaeae;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .tagline {
  font-size: 20px;
  color: #d6ac85;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* КНОПКА */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #d6ac85;
  color: #d6ac85;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #d6ac85;
  color: #0a0a0a;
}

/* НАПИТКИ ШАХМАТНЫЙ ПОРЯДОК */
.drinks {
  padding: 0;
}

.drink-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid #1a1a1a;
}

.drink-row.reverse {
  direction: rtl;
}

.drink-row.reverse > * {
  direction: ltr;
}

.drink-img {
  overflow: hidden;
}

.drink-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.drink-img img:hover {
  transform: scale(1.03);
}

.drink-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  background-color: #0a0a0a;
}

.drink-text h3 {
  font-size: 36px;
  font-weight: 400;
  color: #d6ac85;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.drink-text p {
  font-size: 17px;
  color: #aeaeae;
  line-height: 1.9;
  max-width: 340px;
}

/* ФУТЕР */
footer {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid #1a1a1a;
}

footer a {
  color: #aeaeae;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d6ac85;
}

/* =====================
   MOBILE ADAPTATION
   ===================== */

@media (max-width: 768px) {

  /* HERO */
  .hero {
    min-height: 100svh;
    background-position: center center;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }

  .hero .location {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 1.2rem;
  }

  .hero .tagline {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.75;
  }

  .btn {
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  /* DRINK ROWS — stack vertically, image on top, text below */
  .drink-row,
  .drink-row.reverse {
    display: flex;
    flex-direction: column;
    direction: ltr;
    min-height: unset;
    border-bottom: 1px solid #1a1a1a;
  }

  .drink-row .drink-img,
  .drink-row.reverse .drink-img {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
  }

  .drink-row .drink-img img,
  .drink-row.reverse .drink-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .drink-text {
    padding: 2rem 1.5rem;
    text-align: left;
    width: 100%;
  }

  .drink-text h3 {
    font-size: 26px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
  }

  .drink-text p {
    font-size: 15px;
    line-height: 1.75;
    max-width: 100%;
    color: #aeaeae;
  }

  /* FOOTER */
  footer {
    padding: 2rem 1.5rem;
  }

  footer a {
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero .tagline {
    font-size: 15px;
  }

  .drink-row .drink-img,
  .drink-row.reverse .drink-img {
    height: 220px;
  }

  .drink-text {
    padding: 1.5rem 1.25rem;
  }

  .drink-text h3 {
    font-size: 22px;
  }
}