﻿/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

:root {
    --brand-pink: rgb(254, 53, 161);
}
/* ---------- HERO ---------- */

.hero-title {
    text-align: center;
    font-size: 42px;
    color: #5bde3f;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

    .hero img {
        width: 100%;
        height: 450px;
        object-fit: fill;
        /* filter: brightness(0.75); */
    }

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---------- SERVICES GRID ---------- */

/* HEADER */
.site-header {
    text-align: center;
    padding: 29px 1px 3px;
    background: #fff;
}

    .site-header h1 {
        margin: 0;
        color: var(--brand-pink);
        font-size: 38px;
        font-weight:bold;
    }

    .site-header p {
        margin-top: 10px;
        color: #555;
    }

/* BANNER IMAGE */
.hero-banner {
    height: 500px;
    background: url('/images/strategyplanbanner.png') center/cover no-repeat;
}

/* CONTENT SECTION */
.services {
    padding: 80px 0;
    background: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
    /* NEW: Proper alignment */
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .service-card img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: fill;
    }

    .service-card h3 {
        margin: 15px 20px 10px;
        color: var(--brand-pink);
        text-align:center;
    }

    .service-card p {
        margin: 0 20px 15px;
        line-height: 1.6;
        color: #555;
        /* NEW: keeps buttons aligned */
        flex-grow: 1;
        text-align: center;
    }

    /* CENTERED & ALIGNED BUTTON (LINK VERSION) */
    .service-card .btn-link {
        display: inline-block;
        margin: auto auto 20px auto;
        padding: 10px 18px;
        border: none;
        background: var(--brand-pink);
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        text-align: center;
    }

        /* Hover effect */
        .service-card .btn-link:hover {
            opacity: 0.9;
        }

/* SIMPLE FOOTER */
.site-footer {
    text-align: center;
    padding: 18px;
    background: #111827;
    color: #fff;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .site-header h1 {
        font-size: 28px;
    }

    .hero-banner {
        height: 40vh;
    }
}
