/* Catering Page Specific Styles */
.catering-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.catering-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.catering-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF6B00;
    animation: expandLine 1.5s ease-out forwards;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 80px; }
}

.catering-content {
    max-width: 1500px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.catering-content h2 {
    color: #003366;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.catering-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF6B00;
}

.catering-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.8);
    color: white;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.services-list {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-list h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 0.8rem 0 0.8rem 30px;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #FF6B00;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.testimonial {
    background: #f5f5f5;
    padding: 1.5rem;
    border-left: 4px solid #FF6B00;
    margin: 3rem 0;
}

.testimonial blockquote {
    margin: 0;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #003366;
    font-style: normal;
}

.catering-cta {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
}

.catering-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.catering-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #FF6B00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid #FF6B00;
}

.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .catering-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .catering-content {
        padding: 0 1rem;
    }
    
    .services-list {
        padding: 1.5rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.2rem;
    }
    
    .catering-cta {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .catering-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .catering-hero h1 {
        font-size: 2rem;
    }
    
    .services-list li {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .services-list li::before {
        font-size: 0.8rem;
        top: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}