* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f2a26;
  background:
    linear-gradient(rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0.82)),
    url("background.png") center center / cover no-repeat fixed;
}

.container,
main {
  max-width: 760px;
  margin: 250px auto;
  padding: 40px 24px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(60, 40, 20, 0.06);
  backdrop-filter: blur(4px);
}

.logo {
  width: 110px;
  max-width: 40%;
  display: block;
  margin: 0 auto 18px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #3a2d24;
  line-height: 1.15;
  text-align: center;
}

.subtitle {
  margin: 0 0 28px;
  font-size: 17px;
  color: #7c6b5f;
  line-height: 1.6;
  text-align: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 24px;
}

.menu-links a,
.review-button {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;
  color: #3a2d24;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 212, 201, 0.9);
  box-shadow: 0 8px 22px rgba(58, 45, 36, 0.08);
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-links a:hover,
.review-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(58, 45, 36, 0.12);
  background: rgba(255, 248, 241, 0.96);
}

.review-link-wrapper {
  margin: 0 0 34px;
  text-align: center;
}

.bottom-image {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

/* MOBILE - REAL CENTERING */
@media (max-width: 600px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 16px 10px;
  }

  .container,
  main {
    width: 100%;
    margin: 0;
    padding: 28px 18px 32px;
    border-radius: 22px;
    text-align: center;
  }

  .logo {
    width: 110px;
    margin: 0 auto 18px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 14px;
  }

  .subtitle {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 28px;
  }

  .menu-links {
    gap: 16px;
    margin: 26px 0 22px;
  }

  .menu-links a,
  .review-button {
    font-size: 20px;
    padding: 18px 18px;
    border-radius: 16px;
    text-align: center;
  }

  .review-link-wrapper {
    margin: 0 0 24px;
  }

  .bottom-image {
    border-radius: 18px;
  }
}
