body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f5ecdf;
  color: #3a3a3a;
}

/* Center all headers across the site */
h1, h2, h3, h4 {
  text-align: center;
}

.hero {
  text-align: center;
  padding: 2rem 1rem 2rem 1rem;
  background: #f5ecdf;
}

.color-palette {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.color {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-block;
}

.color1 { background: #ee6d5b; }
.color2 { background: #d69a52; }
.color3 { background: #71a195; }
.color4 { background: #d5b190; }

main {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
  background: #fff8f0;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(200, 155, 60, 0.06);
  padding: 2rem 1.5rem;
}
section h3 {
  color: #ee6d5b;
  margin-top: 0;
}
ul {
  padding-left: 1.2rem;
}
footer {
  text-align: center;
  padding: 1.5rem 0;
  color: #a89b8c;
  background: #f5ecdf;
  font-size: 1rem;
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: #a89b8c;
}

.social-icon:hover svg {
  fill: #71a195;
}

a {
  color: #71a195;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .color {
    width: 40px;
    height: 40px;
  }
  section {
    padding: 1rem 0.5rem;
  }
}
.menu {
  position: relative;
  padding: 1rem;
  background: #f5ecdf;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 120px;
  height: auto;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}
.nav-links li {
  display: inline;
}
.nav-links a {
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  text-decoration: underline;
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media (max-width: 600px) {
  .menu {
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }
  
  .logo img {
    width: 80px;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(245, 236, 223, 0.95);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
}
.gallery {
  margin-top: 2rem;
}
.gallery h3 {
  color: #ee6d5b;
  margin-bottom: 1rem;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.gallery-item {
  flex: 1 1 calc(33.333% - 1rem);
  background: #fff8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(200, 155, 60, 0.06);
  text-align: center;
  border: none;
}
.gallery-item:nth-child(1) { background: #ee6d5b; }
.gallery-item:nth-child(2) { background: #d69a52; }
.gallery-item:nth-child(3) { background: #71a195; }
.gallery-item h4 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin: 0 0 0.5rem 0;
}
.gallery-item p {
  color: inherit;
  margin: 0;
  background: #fff8f0;
  border-radius: 1rem;
  padding: 0.75rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

/* Ensure consistent line spacing for all content */
.about-section div,
.about-section p,
.homepage-container .about-section div,
.homepage-container .about-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-section div:last-child,
.about-section p:last-child,
.homepage-container .about-section div:last-child,
.homepage-container .about-section p:last-child {
  margin-bottom: 0;
}

/* Ensure consistent spacing between sections */
.homepage-container {
  margin-bottom: 3rem;
}

.homepage-container:last-child {
  margin-bottom: 0;
}

/* Ensure consistent heading spacing */
.about-section h2,
.homepage-container .about-section h2 {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}