* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  color: #1a1a1a;
  background: #f6f3ee;
  line-height: 1.6;
}

.social a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social a:hover {
  color: #588157;
}

/* HEADER */

header {
  background: #121212;
  color: white;
  padding: 20px 40px;
  border-bottom: 2px solid #3a5a40;
}
/* Header nav layout */
nav {
  display: flex;
  justify-content: space-between; /* left vs right blocks */
  align-items: center;
  padding: 10px 40px;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    padding: 10px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-social {
    position: absolute;
    top: 70px;
    right: 0;
    background: #121212;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #2a2a2a;
  }

  .nav-social.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .nav-links a {
    margin: 0;
    font-size: 18px;
  }

  .social a {
    font-size: 16px;
  }
}

/* Logo + Title */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-avatar {
  width: 100px; /* logo size */
  height: 100px; /* logo size */
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eaeaea;
  transition: transform 0.2s ease;
}

.logo-avatar:hover {
  transform: scale(1.1);
}

.logo-container h1 {
  font-size: 40px;
  color: #eaeaea;
  margin: 0;
}

/* Nav + social on the right */
.nav-social {
  display: flex;
  align-items: center;
  gap: 30px; /* space between nav links and social */
}

/* Nav links */
.nav-links a {
  color: #eaeaea;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
}

.nav-links a:hover {
  color: #588157; /* moss accent */
}

/* Social */
.social a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social a:hover {
  color: #588157;
}

/* Responsive */
@media (max-width: 700px) {
  .logo-avatar {
    width: 40px;
    height: 40px;
  }
  .logo-container h1 {
    font-size: 20px;
  }
  .nav-links a {
    font-size: 14px;
    margin-left: 12px;
  }
  .social a {
    font-size: 12px;
  }
  nav {
    padding: 10px 20px;
  }
}
/* HERO */

.hero {
  background: linear-gradient(135deg, #121212, #1f2a24);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #6b4f3b;
  color: white;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s;
}

.button:hover {
  background: #3a5a40;
}

/* SECTIONS */

.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #ece7e1;
}

/* SERVICE CARDS */

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 260px;
  border: 1px solid #e3ded7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* GALLERY */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 40px auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-track a {
  flex: 0 0 auto;
}

.carousel-track img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #121212;
  color: white;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

@media (max-width: 700px) {
  .carousel-track img {
    width: 200px;
    height: 160px;
  }
}

/* FORM */

form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;

  select {
    padding: 12px;
    border: 1px solid #d8d3cb;
    border-radius: 6px;
    font-size: 16px;
    background: white;
  }
}

input,
textarea {
  padding: 12px;
  border: 1px solid #d8d3cb;
  border-radius: 6px;
}

button {
  background: #3a5a40;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #1f2a24;
}

/* FOOTER */

footer {
  background: #121212;
  color: #eaeaea;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #3a5a40;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 5px;
  transition: color 0.2s ease;
}

.legal {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

.legal h3 {
  margin-top: 30px;
}

.footer-social a:hover {
  color: #588157; /* moss accent */
}

@media (max-width: 700px) {
  .footer-social a {
    font-size: 12px;
  }
}
