
/* Media query for large screens and above */
@media (min-width: 1024px) {
    section {
        justify-content: space-evenly;  /* Distribute items evenly with equal spacing */
    }

    .popular_cake, .bento_cake, .cup_cakes {
        width: 30%;  /* Each section takes up 30% of the available space on larger screens */
    }

    .popular_box video,
    .bento_cake img,
    .cup_cakes img {
        width: 100%;
        height: 400px; /* Increase the height for larger screens */
        object-fit: cover;
    }

    
    
    .popular_cake h2,
    .bento_cake h2,
    .cup_cakes h2 {
        top: 10px;  /* Adjust top position for medium screens */
        left: 50%;
        transform: translateX(-50%);
        border-radius: 5px;
    }

    .custom-orders {
        text-align: center;
        padding: 40px;
        background-color: white;
    }
    
    
    
    .order-button-custom{
        display: block;
        margin: 20px auto;
        width: 500px;
        justify-content: center;
        padding: 20px 30px;
        margin-top: 20px;
        background-color:#c8b6ff;
        color: white;
        text-decoration: none;
        font-weight: bold;
        font-size: 30px;
        border-radius: 5px;
        transition: background 0.3s ease;
    }
    
    .order-button-custom:hover {
        background-color:#a88ff3 ;
    }
    
        .custom-orders img {
            max-width: 500px;
            border-radius: 70px;
            padding: 50px; /* Large screens */
        }

        .custom-orders {
            display: block;
        }
        
      #contact-container{
        max-width: 100%;
        text-align: center;
      }

    }


