/* Custom styles for Domus on top of Pico CSS */

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)),
        url('../img/hero-background.jpg') center/cover no-repeat;
    /* If img/hero-background.png doesn't exist, it falls back to the gradient */
    border-radius: var(--pico-border-radius);
    margin-bottom: var(--pico-block-spacing-vertical);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Icons */
.fa-2x {
    color: var(--pico-primary);
    margin-bottom: 0.5rem;
}

/* Article Cards Hover Effect */
article {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--pico-primary);
}

/* Gallery adjustments */
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--pico-border-radius);
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Location text centering */
.center-text {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.25rem;
}

/* WhatsApp Button Color Override if needed (Pico 'contrast' is usually white/black) */
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}