/* Base Styles */
body {
    background-color: #2b2b2b; /* Dark gray for a military-industrial feel */
    color: #cfcfcf; /* Light gray text for contrast */
    font-family: 'OCR A Std', 'Courier New', monospace; /* Machine-style font */
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1000px;
}

/* Header */
header h1 {
    font-size: 36px;
    color: #e6e600; /* Tactical yellow for military text highlights */
    text-shadow: 2px 2px 3px #000;
    margin: 20px 0;
    text-transform: uppercase;
    border-bottom: 4px solid #444;
    padding-bottom: 10px;
    letter-spacing: 0.1em;
}

/* Buttons */
button {
    width: 200px;
    padding: 12px;
    margin: 10px;
    border: 2px solid #565656;
    background-color: #3b3b3b; /* Dark gray buttons */
    color: #f1f1f1; /* Light gray text */
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 1px 1px 5px #000, 0 0 8px #222;
    transition: all 0.3s ease;
}
.side_chevs {
    position: fixed;
    width: 40px;
    background-image: url('../chevron.svg');
    background-repeat: repeat-y;
    background-size:contain;
    background-position: center;
}
.home-button {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    margin: 10px;
    color: #fff; /* Light text for high contrast */
    color: #ffff00; /* Gold, inspired by koi scales */
    border: 4px solid #d17b00; /* Slightly darker gold border */
    cursor: pointer;
    box-shadow: 6px 6px 0 #000000;
    text-decoration: none;
    display: inline-block;
    left:150px;
}
button:hover {
    background-color: #4c4c4c;
    color: #ffff00; /* Bright yellow for hover effect */
    transform: translateY(-2px);
}

button:active {
    background-color: #2b2b2b;
    transform: translateY(1px);
}
.horz_cont{
    display: flex;
    flex-direction: row;
}


.vert_cont{
    display: flex;
    flex-direction: column;
}
img{
    margin:10px;
    aspect-ratio:initial;
}
/* Containers */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 10px 60px;
    padding: 20px;
    border: 3px solid #5b5b5b; /* Industrial steel-gray borders */
    box-shadow: inset 0 0 10px #1a1a1a, 0 0 10px #000;
    background-color: #1f1f1f;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #151515; /* Stealthy black */
    border: 2px solid #444;
}

/* Text Highlights */
strong {
    font-weight: bold;
    color: #e63946; /* Military alert red */
}

h1, h2, h3 {
    color: #e6e600;
    font-family: 'OCR A Std', monospace;
    text-transform: uppercase;
}

/* Sections */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #444; /* Dark tactical panel background */
    border: 3px solid #888;
    padding: 15px;
    text-align: center;
    letter-spacing: 0.1em;
}

/* Images */
img {
    width: 100%;
    max-width: 1000px;
    border: 3px solid #666; /* Industrial feel */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease-in-out;
    padding:10px;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
}

/* Code Blocks */
.code-snippet {
    background-color: #1a1a1a;
    color: #00ff00; /* Monochrome green terminal-style */
    border: 2px solid #444;
    padding: 5px 20px;
    font-size: 1rem;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    box-shadow: 0 5px 10px #000;
}

/* Footer */
footer {
    background-color: #2b2b2b;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    border-top: 3px solid #444;
}

/* Miscellaneous Classes */
.danger {
    color: #e63946;
    font-weight: bold;
}

.warning {
    color: #ffcc00;
    font-weight: bold;
}

.info {
    color: #00ccff;
    font-weight: bold;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
}

.tactical-box {
    border: 2px solid #666;
    background-color: #1f1f1f;
    padding: 20px;
    box-shadow: inset 0 0 10px #000;
    text-align: center;
}

.tactical-box h3 {
    color: #e6e600;
}

.item-list {
    display: flex;
    gap: 40px; /* Space between columns */
}

.item-list ul {
    list-style-type: none; /* Remove default bullets */
    margin: 0;
    padding: 0;
}

.item-list li {
    margin-bottom: 10px; /* Space between items */
}