body {
  background: #FFF8F8;
  color: #6B2B2B;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #F7C6C6;
  box-shadow: 0 2px 8px rgba(183, 106, 106, 0.05);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
.logo img {
  height: 60px;
  border-radius: 16px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #6B2B2B;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #B76A6A;
}
.social-links a img {
  width: 28px;
  height: 28px;
  margin-left: 0.5rem;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px #b76a6a33);
}

.hero {
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  color: #B76A6A;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.3rem;
  color: #6B2B2B;
}

.gallery {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 8px #b76a6a22;
  background: #fff;
}

.testimonials {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1rem;
}
.testimonials form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #F7C6C6;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px #b76a6a22;
  margin-bottom: 2rem;
}
.testimonials label {
  font-weight: bold;
  color: #6B2B2B;
}
.testimonials input[type="text"],
.testimonials textarea {
  padding: 0.7rem;
  border: 1px solid #B76A6A;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #6B2B2B;
}
.testimonials textarea {
  min-height: 90px;
  resize: vertical;
}
.testimonials button {
  background: #B76A6A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonials button:hover {
  background: #6B2B2B;
}
.testimonials-list blockquote {
  background: #F7C6C6;
  border-left: 6px solid #B76A6A;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-style: italic;
  color: #6B2B2B;
}

.contact {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #F7C6C6;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px #b76a6a22;
}
.contact label {
  font-weight: bold;
  color: #6B2B2B;
}
.contact input[type="text"],
.contact input[type="email"],
.contact input[type="file"],
.contact select,
.contact textarea {
  padding: 0.7rem;
  border: 1px solid #B76A6A;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #6B2B2B;
}
.contact textarea {
  min-height: 90px;
  resize: vertical;
}
.contact button {
  background: #B76A6A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #6B2B2B;
}

.contact select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B2B2B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact select:focus,
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #6B2B2B;
  box-shadow: 0 0 0 2px rgba(107, 43, 43, 0.1);
}

.contact ::placeholder {
  color: #B76A6A;
  opacity: 0.6;
}

.thankyou {
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}
.thankyou h1 {
  color: #B76A6A;
  font-size: 2.2rem;
}
.thankyou .button {
  display: inline-block;
  margin-top: 2rem;
  background: #B76A6A;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.thankyou .button:hover {
  background: #6B2B2B;
}

footer {
  background: #F7C6C6;
  text-align: center;
  padding: 1rem 0;
  color: #6B2B2B;
  margin-top: 2rem;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
} 