/* =========================
   GLOBAL
========================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1115;
    color: white;
}

/* Hero section centered like your Python page */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* BIG logo — same idea you wanted earlier */
.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;

    transition: transform 0.3s ease, filter 0.3s ease;
}

/* subtle hover effect (modern DevOps feel) */
.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

h1 {
    font-size: 2rem;
    margin: 10px 0;
}

p {
    color: #aaa;
    font-size: 1rem;
}


/* =========================
   MINI-HEADER
========================= */

.mini-header {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    width: fit-content;
    margin: 20px auto;

    padding: 12px 18px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.logo {
    width: 160px;
    height: auto;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.subtitle {
    font-size: 12px;
    color: #9ca3af;
}





/* =========================
   NAVBAR
========================= */

.navbar {

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(15,23,42,.85);

    backdrop-filter: blur(10px);

    padding:14px;

    position:sticky;
    top:0;

    z-index:1000;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.navbar a,
.dropbtn {

    color:#e5e7eb;

    text-decoration:none;

    padding:14px 18px;

    font-size:15px;

    border:none;

    background:none;

    cursor:pointer;

    transition:0.2s;

}


.navbar a:hover,
.dropdown:hover .dropbtn {

    color:#60a5fa;

}


/* =========================
   DROPDOWN
========================= */

.dropdown {

    position:relative;

}


.dropdown-content {

    display:none;

    position:absolute;

    background:#111827;

    min-width:180px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:8px;

    overflow:hidden;

}


.dropdown-content a {

    display:block;

    padding:10px 12px;

    color:#e5e7eb;

}


.dropdown-content a:hover {

    background:#1f2937;

}


.dropdown:hover .dropdown-content {

    display:block;

}


/* =========================
   PAGE HEADER
========================= */

.page-header {

    text-align:center;

    padding:40px 20px;

}


.icon {

    width:90px;

    margin-bottom:10px;

}


/* =========================
   TEXT
========================= */

h1 {

    margin:10px 0;

    font-size:36px;

}


h2 {

    margin:20px 0 10px 0;

    font-size:22px;

    border-bottom:1px solid rgba(255,255,255,.1);

    padding-bottom:6px;

}


.note {

    color:#9ca3af;

}


/* =========================
   CARDS
========================= */

.card {

    width:80%;

    max-width:900px;

    margin:20px auto;

    padding:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

}


/* =========================
   LISTS
========================= */

ul {

    padding-left:20px;

}

li {

    margin-bottom:8px;

}


/* =========================
   BACK TO TOP
========================= */

.top-button {

    text-align:center;

    margin:40px 0;

}

.top-button a {

    display:inline-block;

    padding:10px 16px;

    background:#1f2937;

    color:#e5e7eb;

    text-decoration:none;

    border-radius:8px;

    border:1px solid rgba(255,255,255,.1);

}

.top-button a:hover {

    background:#2563eb;

}