@import url('https://fonts.googleapis.com/css?family=Hammersmith+One|Russo+One|Staatliches&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Hammersmith One', sans-serif;
}

body {
    background: url(../img/background.png) no-repeat center center fixed;
    background-size: cover;
    color: #48ff00;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 1s ease-in-out;
}

.nav .menu {
    display: flex;
    list-style: none;
}

.menuitem a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
}

.menuitem:hover {
    color: #ff0000;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-in-out;
}

.hero {
  position: relative;
  min-height: 70vh;           /* enough height so buttons aren't off-screen */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* make sure hero content sits above the wolf image / background */
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
}

/* optional dark overlay over background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: #ff2b2b;
  color: #fff;
}

.btn-secondary {
  background: #5865f2; /* Discord-ish */
  color: #fff;
}

/* MOBILE TWEAKS */
@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;   /* stack buttons */
  }

  .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

.info-sections {
    display: flex;
    justify-content: space-around;
    width: 100%;
    animation: fadeInUp 1s ease-in-out;
}

.info-section {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    width: 30%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.backguy {
    position: absolute;
    bottom: 0;
    right: 2rem;
    width: 20rem;
    animation: fadeIn 1s ease-in-out;
}
.join-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.join-button:hover {
    background: #2f8b12;
}

.copy-icon {
    margin-left: 1rem;
    cursor: pointer;
    color: #ffffff80;
    transition: color 0.3s;
}

.copy-icon:hover {
    color: #ff0000;
}

.footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
