:root {
  --primary-purple: #9b4d96;
  --light-purple: #c77dbb;
  --gold-accent: #d4a017;
  --background-light: #f7f5f9;
  --text-dark: #333333;
}

/* RESET */
body {
  margin: 0;
  font-family: Arial;
  background: var(--background-light);
  color: var(--text-dark);
}

/* HEADER */
header {
  background: var(--primary-purple);
  color: white;
  text-align: center;
  padding: 20px;
}

/* NAVBAR */
nav {
  background: var(--light-purple);
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  justify-content: center;
}

.nav-links a {
  margin: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* HAMBURGER */
.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  text-align: right;
  padding-right: 15px;
}

/* HERO BANNER */
.hero {
  position: relative;
  background: url('images/main-banner.png') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* OVERLAY FIX */
.hero::before,
.footer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* TEXT ABOVE OVERLAY */
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 40px;
}

.hero-text p {
  font-size: 20px;
}

/* FOOTER BANNER */
.footer-banner {
  position: relative;
  background: url('images/footer-banner.png') no-repeat center/cover;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.footer-banner h2 {
  position: relative;
  z-index: 2;
  font-size: 28px;
}

/* SECTION */
section {
  padding: 20px;
}

/* BUTTON */
button {
  background: var(--gold-accent);
  color: white;
  padding: 10px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--light-purple);
    text-align: center;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  header h1 {
    font-size: 22px;
  }

  header p {
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  section {
    padding: 15px;
    font-size: 14px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
