/* Full page should be white */
body {
    background: #ffffff !important;
}
.services {
    padding: 0;                   /* REMOVE ALL PADDING */
    margin: 0;                    /* Ensure no extra spacing */
    width: 100%;                  /* Full width */
    background: var(--light-lavender); /* Your color */
    text-align: center;
}
.birthday-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--light-lavender) 60%, #f8f9fb 100%);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(166, 74, 201, 0.10);
}

/* Wrapper for birthday section (white background) */
.birthday-wrapper {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

/* Gradient Card Container */
.birthday-container {
    width: 90%;
    max-width: 1400px;
    padding: 40px;
    border-radius: 20px;

    /* GRADIENT BACKGROUND */
    background: linear-gradient(135deg, #E1BEE7, #c280cf);
} 

/* Header */
.birthday-header {
    text-align: center;
    margin-bottom: 2rem;
}

.birthday-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Grid Layout – 4 per row on large screens */
.birthday-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}



.birthday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}
.birthday-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.birthday-card img {
    width: 100%;
    height: 300px;          /* Increase image height */
    object-fit: cover;
}

.birthday-card-content {
    padding: 10px;          /* Reduce padding */
    
}

.birthday-card-title {
    font-size: 0.95rem;     /* Slightly smaller */
    margin-bottom: 5px;     /* Less spacing */
}

.birthday-card-price {
    font-size: 1rem;        /* Slightly smaller */
    margin-top: 3px;        /* Reduce spacing */
}

/* Optional: remove extra bottom space inside card */
.birthday-card {
    display: flex;
    flex-direction: column;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .birthday-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .birthday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .birthday-grid {
        grid-template-columns: 1fr;
    }
}
