/* ===================================
   CATERING PAGE STYLES
   =================================== */

.catering-platters {
    background-image: url('../images/sando.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.catering-platters h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.platter-carousel {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 300%;
}

.carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--white);
}



.spice-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.how-it-works {
    background-image: url('../images/gland.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    background-color: var(--yellow);
}

.step-number {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-number img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.catering-info {
    background-color: var(--primary-green);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 12px;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}






/* Desktop carousel sizing */
@media (min-width: 1025px) {
    .carousel-container {
        max-width: 700px;
    }
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .platter-options {
        gap: 20px;
        max-width: 100%;
    }
    
    .process-steps {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
}