/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    background-color: #fff5f5;
    color: #333;
    padding: 0;
}

header {
    background-color: #ff9a9e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.header-img {
    height: 100px;
    margin-bottom: 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
    background-color: #ff6b6b;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
    color: #fffacd;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

h1, h2, h3 {
    color: #d35656;
    margin-bottom: 1rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Home Page Styles */
.intro {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.fun-facts li {
    margin-bottom: 0.5rem;
}

.fun-box {
    text-align: center;
    padding: 2rem;
    background-color: #fadadd;
    border-radius: 10px;
}

button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Comic Neue', cursive;
    margin-bottom: 1rem;
}

button:hover {
    background-color: #d35656;
    transform: scale(1.05);
}

/* Flavors Page Styles */
.flavor-list li {
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.3s;
}

.flavor-list li:hover {
    color: #ff6b6b;
    transform: translateX(10px);
}

.flavor-rating {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-methods {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-methods li {
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.contact-methods a {
    color: #ff6b6b;
    text-decoration: none;
}

.contact-methods a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Comic Neue', cursive;
}

.contact-form textarea {
    height: 100px;
}

/* 404 Page Styles */
.error-page {
    text-align: center;
    padding: 4rem 1rem;
}

.error-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background-color: #ff9a9e;
    color: white;
}

footer a {
    color: #fffacd;
}