/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Palatino Linotype', Palatino, serif;
    line-height: 1.6;
    color: #555;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: #FFC324;
    padding: 15px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    padding: 5px 0;
}

.site-title {
    color: #222;
    font-family: 'Fjalla One', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 2px #FFAD00;
    margin-bottom: 2px;
}

.tagline {
    color: #000;
    font-family: 'Fjalla One', sans-serif;
    font-size: 1rem;
    text-shadow: 0 0 2px #FFAD00;
}

/* Navigation */
nav {
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

nav a {
    color: #000;
    font-family: 'Droid Sans', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    text-shadow: 0 0 1px #FFAD00;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #555;
}

nav a.active {
    color: #222;
    font-weight: bold;
}

/* Main Content */
main {
    flex: 1;
    background: #fff;
    width: 100%;
    padding: 15px;
}

/* Content wrapper for centered content on inner pages */
.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    margin-bottom: 0;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Intro Section */
.intro {
    background: #fff;
    padding: 20px 0;
    text-align: center;
}

.intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 180%;
}

/* Footer */
footer {
    background: #202020;
    color: #5B5B5B;
    text-align: center;
    padding: 1.5rem;
    font-family: 'Droid Sans', sans-serif;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #FFC324;
}

/* Page Content (inner pages) */
.page-content {
    background: #fff;
    padding: 20px 0;
    max-width: 960px;
    margin: 0 auto;
}

.page-content h2 {
    color: #333;
    font-family: 'Francois One', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.page-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 180%;
}

.page-content ul {
    list-style: disc;
    margin: 1rem 0 1rem 25px;
}

.page-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.page-content a {
    color: #555;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Project/Website Cards */
.project,
.website {
    background: #f5f5f5;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 3px solid #FFC324;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.project img,
.website img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    flex-shrink: 0;
}

.project h3,
.website h3 {
    color: #333;
    font-family: 'Francois One', sans-serif;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .site-title {
        font-size: 1.6rem;
    }

    main {
        padding: 10px;
    }
}
