/* BASIC STYLES */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffb347;
    color: rgb(95, 52, 3);
    position: sticky;
    top: 0;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    color: rgb(128, 65, 7);
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    height: 60vh;
    background: url("https://png.pngtree.com/thumb_back/fh260/background/20231107/pngtree-crafting-personalized-christmas-gifts-flat-lay-of-handmade-jewelry-for-friends-image_13794057.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero .btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ffb347;
    border-radius: 5px;
    text-decoration: none;
    color: black;
}

/* ABOUT SECTION */
.about {
    padding: 40px;
    background: rgb(173, 161, 149);
}

.about h2 {
    text-align: center;
}

.about-box {
    background: #ffe3b3;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
}

/* PRODUCTS */
.products {
    padding: 40px;
    background: #d1ccbf;
}

.product-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    width: 250px;
    background: rgb(247, 186, 150);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .price {
    font-weight: bold;
    color: #8b3800;
}

/* CONTACT SECTION */
.contact {
    padding: 40px;
    display: flex;
    justify-content: space-around;
    background: #fff;
    flex-wrap: wrap;
}

.contact-info {
    max-width: 300px;
}

.contact-form {
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
}

.contact-form button {
    padding: 10px;
    background: #ffb347;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #ffb347;
    color: rgb(129, 69, 0);
}
