/*
Theme Name: Aegiscend
Author: Aegiscend
Description: Custom cybersecurity-focused WordPress theme
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #020617;
    color: #e6e6e6;
}

a {
    color: #00e5ff;
    text-decoration: none;
}
form p {
    margin-bottom: 15px;
}

form input,
form textarea,
form button {
    display: block;
    width: 100%;
}

/* ---------- HEADER & MENU ---------- */

/* Header: stack logo and menu vertically, centered */
header {
    display: block;
    text-align: center;
}

/* Logo block: keep space below it */
header .logo {
    margin-bottom: 20px;
}

/* Menu UL: horizontal row, centered under logo */
header .menu-horizontal {
    display: inline-flex;      /* horizontal row, centered by text-align:center on header */
    flex-direction: row;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu items */
header .menu-horizontal li {
    /* flex children, no extra display needed */
}

/* Menu links */
header .menu-horizontal li a {
    text-decoration: none;
    color: #00e5ff;
    font-weight: 500;
	font-size: 18px;
}

/* Hover and active colors */
header .menu-horizontal li a:hover {
    color: #ffffff;
}