* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    background-color: #f6efe4;
    color: #4a3828;
    line-height: 1.7;
}

header {
    background-color: #efe0c8;
    padding: 25px 8%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    font-size: 28px;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: #4a3828;
    margin-left: 25px;
    font-size: 16px;
}

nav a:hover {
    color: #9b7653;
}


.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 10%;
    min-height: 80vh;
}

.artist-image img {
    width: 380px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero-text h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 25px;
}

.hero-text p {
    margin-bottom: 20px;
}


.featured {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 10%;
}

.featured img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}


section {
    padding: 70px 10%;
}


section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}


.projects {
    display: flex;
    gap: 30px;
    justify-content: center;
}


.card {
    background-color: #fffaf2;
    padding: 35px;
    width: 300px;
    text-align: center;
    border: 1px solid #ddc7a5;
}


.card h3 {
    margin-bottom: 15px;
}


#about {
    background-color: #efe0c8;
}


#about p {
    max-width: 800px;
    margin: auto;
    text-align: center;
}


form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


input, textarea {
    padding: 15px;
    border: 1px solid #cbb08a;
    font-family: inherit;
}


textarea {
    height: 150px;
}


button {
    background-color: #8b6545;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
}


button:hover {
    background-color: #6e4d34;
}


@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .projects,
    .featured {
        flex-direction: column;
        align-items: center;
    }

    .artist-image img {
        width: 90%;
    }
}
