body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #FFF8DC;
    color: #000000;
    min-height: 100vh;
}

/* Header and Navigation */
header {
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
}

h1 {
    font-family: Optima, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

/* Navigation Button Styles - Normal State */
.nav-btn {
    font-family: Optima, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    background-color: transparent;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

/* Navigation Button - Hover State (Over) */
.nav-btn:hover {
    background-color: #000000;
    color: #FFF8DC;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation Button - Active State (Current Page) */
.nav-btn.active {
    background-color: #000000;
    color: #FFF8DC;
    font-weight: bold;
}

/* Content Sections */
.content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: block;
}

.content.active {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Text Styles */
.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Home Page Styles */
.home-content {
    text-align: center;
}

.home-features {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.home-features h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* List Styles - Unordered Lists */
.feature-list,
.interests-list,
.skills-list {
    list-style-position: inside;
    font-size: 1.1rem;
    line-height: 2;
    max-width: 600px;
    margin: 1rem auto;
}

.feature-list {
    list-style-type: disc;
}

.interests-list {
    list-style-type: circle;
}

.skills-list {
    list-style-type: square;
}

/* About Page Styles */
.about-details {
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
}

.about-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Work Page - Gallery Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-item {
    border: 2px solid #000000;
    padding: 0;
    transition: all 0.3s ease;
    background-color: #FFFAED;
    overflow: hidden;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.work-description {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
}

.work-description h4 {
    margin-bottom: 0.5rem;
    color: #000000;
}

/* Skills Page Styles */
.main-skills {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

.main-skills-list {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 2rem;
}

.main-skills-list li {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.skills-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #FFFAED;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}

.skills-section h3 {
    margin-top: 0;
    color: #000000;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.skills-section ul,
.skills-section ol {
    margin-left: 2rem;
}

.skills-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-label {
    color: #555555;
    margin-right: 0.5rem;
    font-weight: bold;
}

.contact-methods {
    margin-top: 3rem;
    text-align: center;
}

.contact-methods h3 {
    margin-bottom: 1rem;
}

.contact-methods p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #CCCCCC;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    .nav-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
}