/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BASE */
body {
    background: #0b1220;
    color: #e5e7eb;
    line-height: 1.6;
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #0f172a;
    border-bottom: 1px solid #1f2937;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-weight: bold;
    color: #38bdf8;
    font-size: 1.1rem;
}

.navbar .logo img {
    width: 80px;
    height: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
}

.navbar a:hover {
    color: #38bdf8;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 5px;
}

/* Media Queries for Responsiveness */
@media (max-width: 960px) {
    .navbar ul {
        display: none;  /* Hide the navigation links by default */
        flex-direction: column;
        gap: 10px;
        width: 100%;
        background: #0f172a;
        position: absolute;
        top: 100px; /* Position the dropdown below the navbar */
        left: 0;
        padding: 15px;
    }

    .navbar ul.active {
        display: flex;  /* Show the links when the menu is active */
    }

    .hamburger {
        display: flex; /* Show hamburger icon on mobile */
    }
}

/* HERO / HEADER (merged) */
.hero,
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: white;
}

.hero h1,
header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero h2,
header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero img {
    width: 100%;
    max-width: 420px;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* LAYOUT */

/* CONTAINER */
.container,
section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* PANELS / CARDS (merged) */
.panel,
.card {
    background: #111827;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #1f2937;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.panel h3 {
    margin-bottom: 15px;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TEXT */
h2 {
    color: #38bdf8;
    margin-bottom: 20px;
}

.highlight {
    color: #22c55e;
    font-weight: bold;
}

/* LISTS */
.panel ol {
    padding-left: 20px;
}

.panel li {
    margin-bottom: 10px;
    color: #d1d5db;
}

/* FLOW */
.flow {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    background: #0f172a;
    padding: 15px;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

/* CTA */

.cta {
    text-align: center;
    padding: 50px 20px;
    background: #0f172a;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: #facc15;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
}

.cta a:hover,
button:hover {
    background: #fbbf24;
}

.cta-button,
button {
    display: inline-block;
    padding: 14px 28px;
    background: #facc15;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

button {
    width: 100%;
    margin-top: 20px;
}



/* IMAGE */
.image-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-panel img {
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

td, th {
    border: 1px solid #1f2937;
    padding: 12px;
    text-align: left;
}

th {
    background: #1e293b;
}

/* FORM */

form {
    width: 100%;
}
label {
    display: block;
    margin: 15px 0 6px;
    color: #38bdf8;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1f2937;
    background: #0f172a;
    color: white;
}

textarea {
    min-height: 120px;
}

/* MISC */
.info {
    margin-bottom: 20px;
    padding: 15px;
    background: #0f172a;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
}

.small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

.center {
    text-align: center;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.grid img {display: flexbox; width: 33%;}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero h2 { font-size: 1.4rem; }

    .container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}