/* ========================================
   SERVICES PAGE STYLES - OCCASIONS CARDS
   Replace the Services section in your styles.css
   ======================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Services Intro Section */
.services-intro {
    background: #f8f5f0;
    padding: 4rem 3rem;
}

.services-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.note-box {
    background: #fff;
    border-left: 4px solid #c9a961;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.note-box p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1rem;
}

/* Occasions Cards Section */
.occasions-section {
    background: #fff;
    padding: 5rem 3rem;
}

.occasions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.occasion-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.card-image {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.occasion-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: white;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.card-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.card-btn:hover {
    background: #c9a961;
    border-color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

/* Offerings Section */
.offerings-section {
    background: #f8f5f0;
    padding: 5rem 3rem;
}

.offerings-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.offerings-container h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.offering-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.offering-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.offering-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    height: 100px;
    display: flex;
    justify-content: center;
}

.offering-icon img {
    height: 100%;
}

.offering-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offering-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 3rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #c9a961;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid #c9a961;
    color: #c9a961;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.cta-btn:hover {
    background: #c9a961;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Responsive Styles for Services Page */
@media (max-width: 1024px) {
    .occasions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 300px;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .occasions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image {
        height: 350px;
    }

    .card-content h3 {
        font-size: 1.6rem;
    }

    .offerings-container h2 {
        font-size: 2rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}