/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #1a1a1a, #333);
    color: #f5f5f5;
    overflow-x: hidden;
}

header {
    background: #222;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffcc00;
    transition: transform 0.3s;
}

header .logo:hover {
    transform: scale(1.1);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1em;
    position: relative;
    transition: color 0.3s;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    display: block;
    background: #ffcc00;
    transition: width 0.3s;
    bottom: -5px;
    left: 0;
}

header nav ul li a:hover::after {
    width: 100%;
}

main {
    margin-top: 100px;
    padding: 20px;
}

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

.section .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

#intro .animated-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.benefits-container,
.recipes-container,
.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit,
.recipe,
.product {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-top: 10px;
    font-size: 1.2em;
}

form input,
form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #f5f5f5;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    border-color: #ffcc00;
}

form button {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffcc00;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
    background-color: #cc5500;
    transform: translateY(-3px);
}

footer {
    background: #222;
    color: #f5f5f5;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}