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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f5f0e8;
    color: #2a2a2a;
    line-height: 1.7;
    padding: 40px 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 30px;
    right: 50px;
    display: flex;
    gap: 35px;
    z-index: 100;
}

nav a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}

nav a:hover {
    opacity: 0.6;
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 80px;
}

/* Hero Section - Home Page */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.accent {
    font-style: italic;
}

.symbol {
    color: #6b9080;
    font-size: 5.5rem;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.image-placeholder {
    background-color: #e8e0d5;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    font-size: 14px;
    border-radius: 3px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.image-placeholder.large {
    width: 100%;
    aspect-ratio: 16/9;
    margin: 40px 0;
}

.intro-text p,
.text-content p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #3a3a3a;
}

/* Content Pages */
.content-page h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.content-page h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.content-page h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 60px;
    margin-bottom: 80px;
}


.about-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid #d4c8b8;
    padding-top: 50px;
    margin-top: 60px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 17px;
    transition: opacity 0.3s ease;
}

.contact-icon:hover {
    opacity: 0.6;
}

.icon-placeholder {
    width: 40px;
    height: 40px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Project Page */
.project-content ul {
    list-style-position: inside;
    margin: 30px 0;
    padding-left: 20px;
}

.project-content li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #3a3a3a;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid #d4c8b8;
    font-size: 14px;
    color: #7a7a7a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .content-section,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    nav {
        right: 30px;
        gap: 25px;
    }
    
    .content-page h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .symbol {
        font-size: 3rem;
    }
    
    nav {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 40px;
    }
    
    body {
        padding: 20px 15px;
    }
    
    .content-page h1 {
        font-size: 2.2rem;
    }
}