body {
    font-family: 'Arial', sans-serif;
    background-color: #fff7e6;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ff6f61;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

#hero {
    background-image: url('hero_background_pinup.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #6e6be7;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    margin: 0 0 10px;
    font-family: 'Pacifico', cursive;
}

#hero p {
    font-size: 1.2em;
}

.cta-button {
    background-color: #ffcb2b;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ffae00;
    color: white;
}

#about {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    font-family: 'Pacifico', cursive;
    color: #ff6f61;
}

#about p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

#products {
    padding: 50px 20px;
    text-align: center;
}

#products h2 {
    font-family: 'Pacifico', cursive;
    color: #ff6f61;
}

.product-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-item {
    background-color: white;
    border: 2px solid #ff6f61;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    max-width: 250px;
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    color: #333;
    margin: 10px 0;
}

.product-item p {
    color: #555;
}

/* Customize Section */
#customize {
    padding: 50px 20px;
    background-color: #ffcb2b;
    text-align: center;
}

#customize h2 {
    font-family: 'Pacifico', cursive;
    color: #333;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ff3f1f;
    color: white;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ffcb2b;
    text-decoration: none;
}

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