﻿/* ---------- GLOBAL ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #555;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 38px 0;
}
: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);
}

/* CONTENT SECTION */
.services {
    padding: 8px 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;
        }


/* ---------- PROCESS ---------- */

.process {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: #fdf6f6;
    border-radius: 12px;
    text-align: center;
}

.process-title {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ---------- FOOTER ---------- */

/*footer {
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #666;
}

.footer-bottom {
    margin-top: 40px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 13px;
    color: #999;
}*/
