* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2d2d2d;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER / MENU */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #b76ea6;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
}

nav a:hover {
  color: #b76ea6;
}

/* HOMEPAGE HERO / SLIDESHOW */

.hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  transition: background-image 1s ease-in-out;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* BUTTONS */

.button,
.button-small {
  display: inline-block;
  background-color: #b76ea6;
  color: #ffffff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.button-small {
  padding: 10px 16px;
}

.button:hover,
.button-small:hover {
  background-color: #912f8f;
  color: #ffffff;
}

.button.secondary {
  background-color: transparent;
  border: 2px solid white;
  margin-left: 10px;
}

.button.secondary:hover {
  background-color: white;
  color: #b76ea6;
}

/* PAGE SECTIONS */

.section {
  padding: 70px 0;
}

.section.light {
  background-color: #f8f2ee;
}

.section h1 {
  font-size: 42px;
  color: #b76ea6;
  margin-bottom: 20px;
}

.section h2 {
  font-size: 34px;
  color: #b76ea6;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
}

/* SERVICE CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: #b76ea6;
  margin-top: 0;
}

/* CALL TO ACTION SECTION */

.cta {
  background-color: #b76ea6;
  color: white;
  text-align: center;
  padding: 70px 0;
}

.cta h2 {
  font-size: 36px;
  margin-top: 0;
}

.cta p {
  font-size: 18px;
}

/* GALLERY PAGE */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* CONTACT PAGE */

.contact-box {
  background-color: #f8f2ee;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

form {
  display: grid;
  gap: 14px;
  max-width: 700px;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

button {
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: fit-content;
}

/* FOOTER */

footer {
  background-color: #2d2d2d;
  color: white;
  text-align: center;
  padding: 35px 0;
  font-size: 14px;
}

footer p {
  margin: 8px 0;
}

/* MOBILE RESPONSIVE DESIGN */

@media screen and (max-width: 768px) {
  .nav {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero {
    padding: 90px 0;
    min-height: 440px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .button.secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .section h1 {
    font-size: 34px;
  }

  .section h2 {
    font-size: 28px;
  }
 .about-small-photo {
  width: 100%;
  max-width: 500px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 25px auto;
}