:root {
  --bg: #0d0b0a;
  --gold: #a78c5c;
  --parchment: #f4e9d8;
  --stone: #1c1a17;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Canterbury;
  src: url('../fonts/Canterbury.ttf');
}

@font-face {
  font-family: Mordred;
  src: url('../fonts/Mordred.ttf');
}

@font-face {
  font-family: MordredBold;
  src: url('../fonts/Mordred-Bold.ttf');
}

@font-face {
  font-family: FenwickWoodtype;
  src: url('../fonts/FenwickWoodtype.ttf');
}

@font-face {
  font-family: OldLondon;
  src: url('../fonts/OldLondon.ttf');
}

body {
  font-family: 'Cinzel', serif;
  color: var(--parchment);
  overflow-x: hidden;
  background-image: url(../img/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

section {
  max-width: 900px;
  margin: auto;
  padding: 90px 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--gold);
}

.btn {
  padding: 8px 24px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 50px 20px;
  background: #0a0907;
  border-top: 2px solid var(--gold);
}

.scroll-gate {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0d0b0a url('../img/Scroll.png') center/contain no-repeat;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 40px;
  background: rgba(28, 26, 23, 0.8);
  border-bottom: 2px solid var(--gold);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-title {
  color: var(--gold);
  font-size: 1.4rem;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    transform: none;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/Scroll_Open.png) center / cover no-repeat;
    transform: rotate(90deg);
    transform-origin: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    text-align: center;
    width: 70vw;
}

.hero-title {
  color: #000000;
  font-family: OldLondon;
}

.hero-description {
  font-family: MordredBold;
  color: black;
}

.hero-btn {
  display: block;
  width: 100px;
  margin: 0 auto;
  margin-top: 4vw;
  background: url(../img/stamp_small.png) no-repeat;
  background-size: 100px;
  height: 110px;
  text-align: center;
  padding-top: 40px;
  width: 100px;
  border: none;
}
.discord-btn {
  display: block;
  width: 100px;
  margin: 0 auto;
  margin-top: 4vw;
  background: url(../img/discord.png) no-repeat;
  background-size: 100px;
  height: 130px;
  text-align: center;
  padding-top: 40px;
  width: 100px;
  border: none;
}
/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.roadmap-item {
  background: var(--stone);
  padding: 24px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 160, 0.2);
}

.roadmap-title {
  color: var(--gold);
  margin-bottom: 10px;
}

/* About Section */
.about-description {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* Trailer Section */
.trailer-container {
  position: relative;
  padding-top: 56.25%;
}

.trailer-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Newsletter Section */
.newsletter-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Social Section */
.social-icons {
  text-align: center;
  margin-bottom: 20px;
}

.social-icons a {
  margin: 0 10px;
  color: var(--gold);
  font-size: 1.4rem;
}

.social-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Contact Section */
.contact-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.social-embed iframe {
  width: 100%;
  border: none;
  height: 500px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section input,
.form-section textarea {
  padding: 12px;
  font-size: 0.9rem;
  border: none;
}

.form-section button {
  padding: 12px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.form-section button:hover {
  background: #c5a76c;
}
.hero-buttons{
  display: inline-flex;
  align-items: center;
  gap:10vw;
  margin:0 auto;
}
.social-gallery , .social-feed , .trailer-container iframe{
  display:none
}
.trailer-container{
  background: url(../img/comingsoon.jpg) center/contain no-repeat;
}


    /* Desktop */
    @media (min-width: 1921px) {
        .hero-content {
            top: 7vw;
        }
        .hero {
            height: 40vw;
            max-width: 40vw;
        }
        .hero-title {
            font-size: 3vw;
        }
        .hero-description {
            font-size: 1.5vw;
            width: 80%;
            padding-left: 20%;
        }
        #roadmap {
            margin-top: 10vw;
        }
        .hero-btn {
          width: 6vw;
          height: 8vw;
          background-size: 6vw;
          padding-top: 2.3vw;
          font-size: 1vw;
          padding-left:1.5vw;
          margin-top: 3vw;
        }
        .discord-btn {
          width: 6vw;
          height: 8vw;
          background-size: 6vw;
          margin-top: 1vw;
        }
        .hero-buttons{
          display: inline-flex;
          align-items: center;
          gap:8vw;
          margin:0 auto;
        }
        .scroll-gate-img {
          width: 10vw;
          margin-top: 6vw;
        }

        .scroll-gate-btn {
          margin-top: 4vw;
        }
        .scroll-gate {
          background-size:45vw;
        }
    }
      /* Tablet/Laptop */
    @media (min-width: 601px) and (max-width: 1920px) {
        .hero-content {
            top: 10vw;
        }
        .hero {
            height: 50vw;
            max-width: 50vw;
        }
        .hero-title {
            font-size: 3.5vw;
        }
        .hero-description {
            font-size: 2vw;
            width: 80%;
            padding-left: 20%;
        }
        #roadmap {
            margin-top: 20vw;
        }
        .hero-btn {
          width: 8vw;
          height: 10vw;
          background-size: 8vw;
          padding-top: 3vw;
          font-size: 1.5vw;
          padding-left:2vw;
          margin-top: 2vw;
        }
        .discord-btn {
          width: 8vw;
          height: 10vw;
          background-size: 8vw;
          margin-top: 0;
        }
        /* Scroll Gate */
        .scroll-gate-img {
          width: 15vw;
          margin-top: 5vw;
        }

        .scroll-gate-btn {
          margin-top: 2vw;
        }
        .scroll-gate {
          background-size:65vw;
        }
    }
      
    /* Mobile */
    @media screen and (max-width: 600px) {
    .hero-content {
        top: 12vw;
    }
    .hero {
        height: 60vw;
        max-width: 69vw;
    }
    .hero-title{
        font-size: 4vw;
    }
    .hero-description {
        font-size: 2.5vw;
        width: 90%;
        padding-left: 13%;
    }
    #roadmap {
        margin-top: 15vw;
    }
    .hero-btn {
      width: 10vw;
      height: 12vw;
      background-size: 10vw;
      padding-top: 4vw;
      font-size: 1.5vw;
      padding-left:2.5vw;
      margin-top: 2vw;
    }
    .discord-btn {
      width: 10vw;
      height: 12vw;
      background-size: 10vw;
      margin-top: 0;
    }

    /* Scroll Gate */
    .scroll-gate-img {
      width: 22vw;
      margin-top: 18vw;
    }

    .scroll-gate-btn {
      margin-top: 8vw;
    }

  }
