* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    background-color: bisque;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
}

.link a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.link a:hover {
    color: crimson;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 20px;
    background-color: #f8e9d8;
}

.hero-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    height: 400px;
}

.hero-text {
    max-width: 450px;
    margin-left: 50px;
}

.hero-text h1 {
    font-size: 30px;
    font-weight: 800;
    color: #222;
}

.hero-text p {
    font-size: 20px;
    color: #555;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background-color: #c07b37;
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #a7662e;
}

.container {
    background-color: #ccc;
    padding-bottom: 50px;
}

.container .item {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    padding: 20px;
}

.type {
    display: flex;
    flex-wrap: wrap;
}

.container .type .items .pic {
    width: 150px;
    border-radius: 10px;
    margin: 20px;
}

.container .type .items {
    background-color: white;
    margin-left: 55px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.container .type .items h4 {
    margin-top: 15px;
}

.container .type .items .ture {
    height: 220px;
}

.shop h4 {
    text-align: center;
    padding: 20px;
    font-weight: bold;
    font-size: 25px;
}

.shop p {
    font-size: 20px;
    color: #555;
    margin-top: 20px;
    text-align: center;
    padding-bottom: 40px;
}

.shop {
    background-color: burlywood;
}

#about {
    background-color: #f9f1e6;
    padding: 60px 10%;
    line-height: 1.7;
    font-family: 'Georgia', serif;
}

#about h1 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
}

#about p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

#about strong {
    color: #b26a36;
}

#contact {
    background-color: #f9f1e6;
    padding: 50px 10%;
}

#contact h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background-color: #b26a36;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #9b5b2e;
}

.contact-info h3 {
    margin-bottom: 10px;
    color: #222;
}

.social-links a {
    color: #b26a36;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

.home {
    text-decoration: none;
    color: #9b5b2e;
    font-weight: bold;
    font-size: 17px;
}

.home:hover {
    color: red;
    border-radius: 10px;
    padding: 5px;
}

footer {
    background-color: #c07b37;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.container .first {
    color: #9b5b2e;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin: 20px;
}

.container .first:hover {
    color: #c07b37;
    font-size: 21px;
}

.regi-body {
    margin: 0;
    padding: 0;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.regi-box {
    border: 2px solid #d6d2c8;
    border-radius: 18px;
    background: white;
    padding: 40px 30px;
    text-align: center;
}

.regi-box h1 {
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 200;
}

.registration h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.registration .text {
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0;
    background-color: #f9e6e6;
    border-radius: 20px;
    font-size: 15px;
    border: 1px solid #c6c6c6;
}

.button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.button:hover {
    background: #444;
}

.registration p {
    font-size: 13px;
    color: #555;
    margin-top: 18px;
}

.registration a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.registration a:hover {
    color: #0044cc;
    font-size: 14px;
}

.homebut {
    text-decoration: none;
    font-size: 20px;
    color: blue;
    font-weight: bold;
}

.homebut:hover {
    color: #0044cc;
    font-size: 21px;
}