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

body {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c6ac90;
    /* Beige background */
    min-height: 100vh;
    color: #3d2b1f;
}

/* Background Image */
body {
    background-image: url('https://res.cloudinary.com/dylpwwym5/image/upload/v1730523824/background_qm3gdx.jpg');
    background-size: cover;
    /* Ensure the image covers the entire area */
    background-position: center;
    /* Center the background image */
}

/* Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate Image */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Container Styles */
.container {
    text-align: center;
    max-width: 1000px;
    padding: 20px;
    position: relative;
    animation: fadeIn 1s ease forwards;
}

/* Top and Bottom Text */
.top-text,
.bottom-text {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.top-text {
    animation-delay: 0.5s;
}

.bottom-text {
    animation-delay: 1.5s;
}

/* Image Styles */
.image-wrapper {
    position: absolute;
    width: 250px;
    /* Set a larger width */
    height: 350px;
    /* Set a larger height */
    overflow: hidden;
    /* Prevent overflow */
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.image-wrapper img {
    width: 100%;
    /* Make image width 100% */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 10px;
    animation: bounce 2s infinite;
    /* Bounce animation for the first image */
}

/* Positioning the Left Image */
.left {
    top: 150px;
    /* Increased top position */
    left: -120px;
    /* Moved further left */
    animation-delay: 1s;
}

/* Main Text Styling */
.main-text {
    margin-top: 200px;
    /* Increased margin to move text down */
    color: #3d2b1f;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.main-text h1 {
    font-size: 48px;
    font-weight: bold;
    position: relative;
}

.main-text p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Shop Button with Hover Animation */
.shop-button {
    background-color: #3d2b1f;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.shop-button:hover {
    transform: scale(1.05);
    /* Adjust hover effect */
}