@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* Anchor styles */
a {
    cursor: pointer;
}

a img {
    cursor: pointer;
}

/* Button styles */
button {
    background: transparent;
    border: none;
    font-size: larger;
    padding: 0;
    cursor: pointer;
}

button:hover {
    background: transparent;
    border: none;
    font-size: larger;
    transform: scale(1.15);
}

/* Container styles */
#container {
    flex: 1;
    font-size: 4vh;
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 2vw;
    transition: margin-right 0.3s ease;
}

#container.active_menu {
    margin-right: 23vw;
}

#container a:hover{
    color: lightgreen;
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

#container a {
    text-decoration: underline;
    text-decoration-style: wavy;
    color: orange;
}

/* Content styles */
#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
    color: white;
}

/* General styles for the entire document */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #000000;
}

/* Header styles */
header {
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header a {
    color: white;
    text-decoration: underline;
}

/* 🍔 Hamburger menu */

/* 🍔 Hamburger base */
#hamburger-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* 🍔 Slide-in menu */
#hamburger-menu {
    position: fixed;
    top: 0;
    right: -23vw;
    width: 20vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 200;
    transition: right 0.3s ease-in-out;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#hamburger-menu nav {
    display: flex;
    flex-direction: column;
}

/* ✅ Active state */
#hamburger-menu.active {
    right: 0;
}

/* 🔥 Highlight current page */
#hamburger-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

#hamburger-menu a.active-link {
    font-weight: bold;
    color: #5865F2; /* Discord blurple 💜 */
}

#hamburger-menu a.active-link::before {
    content: '| ';
    color: #5865F2;
}

/* List element styles */
li {
    list-style-type: decimal;
    margin-left: 10%;
    margin-right: 10%;
    color: white;
    margin-bottom: 2vh;
}

li:hover strong {
    color: mediumpurple;
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

/* Paragraph styles */
p {
    text-align: center;
    color: white;
}

#content p:hover, li:hover {
    color: green;
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

p:hover em {
    color: pink;
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

p:hover strong {
    color: mediumpurple;
    text-decoration-line: underline;
    text-decoration-style: wavy;
}

/* Space Grotesk font */
.space-grotesk {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}