* {
  font-family: 'Poppins', sans-serif;
}

body {
  padding-top: 70px;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085') center/cover;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Sections */
.section {
  padding: 70px 20px;
}

.dark {
  background: #222;
  color: #fff;
}

/* Menu */
.menu {
  max-width: 500px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.menu-title {
  margin: 40px 0 15px;
  font-weight: 600;
  text-align: center;
  color: #c59d5f;
}

.menu-item:hover {
  background: rgba(0,0,0,0.03);
}

.menu-size-hint {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.carousel-item {
  padding: 20px 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


/* About */
.about-text {
  max-width: 700px;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.socials i {
  margin: 10px;
  font-size: 20px;
}

/* Navbar Logo */
.navbar-logo {
  height: 42px;
  width: auto;
}

/* Slightly smaller logo on mobile */
@media (max-width: 768px) {
  .navbar-logo {
    height: 36px;
  }
}
