/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   BASE
===================== */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* no scroll on homepage */
}

body {
  font-family: "Century Gothic", Arial, sans-serif;
  background-color: #f2e5e4;
}

/* =====================
   HEADER / NAV
===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;              /* ← CHANGE HEADER HEIGHT HERE */
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  z-index: 20;
}

header a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: color 0.6s ease;
}

/* nav spacing */
nav a {
  margin-left: 32px;
}

/* =====================
   HEADER COLOR MODES
===================== */
header.header-light a {
  color: #f2e5e4;
}

header.header-dark a {
  color: #555555;
}

/* =====================
   HERO / HOMESCREEN
===================== */
.homescreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* slideshow images */
.homescreen img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.5s ease;
}

.homescreen img.active {
  opacity: 1;
}

/* =====================
   page TITLE
===================== */
.page-title {
  position:fixed;
  top: 45%;
  left: 43%;
  font-weight:400;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  z-index: 15;
  transition: color 0.6s ease;
}

.page-title.title-light {
  color: #f2e5e4;
}

.page-title.title-dark {
  color: #555555;
}

/* =====================
   FOOTER
===================== */
footer {
  position: fixed;
  bottom: 20px;
  left: 32px;
  background: transparent;
  z-index: 10;
}

footer p {
  font-size: 12px;
  color: #f2e5e4;
  position: fixed;
  right: 1%;
}