* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #2b2623;
    color: #f5f5f4;
}

h1,h2,h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 0;
    background: rgba(43,38,35,0.7);
    backdrop-filter: blur(10px);
}

.navbar a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    color: #d6d3d1;
    margin-bottom: 20px;
}

.btn {
    background: #c08457;
    padding: 10px 20px;
    color: #1c1917;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

section {
    padding: 100px 20px;
}

.project-card {
    background: #3a332f;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 20px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.1rem;
    color: #d6d3d1;
    margin-bottom: 25px;
}

.contact a {
    display: inline-block;
    background: #c08457;
    color: #1c1917;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
 
.contact a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 40px;
    color: #777;
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero img {
        width: 100px;
    }

    section {
        padding: 30px 15px;
    }

    nav {
        font-size: 16px;
    }
}