* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background: #faf7f2;
  color: #222;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #faf7f2;
  border-bottom: 1px solid #e9e3db;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #216869;
}

.logo a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-right: 25px;
}

.nav-links a {
  color: #216869;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1a524f;
}

.hero {
  position: relative;
  background: url('../images/images/bg.jpg') center/cover no-repeat;
  padding: 150px 20px;
  text-align: center;
  color: #fff;
  margin-top: 80px;
}

.hero::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: auto;
}

.tag {
  background: #216869;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 15px;
}

.hero h1 {
  font-size: 2.7rem;
  margin: 20px 0 10px;
}

.hero p {
  color: #e8e8e8;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  background: #216869;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
}

.flex-row {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  align-items: stretch;
}

.card,
.menu-card,
.info-card {
  background: #ffffff;
  border: 1px solid rgba(233, 227, 219, 0.9);
  border-radius: 18px;
  padding: 28px 30px;
  flex: 1 1 320px;
  margin: 12px;
}

.card h2,
.menu-card h3,
.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 700;
}

.card p,
.menu-card p,
.info-card p,
.card .sub,
.menu-card li small,
.info-card small {
  color: #6b6b6b;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}

.sub {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #7b7b7b;
  font-weight: 300;
}

.tags {
  display: flex;
  margin-top: 15px;
}

.tags span {
  background: #f1ede6;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 14px;
  margin: 5px 10px 0 0;
  color: #444;
  font-weight: 500;
}

.menu-card ul {
  list-style: none;
  margin-top: 8px;
  padding: 0;
  width: 100%;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(220, 214, 201, 0.7);
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card li strong {
  display: block;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.menu-card li span {
  color: #00796b;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
  font-size: 1rem;
}

.note {
  color: #6b6b6b;
  margin-top: 18px;
  font-size: 0.95rem;
  text-align: left;
}

.info-section {
  padding: 60px 40px;
  background: #fffdf8;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.info-card li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(220, 214, 201, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b6b6b;
  font-weight: 300;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 800;
  color: #111;
}

.map {
  flex: 1 1 320px;
  margin: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(233, 227, 219, 0.95);
}

.site-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #e9e3db;
  font-size: 15px;
  color: #6b6b6b;
  background: #faf7f2;
}

.site-footer a {
  color: #216869;
}

.info-card strong {
  font-weight: 900;
  color: #111;
}

@media (max-width: 900px) {
  .flex-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    padding: 90px 20px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .nav-links {
    justify-content: center;
  }

  .nav-links li {
    margin-right: 12px;
    margin-bottom: 8px;
  }
}

@media (min-width: 1300px) {
  .card,
  .menu-card,
  .info-card {
    padding: 32px 36px;
    border-radius: 20px;
  }
}
@media (max-width: 360px) {
  body {
    transform: scale(0.82);
    transform-origin: top center;
  }
}

@media (max-width: 420px) {
  body {
    transform: scale(0.88);
    transform-origin: top center;
  }
}

@media (max-width: 500px) {
  body {
    transform: scale(0.93);
    transform-origin: top center;
  }
}

@media (max-width: 768px) {
  body {
    transform: scale(0.97);
    transform-origin: top center;
  }
}

@media (min-width: 1600px) {
  body {
    transform: scale(1.08);
    transform-origin: top center;
  }
}

@media (min-width: 2000px) {
  body {
    transform: scale(1.18);
    transform-origin: top center;
  }
}

