/* Base Styles */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: black;
  color: gold;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: black;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/Golden M Keyhole Logo Design.png') no-repeat center center;
  background-size: contain;
  opacity: 0;
  animation: fadeInLogo 5s ease-in forwards;
  z-index: 0;
}

@keyframes fadeInLogo {
  to {
    opacity: 0.2;
  }
}

.tagline {
  font-size: 2em;
  z-index: 1;
  color: gold;
  opacity: 0;
  animation: fadeInText 5s ease-in forwards;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

/* Navigation */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: gold;
  cursor: pointer;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.hamburger.hide {
  opacity: 0;
  pointer-events: none;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 20vw;
  height: 100vh;
  background-color: black;
  border-right: 2px solid gold;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
  z-index: 9998;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateX(-100%);
  opacity: 0;
}

.side-menu.show {
  transform: translateX(0);
  opacity: 1;
}

.menu-header {
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: gold;
}

.side-menu a,
.side-menu button {
  color: gold;
  background: none;
  border: none;
  text-align: left;
  padding: 0.3rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
}

.access-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: gold;
  opacity: 0.75;
}

.close-btn {
  font-size: 1.5rem;
  color: gold;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #111;
  border: 1px solid gold;
  padding: 2rem;
  color: gold;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: gold;
  cursor: pointer;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: gold;
  opacity: 0.6;
}

/* Hidden Class */
.hidden {
  display: none !important;
}
