/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Cormorant Garamond', serif;
  background: radial-gradient(circle at top, #7a0000 0%, #0a0000 70%);
  color: #f2e6e6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.9);
  z-index: 999;
}

nav a {
  font-family: 'Cinzel', serif;
  color: #f5dada;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(145deg, #7a0000, #300000);
  border: 1px solid rgba(255,80,80,0.4);
  font-size: 0.75rem;
}

/* HERO */
.hero {
  margin-top: 70px;
  min-height: 520px;
  background: url("../images/flames-bg.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* FLAMES PNGs */
.flames {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flame {
  position: absolute;
  bottom: -40px;
  width: 260px;
}

.flame.left {
  left: -120px;
  transform: scaleX(-1);
}

.flame.right {
  right: -120px;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content img {
  max-width: 90%;
  margin: 10px 0;
}

/* SECTION */
.section {
  padding: 80px 10%;
  text-align: center;
}

/* HEADINGS */
.section h2 {
  font-family: 'Cinzel', serif;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

/* PRIVILEGE BOXES */
.privilege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.box {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(180,0,0,0.4);
  border-radius: 16px;
  padding: 30px;
}

.box ul {
  list-style: none;
}

.box li {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin: 10px 0;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid img {
  width: 100%;
  display: block;
  border: 2px solid rgba(180,0,0,0.4);
}

/* FOOTER */
footer {
  background: #120000;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

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

  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .privilege-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .flame {
    width: 180px;
  }
}
