/* ── GLOBAL RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── COLOURS ── */
:root {
    --white: #ffffff;
    --orange: #e67e22;
    --black: #111111;
    --light-gray: #f5f5f5;
    --dark-orange: #ca6f1e;
    --mid-gray: #666666;
}

/* ── BODY ── */
body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */

.navbar {
    background-color: var(--black);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: var(--orange);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-bottom: 3px;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: var(--orange);
}

.nav-links li a.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slides {
    width: 100%;
    height: 100%;
}

.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: contain;
}

.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;
}

.hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text a {
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 26px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.hero-text a:hover {
    background-color: var(--dark-orange);
}

/* ══════════════════════════════════════════
   MAIN & TYPOGRAPHY
══════════════════════════════════════════ */

main {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h1,
.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 6px;
}

.section-header p {
    font-size: 1rem;
    color: var(--mid-gray);
}

main h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    color: var(--orange);
    margin: 30px 0 10px;
}

main h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin: 20px 0 6px;
}

main p {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 10px;
}

main ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

main ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}

main > a,
main .section-header + a {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 26px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 10px;
    transition: background-color 0.2s;
}

main > a:hover,
main .section-header + a:hover {
    background-color: var(--dark-orange);
}

/* ══════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════ */

/* ── HR ── */
hr {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 36px 0;
}

/* ── CARDS ── */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: var(--light-gray);
    border-top: 4px solid var(--orange);
    border-radius: 6px;
    padding: 24px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--black);
}

.card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 16px;
}

.card a {
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.2s;
}

.card a:hover {
    background-color: var(--dark-orange);
}

/* ── BLOCKQUOTE ── */
blockquote {
    background-color: var(--light-gray);
    border-left: 4px solid var(--orange);
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
}

blockquote p {
    font-style: italic;
    margin-bottom: 6px;
}

blockquote footer {
    font-weight: bold;
    color: var(--orange);
    background: none;
    padding: 0;
}

/* ── BUTTONS ── */
.btn-outline {
    display: inline-block;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 7px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
}

.btn-solid {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.2s;
}

.btn-solid:hover {
    background-color: var(--orange);
}

/* ── BADGE / TAG / PRICE ── */
.badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 40px 24px;
}

.footer-content p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #cccccc;
}

.footer-content p:last-child {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #888888;
}

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */

/* ── STATS ROW ── */
.intro-section .section-header p {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.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);
    border-radius: 6px;
    padding: 24px 16px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--orange);
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── ABOUT PREVIEW ── */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-preview-text .section-header {
    margin-bottom: 16px;
}

.about-body {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 2px;
}

.about-value-item p {
    font-size: 0.9rem;
    color: var(--mid-gray);
    margin: 0;
}

.about-preview-link {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.about-preview-link:hover {
    background-color: var(--dark-orange);
}

.about-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-highlight-card {
    border-radius: 8px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-highlight-card.dark {
    background-color: var(--black);
}

.about-highlight-card.dark h3 { color: var(--orange); }
.about-highlight-card.dark p  { color: #bbbbbb; }

.about-highlight-card.orange {
    background-color: var(--orange);
}

.about-highlight-card.orange h3 { color: var(--white); }
.about-highlight-card.orange p  { color: rgba(255,255,255,0.85); }

.highlight-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlight-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-highlight-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.55;
}

/* ── WHY CHOOSE US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.why-card {
    background-color: var(--light-gray);
    border-top: 4px solid var(--orange);
    border-radius: 6px;
    padding: 24px;
}

.why-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── OFFER BLOCKS ── */
.offer-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-block {
    border-radius: 10px;
    padding: 36px 40px;
}

.offer-block.dark {
    background-color: var(--black);
}

.offer-block.dark .offer-text h3  { color: var(--orange); }
.offer-block.dark .offer-text > p { color: #cccccc; }

.offer-block.light {
    background-color: var(--light-gray);
    border-top: 4px solid var(--orange);
}

.offer-block.light .offer-text h3  { color: var(--black); }
.offer-block.light .offer-text > p { color: #555; }

.offer-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.offer-text > p {
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 700px;
    line-height: 1.7;
}

.offer-link {
    display: inline-block;
    margin-top: 24px;
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.offer-link:hover {
    background-color: var(--dark-orange);
}

/* Dark block overrides for nested item cards */
.offer-block.dark .item-card {
    background-color: #1c1c1c;
    border-color: #333;
}

.offer-block.dark .item-card h3 { color: var(--white); }

/* ── CTA ── */
.cta-section {
    text-align: center;
    padding: 20px 0 10px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.cta-primary:hover { background-color: var(--dark-orange); }

.cta-secondary {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.cta-secondary:hover { background-color: #333; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */

.services-page {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 24px;
}

.services-page .section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 6px;
}

.services-page > header.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-page > header.section-header h1 { font-size: 2.4rem; }

/* ── Lead Sharing ── */
.lead-sharing-container {
    background-color: var(--black);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 48px;
}

.lead-sharing-container .content-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.lead-sharing-container .content-box p {
    color: #cccccc;
    margin-bottom: 28px;
    font-size: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background-color: #1c1c1c;
    border-top: 3px solid var(--orange);
    border-radius: 6px;
    padding: 20px;
}

.step-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.step h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.step p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
}

/* ── Education ── */
.education-section { margin-bottom: 48px; }

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.home-edu-grid { grid-template-columns: repeat(3, 1fr); }

.edu-card {
    background-color: var(--light-gray);
    border-top: 4px solid var(--orange);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.edu-category {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.edu-content h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 8px;
}

.edu-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.edu-date {
    display: block;
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-style: italic;
}

.edu-link {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.2s;
}

.edu-link:hover { background-color: var(--orange); }

/* ── Equipment Library ── */
.library-section { margin-bottom: 48px; }

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.item-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px;
}

.item-card h3 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 8px;
}

/* ── Caterer Directory ── */
.directory-section { margin-bottom: 48px; }

.caterer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.caterer-card {
    background-color: var(--light-gray);
    border-left: 5px solid var(--orange);
    border-radius: 6px;
    padding: 24px;
}

.card-info h3 {
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 6px;
}

.card-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

.contact-page {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 24px;
}

.contact-hero {
    background-color: var(--black);
    color: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 32px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--orange);
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.contact-hero p {
    color: #dddddd;
    max-width: 760px;
    margin: 0;
    font-size: 1rem;
}

.contact-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background-color: var(--white);
    border: 1px solid #e6e6e6;
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    padding: 28px;
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--orange);
}

.contact-card p {
    margin-bottom: 10px;
    color: var(--black);
}

.contact-details p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 768px) {
    .stats-row      { grid-template-columns: repeat(2, 1fr); }
    .why-grid       { grid-template-columns: repeat(2, 1fr); }
    .home-edu-grid  { grid-template-columns: 1fr; }
    .offer-block    { padding: 24px 20px; }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .slide img    { height: 100vh; }

    .hero-text {
        padding: 20px 24px;
        width: 90%;
    }

    .hero-text h1 { font-size: 1.4rem; }

    .section-header h1,
    .section-header h2 { font-size: 1.5rem; }

    .stats-row,
    .why-grid,
    .cards,
    .process-steps,
    .education-grid,
    .inventory-grid,
    .caterer-grid,
    .contact-summary { grid-template-columns: 1fr; }

    .contact-hero { padding: 28px 22px; }
    .contact-hero h1 { font-size: 1.8rem; }
}