* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 30px;
    color: #2c3e50;
}

.header h2 {
    font-size: 24px;
    color: #e74c3c;
    margin-top: 10px;
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.video-section {
    text-align: center;
    margin-bottom: 40px;
}

.video-placeholder {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 700px;
    height: 400px;
    background-image: url(../images/sumatra-slim-pop-gif.gif);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-size: cover;
}



.video-placeholder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 1s infinite;
}

.video-placeholder img:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}


.video-placeholder img:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-description {
    font-size: 16px;
    margin: 15px 0;
    color: #555;
}

.watch-button {
    padding: 12px 25px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.watch-button:hover {
    background-color: #3498db;
}

.attention {
    font-size: 16px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.ingredients {
    margin: 30px 0;
    text-align: center;
}

.ingredients h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 20px;
}

.ingredients p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.ingredient-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ingredient {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ingredient-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ingredient h4 {
    font-size: 20px;
    color: #1d3557;
    margin-bottom: 5px;
}

.latin-name {
    font-style: italic;
    font-size: 14px;
    color: #0a93f4 !important;
    margin-bottom: 10px;
}

.ingredient ul {

    padding-left: 0;
    text-align: start;
}

.ingredient ul li {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 15px;
}

.footer p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .ingredient-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .header h1 {
        font-size: 24px;
    }

    .header h2 {
        font-size: 16px;
    }

    .ingredients h3 {
        font-size: 20px;
    }

    .ingredients p {
        font-size: 15px;
    }

    .ingredient h4 {
        font-size: 17px;
    }

    .ingredient ul li {
        font-size: 9px;
    }

    .video-placeholder img {

        width: 145px;

    }

    .video-placeholder {

        height: 179px;
    }

}

@media (max-width: 480px) {
    .ingredient-list {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients p {
        font-size: 11px !important;
    }
}

