/* Catering Packages Page CSS */

.packages-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 8px;
}

.packages-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.packages-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.packages-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.package-card.popular {
    border-top: 4px solid #f39c12;
    transform: scale(1.02);
}

.package-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-body {
    padding: 30px 20px;
    flex-grow: 1;
}

.package-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 12px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    color: #667eea;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-special-note {
    background: #f0f7ff;
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.package-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.package-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.no-packages {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .packages-hero h1 {
        font-size: 1.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}
