/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar ul li a {
  text-decoration: none;
  color: #333;
}
.icons a {
  margin-left: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
}

/* HERO */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}
.hero h1 {
  font-size: 2rem;
  margin: 1rem 0;
}
.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* BENEFITS */
.benefits {
  display: flex;
  justify-content: space-around;
  padding: 2rem 5%;
  background: #f8f8f8;
}
.benefit {
  text-align: center;
  font-size: 0.9rem;
}

/* GALLERY */
.gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #111;
  color: #eee;
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
footer .footer-section h3 {
  margin-bottom: 1rem;
}
footer ul {
  list-style: none;
}
footer ul li a {
  color: #bbb;
  text-decoration: none;
}
