html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
}

body.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrap {
  flex: 1;
}

body {
  margin: 0;
  font-family: "Nunito", "Poppins", sans-serif;
  color: #535252;
  background-color: #fff;
}

h2 {
  color: #B18522;
  margin-bottom: 1rem;
}

header {
  padding: 2rem;
  text-align: center;
}
header h1 {
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 3rem;
  margin: 0;
  color: #535252;
}
header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
header a {
  color: #B18522;
  text-decoration: none;
}
header a:hover {
  color: #8B6A1B;
}

nav {
  display: flex;
  justify-content: start;
  background-color: #FFEBB0;
  border-bottom: 1px solid #eee;
  padding: 0 2rem;
}
nav a {
  padding: 1rem;
  text-decoration: none;
  color: #B18522;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #B18522;
  transition: width 0.3s ease;
}
nav a:hover {
  color: #8B6A1B;
}
nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #8B6A1B;
}
nav a.active::after {
  width: 100%;
}

section {
  margin: 0 auto;
  padding: 2rem;
}

.home {
  /* background-image: url("../assets/images/pexels-arina-krasnikova-6663677.jpg"); */
  background-image: url('../assets/images/pexels-yankrukov-7010966.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 2rem;
}
.home .home-text {
  color: #fff;
  text-align: left;
}
.home .home-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.home .home-text p {
  font-size: 1.2rem;
  max-width: 600px;
}

.cta-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #B18522;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #8B6A1B;
}

.contact-section,
.price-tables-section {
  background-color: #FFF9E6;
}
.contact-section h2,
.contact-section form,
.price-tables-section h2,
.price-tables-section form {
  padding: 0 16px;
}

.card {
  background: #fff;
  border: 1px solid #FFEBB0;
  border-radius: 10px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 2px 6px rgba(177, 133, 34, 0.1);
  text-align: center;
}
.card h3 {
  color: #B18522;
}

form label {
  display: block;
  margin-top: 1rem;
  color: #535252;
}
form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #B18522;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #8B6A1B;
}

footer {
  background: #FFE39B;
  text-align: center;
  padding: 1rem 0.5rem;
  color: #535252;
  border-top: 1px solid #FFEBB0;
}
footer p {
  margin: 0.25rem 0;
}
footer a {
  color: #B18522;
  text-decoration: none;
}
footer a:hover {
  color: #8B6A1B;
}

.price-tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 16px;
  align-items: stretch;
}

.price-category {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(177, 133, 34, 0.15);
  transition: transform 0.3s ease;
  position: relative;
}
.price-category:hover {
  transform: translateY(-5px);
}
.price-category h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.service-icon {
  font-size: 2.5rem;
  color: #B18522;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.category-description {
  color: #666;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #FFEBB0;
}
.price-item:last-child {
  border-bottom: none;
}
.price-item .service {
  color: #535252;
}
.price-item .price {
  font-weight: bold;
  color: #B18522;
}

@keyframes highlightSection {
  0% {
    background-color: rgba(255, 235, 176, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
.highlight-animation {
  animation: highlightSection 2s ease-out;
}

.contact-section {
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.map-container,
.contact-info {
  flex: 1;
  padding: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 12px rgba(177, 133, 34, 0.15);
}

.contact-info {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.contact-info img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #535252;
  margin: 0 0 2rem 0;
}

.contact-info-left {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-right {
  flex: 1;
  min-width: 250px;
}

.contact-details {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .contact-info .contact-info-left,
  .contact-info .contact-info-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=styles.css.map */
