* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  font-size: 1.5rem;
}
header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 1rem;
  transition: color 0.3s;
}
header nav a:hover {
  color: #c59d5f;
}
header #menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

.hero {
  background: url("https://images.unsplash.com/photo-1517832606294-5bb0e9ce32e0?auto=format&fit=crop&w=1350&q=80") no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero h2 {
  font-size: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

section {
  padding: 80px 60px;
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.services .service {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.services .service:hover {
  transform: translateY(-5px);
}
.services .service h3 {
  color: #c59d5f;
  margin-bottom: 15px;
}

#gallery {
  background-color: #fff;
  padding: 80px 60px;
  text-align: center;
}
#gallery h2 {
  margin-bottom: 40px;
  color: #c59d5f;
}
#gallery .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#gallery .gallery img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#gallery .gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.about-text {
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.6;
}

/* Utility class: apply to any <img> to force consistent sizing */
.fixed-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}

#socials {
  background-color: #f4f4f4;
  padding: 60px 40px;
  text-align: center;
}
#socials h2 {
  color: #c59d5f;
  margin-bottom: 30px;
}
#socials .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#socials .social-links a {
  font-size: 1.8rem;
  color: #333;
  transition: color 0.3s, transform 0.3s;
}
#socials .social-links a:hover {
  color: #c59d5f;
  transform: scale(1.1);
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }
  header nav {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
  }
  header nav a {
    margin: 10px 0;
  }
  header #menu-btn {
    display: block;
  }
  header.active nav {
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */