
/* Reset and basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #bbbbbb;
}
header {
    background-color: #000000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1.2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links li a {
    font-weight: 700;
    font-size: 1rem;
}
main {
    flex-grow: 1;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.hero {
    text-align: center;
    margin-bottom: 60px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #bbbbbb;
}
.btn {
    background-color: #fff;
    color: #121212;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.btn:hover {
    background-color: #bbbbbb;
}
.featured-flavours {
    margin-top: 20px;
}
.featured-flavours h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-align: center;
}
.flavour-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
}
.card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
}
.card p {
    font-size: 1rem;
    color: #ccc;
}
.flavours-list h1, .shop-list h1, .contact-form-section h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}
.flavour-detail {
    background-color: #1e1e1e;
    margin: 15px 0;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
}
.flavour-detail h2 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    letter-spacing: 1.2px;
}
.flavour-detail p {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.4;
}
.shop-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.product-card {
    background-color: #1e1e1e;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    width: 320px;
    text-align: center;
}
.product-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: 1.2px;
}
.product-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.product-card button {
    background-color: #444;
    color: #ddd;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: not-allowed;
}
.contact-form-section form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form-section label {
    font-weight: 700;
    font-size: 1.1rem;
}
.contact-form-section input,
.contact-form-section textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #333;
    color: #eee;
    resize: vertical;
}
.contact-form-section button {
    width: 100%;
    background-color: #fff;
    color: #121212;
    padding: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form-section button:hover {
    background-color: #bbbbbb;
}
footer {
    background-color: #000;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}
@media (max-width: 768px) {
    .flavour-cards {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        gap: 15px;
    }
}
