/* ZN1 CATERING CSS - POLISHED UX/UI */
:root {
    /* Brand Colors */
    --color-coffee-dark: #2A1F18;
    --color-coffee-medium: #4A3A2F;
    --color-coffee-light: #7A6556;
    --color-copper: #B8865B;
    --color-copper-dark: #9F7249;
    --color-copper-light: #D6A67B;
    
    /* Backgrounds */
    --color-bg-main: #FAF8F5; /* Warm Off White / Cream */
    --color-card-bg: #FFFFFF;
    --color-card-featured: #F3EFE9;
    
    /* Borders */
    --color-border: #E8E0D5;
    
    /* Typography */
    --font-primary: 'Tajawal', sans-serif;
    
    /* Layout */
    --radius-lg: 16px;
    --radius-md: 8px;
    --shadow-subtle: 0 4px 20px rgba(42, 31, 24, 0.05);
    --shadow-hover: 0 8px 30px rgba(42, 31, 24, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-coffee-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-coffee-dark);
    color: white;
    padding: 8px;
    z-index: 100;
}
.skip-link:focus { top: 0; }

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION (COMPACT)
   ========================================= */
.hero-section {
    text-align: center;
    padding-top: 36px;
    padding-bottom: 12px;
}

.logo-wrapper {
    width: 115px; /* Mobile size */
    margin: 0 auto 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-label {
    color: var(--color-copper);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--color-coffee-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-desc {
    color: var(--color-coffee-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 32px;
}

/* =========================================
   PACKAGES GRID
   ========================================= */
.packages-section {
    padding-bottom: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
}

/* =========================================
   CARDS
   ========================================= */
.package-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 24px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.package-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.premium-highlight {
    background: var(--color-card-featured);
    border-color: var(--color-copper-light);
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: var(--color-copper);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-coffee-dark);
    margin-bottom: 8px;
}

.package-price {
    color: var(--color-copper-dark);
    font-weight: 800;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-value { font-size: 2rem; }
.price-currency { font-size: 1.2rem; }

.card-body {
    flex-grow: 1; /* Pushes footer to bottom */
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-coffee-medium);
}

.package-features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.card-footer {
    margin-top: auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-copper);
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--color-copper-dark);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.contact-section {
    padding: 20px 0 40px;
    text-align: center;
}

.contact-card, .review-wrapper {
    display: none; /* Removed as requested by UX focus, only Back Link matters */
}

.footer-links {
    margin-top: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-coffee-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-copper);
    transform: translateX(-4px);
}

/* =========================================
   DESKTOP RESPONSIVE
   ========================================= */
@media (min-width: 768px) {
    .hero-section {
        padding-top: 48px;
    }
    
    .logo-wrapper {
        width: 130px; /* Desktop Size */
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .hero-desc {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
