html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #000;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.6rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
header img {
  height: 75px;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}
.nav-socials {
  display: flex;
  margin-left: 1rem;
}
.nav-socials a {
  color: white;
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #e6f0fa;
  justify-content: center;
  padding: 100px 40px;
  background: url('./img/hero.jpeg') no-repeat center center/cover;
  color: white;
}
.hero-text {
  flex: 1 1 50%;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-text p {
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-text a.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #0057b8;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.hero-text a.button:hover {
  background: #003f8c;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}
section {
  padding: 60px 40px 0px;
}
.section-img-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.section-img-text img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}
.about-text p {
  font-size: 1.2rem;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.menu-item {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
}
iframe {
  width: 100%;
  height: 400px;
  border: none;
}
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  margin-top: 40px;
}
.socials a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #00aced;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 0.5rem 1rem;
  }

  .nav-socials {
    margin: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
  }

  header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
  }
}
