body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #FFFFFF;
  color: #000000;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 12px 32px;
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
  width: 180px;
  max-width: 90vw;
  height: auto;
  display: block;
  margin: 0;
}
.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-family: 'Poppins', Arial, sans-serif;
  transition: color 0.2s;
}
.nav a:hover {
  color: #DE6E27;
}
.hero {
  background: linear-gradient(90deg, #FECA1F 60%, #DE6E27 100%);
  color: #000000;
  padding: 64px 8vw 48px 8vw;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-family: 'Genty', 'Gentry Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.btn-primary {
  background: #000000;
  color: #FECA1F;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #DE6E27;
  color: #FFFFFF;
}
section {
  padding: 56px 8vw 32px 8vw;
}
.about h2, .services h2, .contact h2 {
  font-family: 'Genty', 'Gentry Sans', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #DE6E27;
}
.about p {
  font-size: 1.1rem;
  max-width: 600px;
}
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.service-item {
  background: #FECA1F;
  border-radius: 18px;
  padding: 32px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
}
.service-item h3 {
  font-family: 'Genty', 'Gentry Sans', Arial, sans-serif;
  color: #000000;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 1rem;
}
.contact form {
  max-width: 400px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #DE6E27;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  resize: none;
}
.contact textarea {
  min-height: 90px;
}
.contact button {
  align-self: flex-start;
}
#formMsg {
  margin-top: 8px;
  font-size: 1rem;
  color: #DE6E27;
}
.footer {
  background: #000000;
  color: #FECA1F;
  text-align: center;
  padding: 24px 0 16px 0;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-social {
  margin-top: 10px;
  font-size: 1.1rem;
}
.footer-social a {
  color: #222;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #DE6E27;
}
@media (max-width: 900px) {
  .services .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .header, .hero, section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    align-items: center;
    padding: 16px 8px 8px 8px;
  }
  .logo {
    margin: 0 auto 12px auto;
    width: 120px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .about h2, .services h2, .contact h2 {
    font-size: 1.3rem;
  }
  section {
    padding: 36px 4vw 20px 4vw;
  }
}

/* Gallery styles */
#gallery {
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
}
#gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  min-height: 120px;
}
.gallery-container img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.gallery-container img:hover {
  transform: scale(1.05);
}
#gallery p {
  color: #888;
  font-size: 1.1rem;
  width: 100%;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.gallery-modal.open {
  display: flex;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  background: #fff;
  padding: 8px;
}
.gallery-modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  text-shadow: 0 2px 8px #000;
}

.contact-social {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
.contact-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff7f0;
  color: #DE6E27;
  border-radius: 24px;
  padding: 8px 18px 8px 12px;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(222,110,39,0.07);
  border: 1.5px solid #fde3c2;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.contact-social a svg {
  margin-right: 6px;
  min-width: 20px;
  min-height: 20px;
}
.contact-social a:hover {
  background: #DE6E27;
  color: #fff;
  border: 1.5px solid #DE6E27;
}
.contact-social a:hover svg path {
  fill: #fff;
} 

