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

body {
    font-family: Oswald, serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border: 2px solid #333;
    background-color: #f5f5f5;
}

.logo h2 {
    margin: 0;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: underline;
    color: blue;
    font-weight: 500;
}

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

/* Featured Photo Section */
.featured-photo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    border: 2px solid #333;
    background-color: #fafafa;
    text-align: center;
    padding: 2rem;
}

.featured-photo h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Previous Projects Section */
.previous-projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border: 2px solid #333;
    background-color: #f9f9f9;
    text-align: left;
    padding: 2rem;
}

.previous-projects h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Skills and Autobiography Container */
.skills-auto-container {
    display: flex;
    min-height: 300px;
    border: 2px solid #333;
    position: relative;
}

.skills-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #333;
    background-color: #f0f0f0;
    padding: 2rem;
    text-align: left;
}

.autobiography-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 2px solid #333;
    background-color: #f0f0f0;
    padding: 2rem;
    text-align: justify;
}

/* Geometric Design */
.geometric-design {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 150px;
    z-index: 10;
}

.geometric-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 75px solid #333;
}

.geometric-design::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 75px solid #333;
}

/* Footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border: 2px solid #333;
    background-color: #e9e9e9;
    min-height: 120px;
}

.footer-content {
    flex: 1;
}

.footer-content p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.footer-content a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer-icons {
    display: flex;
    gap: 1rem;
}

.icon-placeholder {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #fff;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .skills-auto-container {
        flex-direction: column;
    }
    
    .skills-section,
    .autobiography-section {
        border: none;
        border-bottom: 2px solid #333;
    }
    
    .autobiography-section {
        border-bottom: none;
    }
    
    .geometric-design {
        position: static;
        transform: none;
        margin: 1rem auto;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}