/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #4a3728;
    background-color: #fffaf0;
}

header {
    background-color: #d2691e;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav {
    display: flex;
    justify-content: center;
    background: #8b4513;
    padding: 0.7rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Sections */
.about-section {
    text-align: center;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.cookie-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.cookie-card h3 {
    color: #d2691e;
    margin-top: 0;
}

.price {
    font-weight: bold;
    font-size: 1.3rem;
    color: #8b4513;
    margin-top: 15px;
}

/* Contact Form */
.contact-form {
    background: #fdf5e6;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px dashed #d2691e;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

button {
    background-color: #d2691e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
}

button:hover {
    background-color: #8b4513;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #4a3728;
    color: white;
    margin-top: 60px;
}