/* Gemini CLI Style */

@font-face {
    font-family: 'D2Coding';
    src: url('../fonts/D2Coding/D2Coding/D2Coding-Ver1.3.2-20180524.ttf') format('truetype');
}

@font-face {
    font-family: 'DOSGothic';
    src: url('../fonts/DOS/ttf/DOSGothic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'D2Coding', monospace;
    margin: 0;
    padding: 0;
    background-color: #121212;
    /* Dark background */
    color: #E0E0E0;
    /* Light text */
    font-size: 16px;
    line-height: 1.8;
}

header {
    background-color: #1E1E1E;
    /* Slightly lighter dark for header */
    padding: 10px 50px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
}

.logo {
    height: 40px;
    /* Adjusted logo size */
    width: auto;
    vertical-align: middle;
    filter: invert(1);
    /* Invert logo colors for dark mode */
}

header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    margin: 0;
    text-decoration: none;
    color: #00AFFF;
    /* Bright blue for links */
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px #00AFFF;
}

main {
    padding: 0;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 100px 50px;
    box-sizing: border-box;
    border-bottom: 1px dashed #333;
    /* Dashed separator for sections */
    position: relative;
    /* Needed for pseudo-element positioning */
    z-index: 1;
}

.section-title {
    font-family: 'DOSGothic', monospace;
    font-weight: bold;
    color: #00FF7F;
    /* Green for titles, like a prompt */
    font-size: 2em;
    margin-bottom: 40px;
    margin-left: 0;
    width: 100%;
    text-align: left;
}

.section-title::before {
    content: '$ ';
    /* CLI prompt style */
    color: #00FF7F;
}

.section-content {
    font-family: Poppins, sans-serif;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align content to the left */
    width: 100%;
}

.section-content-item {
    margin: 15px 0;
    text-align: left;
    max-width: 100%;
}

.section-content-item h3 {
    color: #E0E0E0;
    font-size: 1.5em;
}

.section-content-item h3::before {
    content: '>> ';
    color: #00AFFF;
}

#contact a {
    color: #FFD700;
    /* Gold/Yellow for contact link */
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1E1E1E;
    color: #888;
    border-top: 1px solid #333;
}

/* Logo and Text in Header */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: 'DOSGothic', sans-serif;
    margin-left: 15px;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    /* Gradient text effect */
    background: linear-gradient(45deg, #00AFFF, #00FF7F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Remove background logos */
.bg-logo-color::before,
.bg-logo-grayscale::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.3;
    /* Very subtle opacity for dark mode */
    z-index: -1;
}

.bg-logo-color::before {
    background-image: url('../logos/Transparent.svg');
}

.bg-logo-grayscale::before {
    background-image: url('../logos/Grayscale.svg');
}

.text-color-highlight,
.orange {
    color: #FFD700;
}

.purple {
    color: #bc90d3;
}

.pink {
    color: #ff6f91;
}