* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Georgia', serif;
  background-color: #fefaf5;
  color: #111;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 2rem 4rem;
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo img {
  height: 40px;
}
.logo img:hover{
  transform: scale(1.05);
  transition: all 0.3s ease;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  position: relative;
}
nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
}

.fullscreen-bg{
    width: 100vw;
    background-color: #FAF8F2;
}
.contact-overlay {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 3rem;
  text-align: center;
  color: white;
  margin-top: -400px;
}
.contact-overlay h1 {
  font-size: 5rem;
  font-family: andora;
  font-style: normal;
  font-weight: normal;
}
.contact-overlay p {
  font-size: 2.5rem;
  margin: 0 auto 3rem;
    font-family: andora;
  font-style: normal;
  font-weight: normal;
}

/* MAP AREA */
.map-box {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  justify-content: right;
  text-align: right;
}
.map-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.map-info {
  position: absolute;
  top: 20%;
  right: 0%;
  background: #292A29;
  color: #fff;
  padding: 2rem;
  max-width: 300px;

}
.map-info h4 {
  font-size: 0.6rem;
  margin-bottom: 0.5rem;
  text-align: right;
}
.map-info p {
  font-size: 0.6rem;
  line-height: 1.5;
  text-align: right;
}

/* FOOTER */
footer {
  background: #292A29;
  padding: 2rem;
  text-align: left;
}
.footer-content {
  max-width: 440px;
  margin-left: 130px;
}
.contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 0.3rem;
}
.footer-line {
  border: none;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  width: 1680px;
  margin-bottom: 1rem;
  margin-left: -160px;
}
footer p {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #ccc;
}

/* FONT */
@font-face {
  font-family: andora;
  src: url('fonts/Andora\ Modern\ Serif.otf');
  font-style: normal;
  font-weight: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
