/* ===========================================================
   GLOBAL PAGE STYLE
=========================================================== */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f4f4f9;
    color: #1a1a1a;
}

/* ===========================================================
   HEADER
=========================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #5c3aff;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===========================================================
   DROPDOWN MENU (GLOBAL + STAFF)
=========================================================== */
.dropdown {
    display: inline-block;
    position: absolute;
    right: 100px;
    top: 20px;
}

.dropbtn {
    background: #5c3aff;
    color: white;
    padding: 12px 18px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.dropbtn:hover {
    background: #4b2ee6;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 5px;
    min-width: 200px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
}

/* Keep dropdown open */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 12px 18px;
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    cursor: pointer;
}

.dropdown-content a:hover {
    background: #f0f0ff;
}

/* ===========================================================
   HERO SECTION
=========================================================== */
.hero {
    text-align: center;
    margin-top: 200px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #5c3aff;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
    color: #444;
}

/* ===========================================================
   STAFF CARDS
=========================================================== */
.staff-container {
    margin-top: 180px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.staff-card {
    background: white;
    border-radius: 12px;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    padding: 0;              /* Flush role header */
    overflow: hidden;
}

/* Role header (color bar) */
.role-header {
    width: 100%;
    padding: 12px 0;
}

/* Role text */
.role-name {
    margin: 0;
    font-weight: bold;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

/* Avatar */
.staff-card .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-top: 12px;
}

/* Nickname (big) */
.nickname {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

/* Username (small) */
.username-small {
    margin-top: -6px;
    font-size: 14px;
    color: #666;
    opacity: 0.9;
}

/* Card name (fallback) */
.staff-card h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* Discord ID */
.discord-id {
    font-size: 13px;
    opacity: 0.7;
    padding-bottom: 12px;
}

/* Role title group */
.role-title {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.role-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
