/* pages.css - Shared styles for Wisk.cc pages (excluding home page) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s ease;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    margin: 1rem 0;
    margin-top: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
}

/* Layout */
.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 80vh;
}

.content-section {
    padding-top: 77px;
    margin-bottom: 3rem;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    width: 45px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #000;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #333;
}

.button-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.button-secondary:hover {
    background-color: #f0f0f0;
}

/* Cards */
.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        padding: 8px;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .page-container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}
.mt-2 {
    margin-top: 1rem;
}
.mt-3 {
    margin-top: 1.5rem;
}
.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

ul,
ol {
    list-style-position: inside;
}

pre,
code {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 2px;
}

pre {
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background: #777;
    border-radius: 7px;
    border: 4px solid transparent;
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
