/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DIN Alternate', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header and Logo */
header {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
    margin-bottom: 60px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.logo h1 a {
    color: #2c3e50;
    text-decoration: none;
}

.logo-o {
    color: #d4af37;
    font-weight: 300;
}

.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: #7f8c8d;
    font-weight: 300;
}

/* Navigation */
nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #d4af37;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 100px;
}

.hero h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.subhead {
    font-size: 22px;
    color: #7f8c8d;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 60px 0 100px;
    background: #fafafa;
    margin: 0 -30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature p {
    color: #7f8c8d;
    font-weight: 300;
    line-height: 1.7;
}

.cta {
    text-align: center;
}

.button {
    display: inline-block;
    padding: 15px 40px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.button:hover {
    background: #d4af37;
}

/* Page Content */
.page-content {
    padding: 40px 0 100px;
}

.page-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 26px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content p {
    color: #7f8c8d;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content .intro {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Projects */
.project {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.project:last-child {
    border-bottom: none;
}

.project h3 {
    margin-top: 0;
    font-size: 28px;
}

.year {
    color: #d4af37;
    font-size: 18px;
    font-weight: 300;
}

.tech {
    font-size: 15px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
}

/* Approach Sections */
.approach-section {
    margin-bottom: 50px;
}

.approach-section h3 {
    margin-top: 0;
}

/* Quote */
.quote {
    font-size: 22px;
    font-style: italic;
    color: #2c3e50;
    padding: 20px 0;
    border-left: 3px solid #d4af37;
    padding-left: 30px;
    margin-top: 40px;
}

/* Contact */
.contact-info {
    margin-top: 50px;
    font-size: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}

footer p {
    color: #95a5a6;
    font-size: 14px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 25px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .subhead {
        font-size: 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-content h2 {
        font-size: 32px;
    }

    .quote {
        font-size: 18px;
        padding-left: 20px;
    }
}
