body {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  background-color: #1c1a17;
  color: #f4f1ea;
  overflow-x: hidden;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  backdrop-filter: blur(4px);
  z-index: 1000;
  box-sizing: border-box;
}

nav .brand {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #e6d6a8;
  text-decoration: none;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #f4f1ea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d3b671;
}

nav a i {
  margin-right: 6px;
}

.nav-cta {
  background: #b89a56;
  color: #1c1a17;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  color: #1c1a17;
  background: #d3b671;
  transform: scale(1.05);
}

/* BURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #f4f1ea;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  nav ul.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    display: block;
    margin: 0.5rem auto;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}

header {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background: url('images/banner.jpg') no-repeat center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  box-sizing: border-box;
}

header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

header h1 {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #f5e6c4;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  margin: 0 1rem;
}

main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
  box-sizing: border-box;
}

main h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #e6d6a8;
  margin-bottom: 1rem;
}

main p {
  line-height: 1.7;
  color: #ddd7ce;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.divider {
  width: 120px;
  height: 3px;
  background: #b89a56;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.cta {
  display: inline-block;
  background: #b89a56;
  color: #1c1a17;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cta:hover {
  background: #d3b671;
  transform: scale(1.05);
}

footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  box-sizing: border-box;
}

footer a {
  color: #d3b671;
  text-decoration: none;
  margin: 0 0.5rem;
  white-space: nowrap;
}

footer a:hover {
  text-decoration: underline;
}