* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', monospace;
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    background-color: #111111;
    color: #ffffff;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: #c74731;
}


/* General Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #929292;
}

#works {
    background: #111111;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
    padding: 40px;
}

#works h2{
    padding-bottom: 20px;
}

/* Works Section */
.works-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.work-item {
    background: #242424;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.work-info {
    padding: 15px;
    text-align: left;
}

.work-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.work-info p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    .works-container{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    section h2 {
        font-size: 2rem;
    }

    section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu a {
        font-size: 14px;
    }

    .works-container{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    section h2 {
        font-size: 1.8rem;
    }

    section p {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

a{
    text-decoration: none;
    color: white;
}
footer {
    background: #111111;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

.click-text{
    transition: 0.3s ease;
}
.click-text:hover{
    color: #666;
}