/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  color: #0d1f0c;
  scroll-behavior: smooth;
  background-color: #228B22;
}

/* Custom Font */
@font-face {
  font-family: 'Thiccy Thin Flair';
  src: url('Thiccythinflair-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Slim Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.3);
  padding: 5px 0;
  z-index: 1000;
}
.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
.navbar li {
  margin: 0 15px;
}
.navbar a {
  font-size: 0.7rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #ddd;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo {
  max-width: 28%;
  width: auto;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.6));
}

/* Scroll Arrow */
.scroll-arrow {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Services Section */
.gallery-section {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* First row with decorative stack */
.service-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Services grid */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 65%;
}
.service-item {
  text-align: center;
}
.service-item h3 {
  margin-top: 10px;
  color: #0d1f0c;
  font-size: 1.4rem;
  font-family: 'Thiccy Thin Flair', Arial, sans-serif;
}
.service-item img {
  width: 61%;
  height: auto;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.service-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Decorative stacked images */
.decorative-stack {
  display: flex;
  justify-content: center; /* centers the images horizontally */
  flex-wrap: wrap;         /* allows wrapping on smaller screens */
  gap: 20px;
  flex: 1 1 50%;
}

.decorative-stack img {
  width: 30%;              /* two images side by side with a small gap */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* Contact Us Section */
.services {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #0d1f0c;
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto 40px auto;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #0d1f0c;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}
.contact-form button {
  padding: 12px;
  background-color: #228B22;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background-color: #196619;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-links img {
  width: 40px;
  height: 40px;
}

/* Footer */
footer {
  background-color: #196619;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #0d1f0c;
}

/* Responsive */
@media (max-width: 992px) {
  .service-row {
    flex-direction: column;
    align-items: center;
  }
  .services-grid, .decorative-stack {
    flex: 1 1 100%;
  }

}
@media (max-width: 768px) {
  .hero-logo {
    max-width: 70%;
  }
  .navbar a {
    font-size: 0.6rem;
  }
  .scroll-arrow {
    font-size: 1.5rem;
  }
}
