/* adlam-display-regular - latin */
/* Variables replaced by static values */
@import url(https://fonts.googleapis.com/css2?family=Kodchasan:wght@100;200;300;400;500;600;700&display=swap);

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
img {
  object-fit: cover;
  display: flex;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #f9fafb;
  color: #111827;
  line-height: 1.6;
  font-family: "Kodchasan", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  color: #3b82f6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.price--text {
  color: #e53935;
  font-weight: 500;
  font-size: 0.8rem;
}
/* Header */
.header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b82f6;
}

.header .nav {
  margin-top: 10px;
}

.header .nav__link {
  margin-right: 20px;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s;
}

.header .nav__link:hover {
  color: #2563eb;
}

/* Sections */
.section {
  padding: 50px 0;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #3b82f6;
  font-weight: 700;
  text-align: center;
}

/* Home section */
.home {
  background: white;
  text-align: center;
}

.home__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.home__desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb;
}

/* Services */
.services {
  background: white;
}

.services__list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.services__item {
  background: #e0e7ff;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  margin: 10px 0;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.services__item h3 {
  margin-bottom: 10px;
  color: #3b82f6;
}

/* Testimonials */
.testimonials {
  background: white;
  padding: 40px 20px;
}

.testimonial {
  font-style: italic;
  background: #f3f4f6;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #3b82f6;
}

/* Contact */
.contact {
  background: white;
  text-align: center;
}

.contact p {
  margin-bottom: 10px;
  font-weight: 600;
}
.contact__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact__container p {
  padding: 1rem;
  background-color: rgba(196, 165, 108, 0.328);
  cursor: pointer;
  border-radius: 10px;
}
.contact__form button:hover {
  background-color: #2563eb;
}

/* Footer */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}
/* works */
.works {
  background: rgba(166, 97, 97, 0.349);
  padding: 2rem 0;
}
.works__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.works__gallery {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.works__gallery-img {
  border-radius: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .services__list {
    flex-direction: column;
    align-items: center;
  }

  .services__item {
    width: 90%;
  }

  .header .nav {
    text-align: center;
    margin-top: 10px;
  }

  .header .nav__link {
    display: inline-block;
    margin: 0 10px 10px 10px;
  }
  .works__gallery-img {
    width: 100%;
    max-width: 300px;
    height: 400px;
  }
}
