/*
Theme Name: Ambadis Villas
Theme URI: https://ambadisvillas.in/
Author: Antigravity
Description: Custom WordPress theme for Ambadis Villas.
Version: 1.0
*/

/* Quantity Styles & Overrides */
.gallery-image {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    /* Fixed height for uniformity */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-item {
    margin-bottom: 30px;
}

/* Activities Styles */
.activities-image {
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
    min-width: 230px;
}

.activities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-facilities-items:hover .activities-image img {
    transform: scale(1.1);
}

.hotel-facilities-items h3 a {
    color: var(--header-color, #1a1a1a);
    /* Fallback added just in case */
    text-decoration: none;
    transition: color 0.3s;
}