/* pages.css - Shared styles for Serveze.ai pages (excluding home page) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", 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: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    margin: 1rem 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
}

/* Layout */
.page-container {
    max-width: 1500px;
    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 {
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    user-select: none;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 13px;
    position: relative;
    overflow: hidden;

    text-decoration: none;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
}

.button:hover::before {
    left: 100%;
}

.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 {
    list-style-position: inside;
}

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

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