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

/* NAVBAR */

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

.text-bold {
  font-weight: bold;
}
.text-blue {
  color: #1122FF;
  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 */
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b366ff;
}
.logo-pad {
    padding: 8px 12px;
    padding-bottom: 10px;
}

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

.nav-links li {
    position: relative;
}

.nav-links button,
.nav-links a {
    background: none;
    border: none;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 12px;
    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;
}

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

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

.content-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #b366ff;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
}