@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Homemade+Apple&family=Oooh+Baby&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --primary-color: #1184a73d;
  --secondary-color: #837c6b52;
  --white-color: #0e0505;
  --font-size-m: 16px;
  --border-radius: 8px;
}
body {
  font-family: sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 20px;
  background: lightcyan;
}

h2 {
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: black;
  text-align: center;
  margin-bottom: 10px;
}
.restaurants {
  font-family: "homemade apple", cursive;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
  height: 40%;
  border-radius: var(--border-radius);
}

.section-content {
  margin: 0 auto;
  padding: 0 20x;
  max-width: var(--site-max-width);
}

/*Navbar Styling*/
header {
  background: var(--primary-color);
  width: 100%;
  z-index: 5;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.logo-text {
  font-family: "Homemade Apple", cursive;
}

/* Logo is an anchor outside .nav-menu; ensure its link text is the logo color */
header .navbar > a.nav-link {
  color: var(--white-color);
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
}
.navbar .nav-menu .nav-link {
  color: var(--white-color);
  padding: 10px 18px;
  font-size: var(--font-size-m);
  border-radius: var(--border-radius);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.lifestyle-header {
  font-family: "Boldonse", cursive;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
.lifestyle-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.footer {
  background: lightcyan;
  color: var(--white-color);
  text-align: center;
  padding: 20px;
}
