
/* Base Layout */
body {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(135deg, #0f0f14, #1b1024);
    color: white;
    min-height: 10vh;
    font-size: 1.0rem;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    position: absolute;
    width: 97%;
    left: 2%;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.content-section h1 {
    font-size: 1.9rem;
    margin-bottom: 4px;
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 4;
}
.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 4;
}
.content-section p {
    font-size: 1rem;
    line-height: 1.2;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    width: 95%;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 2px solid #7a00ff;
    z-index: 1000;
}

.text-bold {
  font-weight: bold;
}
.text-blue {
  color: #1122FF;
  font-weight: bold;
}
.text-red {
  color: #FF2211;
  font-weight: bold;
}
.text-green {
  color: #22FF11;
  font-weight: bold;
}
.text-purple {
  color: #FF22AA;
  font-weight: bold;
}
.text-purple-big {
  color: #DD2299;
  font-weight: bold;
  font-size: 1.4rem;
}
.text-italic {
  font-weight: italic;
}
.text-grey1 {
  color: #cdbbbb;
  font-weight: bold;
}
.text-grey2 {
  color: #8833aa;
  font-weight: bold;
}
.name {
  color: #8822FF;
  font-weight: bold;
}

.image-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.image-entry img {
    width: 500px; /* optional */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-links li {
    position: relative;
}

.nav-links button,
.nav-links a {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 8px;
    transition: 0.3s ease;
}

.nav-links button:hover,
.nav-links a:hover {
    color: #b366ff;
}

/* DROPDOWN */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c1c26;
    min-width: 180px;
    top: 35px;
    border: 1px solid #7a00ff;
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* MAIN CONTENT */

main {
    padding-top: 100px;
    width: 80%;
    margin: auto;
}