/* ══════════════════════════════════════════
   1. UNIVERSAL RESET & VARIABLES
   ══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Source+Sans+Pro:wght@400;700&display=swap');

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

:root {
    --white: #ffffff;
    --orange: #e67e22;
    --dark-orange: #ca6f1e;
    --black: #111111;
    --light-gray: #f5f5f5;
    --mid-gray: #666666;
    --grey: #eeeeee;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', Georgia, serif; 
}

/* ══════════════════════════════════════════
   2. NAVIGATION & FOOTER (Responsive Fix)
   ══════════════════════════════════════════ */

.navbar, nav {
    background-color: var(--black);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo, nav h2 {
    color: var(--orange);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: bold;
}

.nav-links, nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links li a, nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--orange);
}

.footer, footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 24px;
}

/* ══════════════════════════════════════════
   3. SECTION HEADERS
   ══════════════════════════════════════════ */

.section-header { 
    text-align: center; 
    padding: 60px 20px 40px; 
    max-width: 900px;
    margin: 0 auto;
}

.section-header h1, 
.section-header h2 { 
    font-size: 3rem; 
    color: var(--black);
    margin: 0 0 10px 0; 
}

.section-header p { 
    color: var(--orange); 
    font-style: italic; 
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════
   4. HERO SLIDER & HOME COMPONENTS
   ══════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.55);
    padding: 36px 48px;
    border-radius: 8px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-box {
    background-color: var(--black);
    border-top: 4px solid var(--orange);
    padding: 24px 16px;
    text-align: center;
}

.stat-num {
    font-size: 2.4rem;
    color: var(--orange);
    display: block;
}

/* ══════════════════════════════════════════
   5. EQUIPMENT LIBRARY
   ══════════════════════════════════════════ */

.inventory-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    padding: 20px 10% 60px; 
}

.item-card { 
    background: var(--white);
    border: 1px solid #ddd; 
    padding: 20px; 
    text-align: center; 
    position: relative; 
    transition: var(--transition);
}

.item-card:hover { border-color: var(--orange); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.placeholder-img { 
    font-size: 3rem; 
    padding: 20px; 
    background: var(--grey); 
    margin-bottom: 15px; 
    display: block;
}

.badge { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: var(--orange); 
    color: white; 
    padding: 3px 8px; 
    font-size: 0.7rem; 
    font-weight: bold;
    border-radius: 3px;
}
    
.price { 
    display: block; 
    color: var(--orange); 
    font-weight: bold; 
    margin-bottom: 15px; 
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════
   6. CATERER DIRECTORY
   ══════════════════════════════════════════ */

.caterer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    padding: 20px 10% 80px; 
}

.caterer-card { 
    background: var(--white);
    border: 1px solid #eee; 
    transition: var(--transition); 
}

.caterer-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.card-img { 
    height: 180px; 
    background: #f9f9f9; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 4rem; 
}

.card-info { padding: 24px; text-align: center; }

.tag { 
    display: inline-block;
    color: var(--orange); 
    font-weight: bold; 
    font-size: 0.8rem; 
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ══════════════════════════════════════════
   7. LEAD SHARING & EDUCATION
   ══════════════════════════════════════════ */

.lead-sharing-container { 
    background: var(--black); 
    color: white; 
    padding: 60px 10%; 
    text-align: center; 
    border-radius: 10px;
}

/* Adjust section header specifically for lead sharing */
.lead-sharing-container .section-header h2 { color: var(--white); }

.process-steps { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

.step { 
    background: #1c1c1c;
    border: 1px solid var(--orange); 
    padding: 20px; 
}

.step-num { font-size: 2rem; color: var(--orange); font-weight: bold; display: block; }

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 10% 80px;
}

.edu-card {
    background: var(--light-gray);
    border: 1px solid #ddd;
    border-top: 4px solid var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

/* ══════════════════════════════════════════
   8. BUTTONS & RESPONSIVE
   ══════════════════════════════════════════ */

.btn-outline { 
    border: 2px solid var(--black); 
    padding: 10px 20px; 
    text-decoration: none; 
    color: var(--black); 
    font-weight: bold; 
    display: inline-block; 
}

.btn-solid, .edu-link { 
    background: var(--black); 
    color: var(--white); 
    padding: 12px; 
    text-decoration: none; 
    display: block; 
    text-align: center;
    font-weight: bold; 
    transition: var(--transition);
}

.btn-solid:hover, .edu-link:hover { background: var(--orange); }

@media (max-width: 768px) {
    .navbar, nav { flex-direction: column; padding: 20px; }
    .nav-links, nav ul { flex-direction: column; width: 100%; gap: 10px; margin-top: 15px; padding: 0; }
    .nav-links li a { display: block; padding: 10px; background: #1a1a1a; text-align: center; border-radius: 4px; }
    
    .inventory-grid, .caterer-grid, .education-grid, .stats-row, .process-steps {
        grid-template-columns: 1fr;
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-header h1, .section-header h2 { font-size: 2.2rem; }
}