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

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

audio {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.click-button-vegan {
    position: absolute;
    top: 150px;
    left: 150px;
}

.click-button-why {
    position: absolute;
    bottom: 100px;
    right: 250px;
}

.button-image {
    width: 150px;
    height: 150px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.button-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.button-image:active {
    transform: scale(0.95);
}

/* --- START: Added CSS for hover effect --- */

/* This container holds the button and the hidden hover content.
   It needs 'position: relative' so we can position the hover content inside it. */
.hover-container {
    position: relative;
}

/* This is the box with the picture and text that appears on hover. */
.hover-content {
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth fade effect */

    position: absolute; /* Positioned relative to the .hover-container */
    top: 50%;
    left: 105%; /* Position it to the right of the button */
    transform: translateY(-50%); /* Center it vertically */

    /* Styling for the popup box */
    width: 220px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

/* Styles for the image inside the hover box */
.hover-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Styles for the text inside the hover box */
.hover-content p {
    margin: 0;
    font-size: 16px;
}

/* When you hover over the container, make the hover-content visible */
.hover-container:hover .hover-content {
    visibility: visible;
    opacity: 1;
}

/* --- END: Added CSS for hover effect --- */
