* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f7f9fb;
}

h2 {
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}


header {
  position: sticky;
  top: 0;
  background: rgba(0, 60, 100, 0.9);
  color: white;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

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

.hero {
  background: url('img/hero.png') no-repeat center center;
  background-size: cover;
  height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}



.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

section {
  padding: 60px 0;
}

.menu-list {
  list-style: square inside;
  padding-left: 1rem;
  font-size: 18px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 280px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  background: #003c64;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #003c64;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    display: none;
  }

  nav ul.show {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}
