:root {
    --text: black;
    --white: white;
}

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

a {
    text-decoration: none;
    color: white;
}

.merch-mobile {
    display: none;
}

.padding {
    padding-inline: 300px;
}

body {
    background: #7d7d7d;
    background: linear-gradient(135deg, rgba(125, 125, 125, 1) 0%, rgba(91, 95, 106, 1) 37%, rgba(64, 68, 81, 1) 66%, rgba(36, 42, 58, 1) 100%);
    /* background: #383838;
    background: linear-gradient(135deg, rgba(56, 56, 56, 1) 0%, rgba(138, 95, 73, 1) 37%, rgba(163, 79, 34, 1) 66%, rgba(184, 62, 2, 1) 100%); */
    min-height: 100vh;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    color: #333;
}

      /* nav bar styling */
      nav {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding-block: 50px;
          color: var(--white);
          position: relative;
      }

      nav ul.links {
          display: flex;
          align-items: center;
          gap: 70px;
      }

      nav ul.links li {
          list-style: none;
          font-size: 1.2rem;
      }

      nav .logo {
          user-select: none;
          font-weight: bold;
          font-size: 1.3rem;
      }

      .merch {
          border: 1px solid white;
          padding-block: 0.5em;
          padding-inline: 1.3em;
          border-radius: 24px;
      }

      /* Mobile hamburger */
      .hamburger {
          display: none;
          flex-direction: column;
          cursor: pointer;
          z-index: 1001;
      }

      .hamburger span {
          width: 25px;
          height: 2px;
          background: white;
          margin: 3px 0;
          transition: 0.3s;
      }

.logo img{
  max-width: 50px;
  border-radius: 50%;
  border: 10px solid black;
}

.main-content {
  padding: 2rem 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.blog-entry {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.blog-body {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive Padding */
@media (max-width: 900px) {
  .padding {
    padding-inline: 30px;
  }

  .page-title {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .padding {
    padding-inline: 20px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 1rem;
  }

  .blog-entry {
    padding: 1.5rem;
  }
}


/* Mobile Responsive */
@media (max-width: 900px) {
    .padding {
        padding-inline: 30px;
    }

    .hamburger {
        display: flex;
    }

    nav ul.links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(125, 125, 125, 0.98) 0%, rgba(91, 95, 106, 0.98) 37%, rgba(64, 68, 81, 0.98) 66%, rgba(36, 42, 58, 0.98) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    nav ul.links.active {
        transform: translateY(0);
    }

    nav ul.links li {
        font-size: 2rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    nav ul.links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    nav ul.links.active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.links.active li:nth-child(2) { transition-delay: 0.2s; }
    nav ul.links.active li:nth-child(3) { transition-delay: 0.3s; }
    nav ul.links.active li:nth-child(4) { transition-delay: 0.4s; }
    nav ul.links.active li:nth-child(5) { transition-delay: 0.5s; }

    .merch {
        display: none;
    }

    nav ul.links.active .merch-mobile {
        display: block;
    }

    .merch-mobile a {
        border: 1px solid white;
        padding-block: 0.5em;
        padding-inline: 1.3em;
        border-radius: 24px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 600px) {
    .padding {
        padding-inline: 20px;
    }

    nav {
        padding-block: 30px;
    }

    nav .logo {
        font-size: 1.1rem;
    }

    nav ul.links li {
        font-size: 1.8rem;
    }
}