/*
    This File is part of SalmonPage
    Copyright (C) 2025 Salmon
    https://codeberg.org/salmonik/site
    License: GPL-3.0
*/

/* Base Styles */
:root {
    --text-primary: #e0e0e0;
    --text-secondary: #999999;
    --border: #333333;
    --accent: #3366ff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #000066;
    --bg-footer: #2e2e2e;
}

html {
    scroll-padding-top: 80px;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    font-family: Arial, sans-serif;
    line-height: 1.4;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: var(--bg-secondary);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.greeting {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

main h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: var(--text-primary);
    text-align: center;
}

@media (max-width: 768px) {
    main h1 {
        font-size: 2.25rem;
    }
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}



/* Footer */
footer {
    text-align: center;
    padding: 0.1rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    background-color: var(--bg-footer);
    border-top: 1px solid var(--border);
}




main p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

main ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

main li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

main a {
    color: #718096;
    text-decoration: underline;
}

main a:hover {
    color: #a0aec0;
}

