/* Gallery Page Styles - Based on Home Page structure with Premium Enhancements */

.gallery-one {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Premium Hover Effect for Gallery Cards */
.gallery-one__card {
    position: relative;
    border-radius: 30px; /* Rounded corners as per previous request/screenshot */
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Shimmer Sweep */
.gallery-one__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 5;
    pointer-events: none;
}

.gallery-one__card:hover::before {
    left: 150%;
}

.gallery-one__card img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Physics */
.gallery-one__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-one__card:hover img {
    transform: scale(1.1);
}

/* Hover Overlay and Button (Matching Screenshot) */
.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.gallery-one__card:hover .gallery-one__card__hover {
    opacity: 1;
}

/* Pink Button with White Plus Icon - Overriding Template Defaults */
.gallery-one__card__icon {
    width: 80px;
    height: 80px;
    background: #e91e63 !important; /* AROS Pink */
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.4) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
    position: relative;
}

.gallery-one__card:hover .gallery-one__card__icon {
    transform: scale(1) rotate(0deg);
}

/* Kill Template Plus Lines */
.gallery-one__card__icon::after {
    content: none !important;
}

.gallery-one__card__icon::before {
    content: "\f067" !important; /* FontAwesome Plus icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    color: #fff !important;
    font-size: 32px !important;
    /* Reset template properties */
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    transition: none !important;
}
