:root {
  --flame: #e15827;
  --coffee: #4b302d;;
  --lightbrown: #ccb39A;
  --olive: #898826;
  --blue: #174a71;
  --copper: #b16940;;
  --lightgray: #e7f2f6;
  --lightyellow2:  #fffdd2;
  --goldenbrown: #8E712C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: var(--lightgray);
  color: var(--olive);
  font-family: "Be Vietnam Pro", sans-serif;
  line-height: 1.6;
  font-size: 1.05rem;
  overflow-x: hidden;
}

main {
  margin: 0 auto 3rem;
  padding: 0;
  
}

h2 {
  color: var(--coffee);
  font-size: 4rem;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
h3{
  color: var(--blue);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  margin-left: 5rem;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1rem;
}

.nav-buttons a {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 00;
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  background: none;
  border-radius: 4px;
  padding: 0.2rem 0.7rem;
  transition: background 0.2s, color 0.2s;
}

.nav-buttons a:hover {
  background: var(--lightyellow2);
  color: var(--copper);
}

.nav-buttons a.active {
  background: var(--lightyellow2);
  color: var(--flame);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

hr {
  border: none;
  border-top: 5px solid var(--lightyellow);
  width: 100%;
}

.one {
  border: none;
  border-top: 5px solid var(--olive);
  width: 100%;
}

.two {
  border: none;
  border-top: 10px dotted var(--flame);
  width: 100%;
}
.three {
  border: none;
  border-top: 15px solid var(--cream);
  width: 100%;
}




p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.top-strip {
  width: 100%;
  height: 15px;
  background-color: var(--pink);
}
#gallery {
  margin: 0 auto;      /* centers container */
  max-width: 2000px;   /* cap width so it doesn’t stretch */
  padding: 2rem;       /* spacing around */
}


@media (max-width: 768px) {
  .contact-columns {
    grid-template-columns: 1fr;
  }
  .photos img {
    flex: 1 1 100%;
  }
}
