*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-family: "Poppins", Arial, sans-serif;
    color: #3b332e;
    background-color: #e8ddd6;
}

body {
    line-height: 1.6;
}

#container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fffaf7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: normal;
    color: #6b5b4f;
}

p {
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

a,
a:link,
a:visited {
    color: #8b5e3c;
    text-decoration: none;
}

a:hover,
a:active {
    color: #b07a56;
    text-decoration: none;
}

ul {
    list-style: none;
}


header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-family: "Playfair Display", serif;
    font-size: 4em;
    font-weight: 700;
    color: #6e4b52;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.08);
}

header h1::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: #b48a78;
    margin: 18px auto 0;
    border-radius: 5px;
}


nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    text-align: center;
}

nav li {
    list-style: none;
    display: inline-block;
}

nav a {
    text-decoration: none;
    color: #8b5e3c;
    font-weight: 600;
    font-size: 1.1em;
}


.button {
    display: inline-block;
    margin-top: 60px;
    padding: 14px 28px;
    background-color: #8b5e3c;
    color: white !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(139, 94, 60, 0.25);
}

.button:hover {
    background-color: #b07a56;
    color: white !important;
}



section {
    text-align: center;
    padding: 60px 20px;
}



.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero p {
    max-width: 650px;
    margin: 25px auto;
    font-size: 1.1em;
}

.hero img {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
}

main #home h2 {
    margin-bottom: 60px;
    margin-top: -10px;
}

main #home p {
    margin-top: 60px;
}


#services {
    background-color: #f7efeb;
    padding: 70px 40px;
    border-radius: 25px;
    margin: 70px auto;
}

#services h2 {
    font-size: 3em;
    font-family: "Playfair Display", serif;
    color: #5f454b;
    margin-bottom: 35px;
    letter-spacing: 1px;
    position: relative;
}

#services h2::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: #b88a78;
    margin: 18px auto 0;
    border-radius: 5px;
}

#services p {
    max-width: 600px;
    margin: 15px auto 30px;
}



#portfolio {
    background-color: #f3e6e1;
    padding: 70px 40px;
    margin: 60px auto;
    border-radius: 25px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

#portfolio h2 {
    font-size: 3em;
    font-family: "Playfair Display", serif;
    color: #5f454b;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

#portfolio h2::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: #b88a78;
    margin: 18px auto 0;
    border-radius: 5px;
}

.portfolio-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.portfolio-gallery img,
#portfolio img {
    width: 300px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}



#process h3 {
    display: inline-block;
    background-color: #d8b7aa;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.2em;
    margin-top: 35px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}



#testimonials {
    background-color: #efe1db;
    padding: 70px 40px;
    margin: 60px auto;
    border-radius: 25px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

footer {
    text-align: center;
    padding: 40px 20px;
}