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

@font-face {
    font-family: 'OptimaModoki';
    src: url('font/OptimaModoki.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'OptimaModoki', 'Georgia', 'Times New Roman', serif;
    background-color: #f5f3f0;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #1a1a1a;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: normal;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

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

/* Main Content Styles */
main {
    flex: 1;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-text {
    font-size: 3.5rem;
    line-height: 1.3;
    max-width: 800px;
}

.hero-text p {
    margin: 0;
}

.content-section {
    max-width: 800px;
    width: 100%;
}

.section-title {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.portfolio-list {
    list-style: none;
    font-size: 2.5rem;
    line-height: 1.8;
}

.portfolio-list li {
    margin: 0;
}

.portfolio-list a {
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.portfolio-list a:hover {
    opacity: 0.7;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.coming-soon {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Footer Styles */
footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
}

.social-icon {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }

    nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    main {
        padding: 2rem;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .hero-text {
        font-size: 2rem;
    }

    .portfolio-list {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    footer {
        padding: 1.5rem 2rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 1.5rem;
    }

    nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    main {
        padding: 1.5rem;
    }

    .hero-text {
        font-size: 1.5rem;
    }

    .portfolio-list {
        font-size: 1.5rem;
    }

    footer {
        padding: 1rem 1.5rem;
    }
}

