:root {
    --primary-color: #272729;
    --secondary-color: #fffef7;
    --third-color: #cc58a0;
    --forth-color: #148cc5;
    --fifth-color: #f0512b;
    --sixth-color: #f4d9e0;

}

body {
         
        background-color: var(--forth-color);

}
.secondmenu{
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-family: "averia serif libre", serif;
    text-align: center;
}

.subtitle {
    text-align: center;
    display: block;
    font-size: 12px;
    padding: 20px;
    color: var(--secondary-color);
    font-family: "averia serif libre", serif;
}


h3 {
    color: var(--third-color);
}

/* Container for the three boxes */
.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap; /* Allows boxes to stack on small screens */
}

/* Individual Box Styling */
.card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 280px; /* Prevents boxes from getting too skinny */
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Photo Placeholder at the top */
.card-image {
    width: 100%;
    height: 350px;
    background-color: #e0e0e0; /* Light grey placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text area at the bottom */
.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
    font-family: 'Averia Serif Libre', serif;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This crops the image to fit the box perfectly */
    display: block;
}

.crispy {
    list-style: none;
    padding: 0;
    font-family: "averia serif libre", serif;}

.crispy li {
    margin-bottom: 10px;
}

.crispy a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.crispy a:hover {
    color: var(--fifth-color); /* Or your preferred brand color */
}