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

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    padding-top: 108px;
}

/* Header styling */
header {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid lightgray;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
}

header h1 {
    color: black;
    font-size: 36px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    color: lightyellow;
}

/* Hero Section */
.hero {
    background-image: url("/upload/01.jpg");
    background-size: cover;
    background-position: center;
    background-color: #919191;
    padding: 350px 20px;
    text-align: center;
}

.hero h2 {
    color: black;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: 2px solid black;
    font-size: 18px;
    cursor: pointer;
}

.hero button:hover {
    background-color: lightgray;
}

/* About Section */
.about {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    color: black;
    margin-bottom: 20px;
    border-bottom: 2px solid lightgray;
    display: inline-block;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Shop Page */
.shop {
    padding: 50px 20px;
    text-align: center;
}

.shop h2 {
    color: black;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background-color: lightgray;
    padding: 20px;
    border: 1px solid lightyellow;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
}

.product h3 {
    color: black;
    margin: 10px 0;
}

.product p {
    background-color: lightyellow;
    padding: 5px;
    color: black;
}

.product button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.product button:hover {
    background-color: lightgray;
}

/* Order Page */
.order {
    background-color: lightyellow;
    padding: 50px 20px;
    text-align: center;
}

.order h2 {
    color: black;
    margin-bottom: 20px;
}

.order form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.order form input,
.order form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid lightgray;
    font-size: 16px;
}

.order form button {
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

.order form button:hover {
    background-color: lightgray;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
