/* 73ai - Main Stylesheet */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Gentium Plus', Georgia, serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #f7f3eb;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
nav {
    padding: 24px 0;
    border-bottom: 1px solid #d5cfc3;
}

nav .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.5em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Typography */
h1 {
    font-size: 2.4em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

h2 {
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

h2.spaced {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 1.1em;
    color: #444;
}

h3 {
    color: #1a1a1a;
    font-size: 1.2em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

/* Links */
a {
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
}

.hero-description {
    font-size: 1.25em;
    color: #444;
    max-width: 700px;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 1.3em;
    color: #666;
    max-width: 650px;
}

/* Dividers */
.divider {
    border: none;
    border-top: 1px dotted #c5bfb3;
    margin: 50px 0;
}

/* Sections */
.section {
    padding: 20px 0;
}

.section p {
    color: #444;
    font-size: 1.3em;
    margin: 0;
}

/* Quote Block */
.quote-block {
    border-left: 3px solid #8b7355;
    background: rgba(139, 115, 85, 0.05);
    padding: 20px 24px;
    margin: 40px 0;
}

.quote-text {
    color: #333;
    font-style: italic;
    font-size: 1.15em;
    margin: 0;
}

.quote-author {
    color: #666;
    font-size: 0.85em;
    margin-top: 12px;
}

/* Project Cards */
.project-card {
    border: 1px solid #d5cfc3;
    padding: 24px;
    border-radius: 4px;
    background: #fffdf8;
    margin-top: 16px;
}

.project-card h3 {
    color: #1a1a1a;
    font-size: 1.2em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.project-links {
    margin-bottom: 12px;
}

.project-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1em;
    margin-right: 16px;
}

.project-links a:hover {
    text-decoration: underline;
}

.project-card p {
    color: #555;
    font-size: 1.2em;
    margin: 0;
    line-height: 1.6;
}

/* Highlight Section */
.highlight-section {
    border-top: 1px dotted #c5bfb3;
    border-bottom: 1px dotted #c5bfb3;
    padding: 40px 0;
    margin: 50px 0;
}

.highlight-section h2 {
    margin-bottom: 16px;
}

.highlight-section p {
    color: #444;
    font-size: 1.1em;
    max-width: 700px;
}

.highlight-section a {
    color: #0066cc;
}

/* Footer */
footer {
    border-top: 1px solid #d5cfc3;
    padding: 30px 0;
    margin-top: 60px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.1em;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.copyright {
    color: #888;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    nav .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}
