.about-coffee-cake-container .img-coffee-cake-left{
    border-top-left-radius: 25rem;
    border-top-right-radius: 25rem;
}

.about-coffee-cake-container .img-coffee-cake-right{
    border-bottom-left-radius: 25rem;
    border-bottom-right-radius: 25rem;
}

.about-coffee-cake-container .middle-section{
    margin:20px 0px 20px;
    font-weight:600;
}

.about-coffee-cake-container .card-section{
	background-color:#FF0365;
    border-radius: 20px;
    color: white;
	font-weight: 600;
	margin: 10px;
    padding: 20px;
}

.first-bg-image-container{
	background-image: url("../img/Blank.jpg");
	width:100%;
	height:500px;
	display: flex;
	align-items:center;
	background-size:cover;
    background-position: 70% 30%;
}

.first-bg-image-container .bg-image-contant>h2{
	color: white;

}
.first-bg-image-container .bg-image-contant{
	color: white;
    background-color: #00000099;
    width: 350px;
    border-radius: 15px;
    padding: 30px;
	transition: all .2s;
	cursor:pointer;
}

.first-bg-image-container .bg-image-contant:hover{
	box-shadow: 0px 0px 8px 10px white;
	transform: scale3d(1.06, 1.06, 2);
}

.first-bg-image-container .bg-image-contant a{
    color: #ffffff;
    text-decoration: none;
}

.bg-pink{
    background-color: #FF0365;
}

.bg-offpink{
    background-color: #FADCDD;
}

.text-offpink{
    color: #FADCDD;
}

.text-pink{
    color: #FF0365;
}


a.text-offpink:hover{
    color: #00000099;
    text-decoration: none;
}

.footer-margin{
    margin: 1.5rem 1.5rem 0rem;
}

.about-img{
    border-radius: 20rem;
    object-fit: cover;
}

.overflow-hidden-custom { 
    padding: 1em !important; /* Apply padding to the container instead */
}

.img-gallery { 
    width: 100%; /* Ensures the image scales properly */
    height: auto; 
    display: block; /* Avoids unwanted gaps */
}

.product-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.product-img:hover img {
    transform: scale(1.2);
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product-img:hover .social-icons {
    opacity: 1;
}

.social-icon {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
}

.social-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.list-group-item-custom:hover{
    background-color: #FF0365;
}

@media (max-width: 576px) {
    .mt-xsm-4 {
        margin-top: 1.5rem !important;
    }
}