* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  background-color: #061C3D;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
}


  .logo img {
  height: 80px;

  padding: 5px 0.1px;
}
 

.section {
  padding: 60px;
  text-align: center;
}


.section h1 {
  text-align: left;
  margin-left: 10%;
}


.line {
  width: 80%;
  height: 1px;
  background: #ccc;
  margin: 20px auto 40px auto;
}


.btn {
  background: #C41010;
  padding: 12px 30px;
  border-radius: 10px;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-top: 20px;
}

.btn-light {
  background: #ccc;
  color: black;
  border-radius: 20px;
  padding: 10px 25px;
  margin: 10px;
}


.hero {
  position: relative;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.133);
}

.hero-text {
  position: absolute;
  text-align: center;
}

.hero h1 {
  font-size: 118px;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 10px rgba(0,0,0,10);
}

.hero h2 {
  font-size: 40px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,10);
}


.image-small {
  width: 40%;
  margin: 40px auto;
}



#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 80%;
}


form {
  background: #ddd;
  padding: 30px;
  border-radius: 20px;
  color: black;
  width: 300px;
  margin: auto;
}

input, textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  border: none;
}


.map {
  width: 60%;
  margin: 30px auto;
}


footer {
  background: black;
  padding: 40px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: left;
}


@media(max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .image-small {
    width: 90%;
  }

  .map {
    width: 90%;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 40px auto;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}