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

body {
  background-color: #fff9f9;
  display: relative;
  padding-top: 70px;
}

.section {
  padding: 50px 200px;
  color: black;
}
.section .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
}
.section .section-title {
  font-size: 42px;
  color: #344f4f;
  line-height: 1;
}
.section .section-subtitle {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: normal;
}
.section.green {
  background-color: #344f4f;
  color: white;
}
.section.green .section-title {
  color: white;
}
.section.green .section-subtitle {
  color: #ddd;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 20px 200px;
  background-color: #344f4f;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.navbar .brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 10px;
}
.navbar .brand img {
  height: 100%;
}
.navbar .brand img:last-child {
  height: 75%;
}
.navbar .nav-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
.navbar .nav-links a:hover {
  color: #bc6665;
}
.navbar .nav-links a.active {
  color: #bc6665;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  max-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/src/hero-bg.jpg") no-repeat center center;
}
.hero .logo {
  height: 25vh;
}
.hero .button {
  background-color: white;
  padding: 10px 20px;
  border-radius: 999px;
  color: black;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.hero .button:hover {
  background-color: #344f4f;
  color: white;
}

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#services .service-list {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
}
#services .service-list .service-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}
#services .service-list .service-item h3 {
  font-size: 24px;
  color: #344f4f;
  margin-bottom: 10px;
}
#services .service-list .service-item img {
  width: 100%;
  margin-bottom: 20px;
}
#services .service-list .service-item p {
  font-size: 16px;
  color: #333;
}

#gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
#gallery .gallery-grid .image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  overflow: hidden;
}
#gallery .gallery-grid .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
#gallery .gallery-grid .image:hover img {
  transform: scale(1.05);
}
#gallery .gallery-grid .empty {
  opacity: 0.8;
  border: 2px dashed white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#gallery .gallery-grid .empty i {
  font-size: 20px;
  background-color: white;
  color: #344f4f;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
#about .info {
  width: 25%;
}
#about .info p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}
#about .divider {
  width: 1px;
  background-color: #344f4f;
}
#about img {
  width: 25%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#testimonials .testimonial-list {
  display: flex;
  flex-direction: row;
  gap: 50px;
  width: 100%;
}
#testimonials .testimonial-list .testimonial-item {
  flex: 1;
}
#testimonials .testimonial-list .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
#testimonials .testimonial-list .testimonial-item h3 {
  margin-top: 10px;
  font-weight: bold;
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
#contact form .input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#contact form .row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#contact form label {
  margin-bottom: 5px;
  color: #333;
}
#contact form input,
#contact form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
#contact form button {
  background-color: #344f4f;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#contact form button:hover {
  background-color: #bc6665;
  color: white;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #344f4f;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 0px;
  color: white;
}
.footer .socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}
.footer .socials a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s;
}
.footer .socials a:hover {
  color: #bc6665;
}/*# sourceMappingURL=style.css.map */