body {
  margin: 0;
  font-family: sans-serif;
  background: #f9f7f4;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  align-items: center;
  z-index: 1;
}

.logo {color: #57220F;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center; }

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #57220F;
}

.cta {
  background: #989335;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
}

/* HERO */
.hero {
  display: flex;
  padding: 60px;
  align-items: center;
}

.hero-left h1 {
  color: #57220F;
  font-size: 48px;
}

.primary {
  background: #57220F;
  color: white;
  padding: 10px 20px;
}

/* IMAGE STACK */
.image-stack {
  position: relative;
  width: 300px;
  height: 300px;
}

.image-stack img {
  position: absolute;
  width: 100%;
  border-radius: 20px;
  transition: 0.5s;
  opacity: 0;
}

.image-stack img.active {
  opacity: 1;
  transform: scale(1.1);
}

/* FILTER */
.filters {
  padding: 50px;
  text-align: center;
}

.chips button {
  margin: 10px;
  padding: 10px;
  background: #989335;
  color: white;
  border: none;
  border-radius: 20px;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.item {
  padding: 30px;
  background: white;
  border-radius: 10px;
}

/* SERVICES */
.services {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 50px;
}

.card {
  background: #57220F;
  color: white;
  padding: 50px;
  border-radius: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* WORK */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  width: 400px;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
}

/* TESTIMONIAL */
.testimonials {
  text-align: center;
  padding: 50px;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 50px;
}

.contact input, textarea {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 250px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #57220F;
  color: white;
}

/* POPUP */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.popup-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

/* MOBILE */
.bottom-nav {
  display: none;
}

@media(max-width:768px){
  .hero {
    flex-direction: column;
  }

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: space-around;
    background: #57220F;
    color: white;
    padding: 10px;
  }
}


.carousel {
  position: relative;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel img.active {
  opacity: 1;
}

/* TESTIMONIAL */
.testimonial {
  position: absolute;
  opacity: 0;
  transition: 0.6s;
  left: 0;
  right: 0;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

/* DOTS */
.dot {
  width: 10px;
  height: 10px;
  background: #ffffff50;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* INPUT FLOAT */
.input-field {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  outline: none;
}

.input-field:focus + label,
.input-field:valid + label {
  top: -10px;
  font-size: 12px;
  color: #989335;
}

label {
  position: absolute;
  left: 12px;
  top: 12px;
  background: white;
  padding: 0 5px;
  color: gray;
  transition: 0.3s;
  pointer-events: none;
}