/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Typography */
h1, h2, h3, h4, h5, h6,
.title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
}

p, span, div, .subtitle, .content {
    font-family: 'Lato', sans-serif !important;
}

/* Hero Banner */
.custom-hero-banner {
    position: relative;
    min-height: clamp(160px, 35vh, 320px);
    background-image: url('https://lollipopspartypackages.ca/wp-content/uploads/2025/12/lollipop-party-packages-services.avif');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
}

.custom-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-content {
    padding: clamp(16px, 4vw, 32px) clamp(16px, 4vw, 40px);
    max-width: min(90vw, 900px);
    width: 100%;
    text-align: center;
}

.banner-title {
    color: #CCB693;
    font-size: clamp(22px, 4vw, 40px);
    margin: 0 0 clamp(8px, 1.5vh, 20px) 0;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.banner-breadcrumbs {
    color: #ffffff;
    font-size: clamp(12px, 2.5vw, 18px);
    position: relative;
    z-index: 10;
    margin-bottom: clamp(12px, 2vh, 20px);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .banner-content {
        max-width: 95vw;
        padding: 16px 16px 20px;
    }
}

.services-container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #46332A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    color: white;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-card h2, 
.service-card h3 {
    padding: 0;
    margin: 0 0 1rem 0;
    color: white;
    text-align: left;
}

.service-card p {
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.view-more {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 1rem;
    background-color: #6c7a4a;
    border-radius: 6px;
    color: white !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
    align-self: flex-end;
}

.view-more:hover {
    background-color: #7a8a5a;
}

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

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

    .service-card {
        padding: 1rem;
    }
}
