
.fleur-de-leah-regular {
    font-family: "Fleur De Leah", serif;
    font-weight: 400;
    font-style: normal;
  }
  
.header {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center; /* Center align for smaller screens */
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services__title {
    color: #000000;
    margin-bottom: 20px;
    font-size: 4rem;
    text-align: center; /* Center align for smaller screens */
    font-family: "Pinyon Script", serif;
}

.services__buttons {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap to the next line */
    gap: 20px;
    margin: 20px 0;
    justify-content: center; /* Center align buttons on all screens */
}

.services__button_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 300px;
    height: 300px;
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('/assets/images/img20.jpeg') no-repeat center/cover;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
    font-family: "Pinyon Script", serif;
}
.services__button_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 300px;
    height: 300px;
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('/assets/images/img7.jpg') no-repeat center/cover;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
    font-family: "Pinyon Script", serif;
}
.services__button_3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 300px;
    height: 300px;
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('/assets/images/luisa-brimble-2RrBE90w0T8-unsplash.jpg') no-repeat center/cover;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
    font-family: "Pinyon Script", serif;
}

.services__button_1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.services__button_1:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.services__button_2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.services__button_2:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.services__button_3:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.services__button_3:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        font-size: 2rem;
    }

    .services__title {
        font-size: 2rem;
    }

    .services__button {
        width: 150px;
        height: 80px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header, .services__title {
        font-size: 1.5rem;
    }

    .services__button {
        width: 120px;
        height: 60px;
        font-size: 0.9rem;
    }
}

