/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f8fbff;
    color: #0f172a;
    line-height: 1.6;
  }
  
  /* =========================
     HEADER & NAV
  ========================= */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  }
  
  .nav-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 1.5rem;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* LOGO */
  .logo img {
    height: 100px;
    width: auto;
    display: block;
  }




/* =========================
   HERO SECTION
========================= */
.hero {
    min-height: 75vh;
    background-image: url("../images/hero.jpg"); /* ADD IMAGE HERE */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    background: url("../images/hero.jpg") center/cover no-repeat;
    color: #fff;
  }
  
  
  .hero-overlay {
    background: rgba(2, 132, 199, 0.75);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 18px;
    max-width: 700px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
  }
  
  .hero-btn {
    background: white;
    color: #0284c7;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
  }
  
  .hero-btn:hover {
    background: #0f172a;
    color: white;
  }
  







  
  /*=======================NAV MENU (DESKTOP)============= */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }
  
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
  }
  
  /*======================= UNDERLINE HOVER=================== */
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after {
    width: 100%;
  }
  
  /*===============================BOOK NOW BUTTON =============*/
  .book-btn {
    background: #ffffff;
    color: #0284c7 !important;
    padding: 0.45rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
  }
  
  .book-btn::after {
    display: none;
  }
  
  .book-btn:hover {
    background: #0f172a;
    color: #ffffff !important;
  }
  
  /* =================================
     DROPDOWN MENU
  ====================================*/
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    padding: 0.6rem 0;
    display: none;
    z-index: 9999;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #0f172a !important;
    white-space: nowrap;
  }
  
  .dropdown-menu a:hover {
    background: #e0f2fe;
  }
  
  /* DESKTOP HOVER */
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
      display: block;
    }
  }
  
  /* ===================================
     MOBILE NAV
  ====================================== */
  .menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      width: 260px;
      background: #e0f2fe;
      border-radius: 12px;
      flex-direction: column;
      padding: 0.8rem 0;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }
  
    .nav-menu a {
      color: #0f172a;
      padding: 0.8rem 1.2rem;
    }
  
    .nav-menu a::after {
      display: none;
    }
  
    .nav-wrapper.open .nav-menu {
      display: flex;
    }
  
    .book-btn {
      margin: 0.6rem 1.2rem;
      text-align: center;
    }
  
    /*================================
     MOBILE DROPDOWN 
     =================================*/
    .dropdown-menu {
      position: static;
      box-shadow: none;
      background: #f0f9ff;
      border-radius: 0;
    }
  
    .dropdown.open .dropdown-menu {
      display: block;
    }
  }
  
  /* =========================
     MAIN CONTENT
  ========================= */
  main {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
  }
  
  .page-title {
    font-size: 2.4rem;
    color: #0284c7;
    margin-bottom: 1.2rem;
  }
  
  .card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  /* =========================
     TRUCKS PAGE
  ========================= */
  .page-hero {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
  }
  
  .trucks-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
  }
  
  .truck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .truck-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .truck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }
  
  .truck-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .truck-card h3 {
    padding: 1rem 1rem 0.5rem;
  }
  
  .truck-card p {
    padding: 0 1rem 1.5rem;
    color: #475569;
  }
  


  
  /* =========================
   FAQ CHAT WIDGET
========================= */

.faq-chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #38bdf8;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
  }
  
  .faq-chat-box {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 300px;
    max-height: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    z-index: 9999;
  }
  
  .faq-chat-header {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px 18px 0 0;
  }
  
  .faq-chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
  }
  
  .faq-chat-messages {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
    font-size: 0.9rem;
  }
  
  .faq-bot-message,
  .faq-user-message {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    max-width: 90%;
  }
  
  .faq-bot-message {
    background: #f1f5f9;
    color: #0f172a;
  }
  
  .faq-user-message {
    background: #38bdf8;
    color: white;
    margin-left: auto;
  }
  
  .faq-chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
  }
  
  .faq-chat-input input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #cbd5f5;
    outline: none;
  }
  
  .faq-chat-input button {
    margin-left: 8px;
    background: #38bdf8;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    cursor: pointer;
  }
  
  /* Mobile friendly */
  @media (max-width: 480px) {
    .faq-chat-box {
      width: 90%;
      right: 5%;
    }
  }
  
  
  /* =========================
     FOOTER
  ========================= */
  .site-footer {
    background: #0f172a;
    color: #e5e7eb;
    margin-top: 4rem;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .footer-bottom {
    background: #020617;
    text-align: center;
    padding: 1.4rem;
    font-size: 0.85rem;
    color: #cbd5f5;
  }
 

  /* =====================================
   HOMEPAGE SECTIONS
==========================================*/

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
                url("../images/hero-food.jpg") center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    max-width: 400px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-primary {
    background: #e63946;
    color: #fff;
  }
  
  .btn-secondary {
    border: 2px solid #fff;
    color: #fff;
  }
  
  /* SERVICES */
  .services {
    padding: 80px 20px;
    text-align: center;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
  }
  
  /* TRUCKS */
  .trucks-preview {
    background: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
  }
  
  .trucks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .truck-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
  }
  
  /* WHY US */
  .why-us {
    padding: 70px 20px;
    text-align: center;
  }
  
  .why-list {
    max-width: 600px;
    margin: 30px auto 0;
    list-style: none;
    padding: 0;
  }
  
  .why-list li {
    margin: 12px 0;
    font-size: 1.05rem;
  }
  
  /* SERVICE AREAS */
  .service-areas {
    background: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  /* CTA */
  .cta {
    padding: 80px 20px;
    text-align: center;
    background: #e63946;
    color: #fff;
  }
  
  .cta .btn-primary {
    background: #fff;
    color: #e63946;
    margin-top: 20px;
  }

  







  /* =========================
   SWIPER SLIDER
========================= */
.slider-section {
    padding: 4rem 1.5rem;
    background: #f8fbff;
  }
  
  .swiper {
    max-width: 1100px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
  

  
  .highlights {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  }
  
  .highlight-card .icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.8rem;
  }
  
  .highlight-card h3 {
    color: #0f172a;
    margin-bottom: 0.4rem;
  }
  
  .highlight-card p {
    color: #475569;
    font-size: 0.95rem;
  }

  
  .services {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }
  
  .service-card h3 {
    margin-bottom: 0.6rem;
    color: #0f172a;
  }
  
  .service-card p {
    color: #475569;
    margin-bottom: 1rem;
  }
  
  .service-card a {
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
  }
  
  .service-card a:hover {
    text-decoration: underline;
  }

  


  /* =========================
   DONUT SPOTLIGHT
========================= */
.donut-spotlight {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    text-align: center;
    padding: 4rem 1.5rem;
    margin-top: 4rem;
    border-radius: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .donut-spotlight h2 {
    font-size: 2.2rem;
    color: #7c2d12;
    margin-bottom: 1rem;
  }
  
  .donut-spotlight p {
    font-size: 1.1rem;
    color: #78350f;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  

  /* =========================
   FINAL CTA
========================= */
.final-cta {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #ffffff;
    text-align: center;
    padding: 4.5rem 1.5rem;
    margin-top: 5rem;
  }
  
  .final-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  
  .final-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
  }
  
  .final-cta .btn-primary {
    background: #ffffff;
    color: #0284c7;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
  }
  
  .final-cta .btn-primary:hover {
    background: #0f172a;
    color: #ffffff;
  }
  


  /* =========================
   ABOUT PAGE
========================= */
.about-page {
    background: #f8fafc;
  }
  
  .page-hero {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: white;
  }
  
  .page-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
  }
  
  .page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
  }
  
  .about-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
  }
  
  .about-block {
    background: white;
    padding: 2rem;
    margin-bottom: 1.8rem;
    border-radius: 16px;
    line-height: 1.7;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  
  .highlight-block {
    border-left: 6px solid #0ea5e9;
  }

  




  /* =========================
   ABOUT PAGE – PREMIUM
========================= */

.about-hero {
    background: url("../images/grilled-cheese-poutine.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 1.5rem;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    opacity: 0.95;
  }
  
  .about-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
  }
  
  .about-section.alt {
    background: #f1f5f9;
  }
  
  .about-text {
    max-width: 900px;
    margin: auto;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
  }
  
  


  /* =========================
   FUNDRAISING PAGE STYLES
========================= */

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../images/fundraising-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    color: #fff;
    text-align: center;
  }
  
  .page-hero-content {
    max-width: 800px;
    margin: auto;
  }
  
  .page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  
  .page-hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  /* Intro Section */
  .content-section {
    padding: 70px 20px;
  }
  
  .content-section.narrow {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  /* Fundraising Cards */
  .fundraising-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .fundraising-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .fundraising-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .fundraising-card ul {
    padding-left: 18px;
  }
  
  .fundraising-card li {
    margin-bottom: 8px;
  }
  
  /* Why Tin Lizzy */
  .why-tinlizzy {
    background: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
  }
  
  .why-tinlizzy h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .why-grid div {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }
  











 
/* =========================
   MENU PAGE LAYOUT
========================= */

.menu-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
  }
  
  /* =========================
     MENU GRID (CATEGORY CARDS)
  ========================= */
  
  .menu-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 32px;
  }
  
  /* =========================
     MENU GROUP CARD
  ========================= */
  
  .menu-group {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
  }
  
  .menu-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  }
  
  /* =========================
     SUMMARY HEADER
  ========================= */
  
  .menu-group summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    list-style: none;
  }
  
  .menu-group summary::-webkit-details-marker {
    display: none;
  }
  
  /* IMAGE */
  .menu-group summary img {
    width: 120px;
    height: 120px;        /* All images same height */
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  }
  
  /* Chevron */
  .menu-group summary::after {
    content: "▾";
    font-size: 20px;
    color: #d62828;
    margin-left: auto;
    transition: transform 0.25s ease;
  }
  
  .menu-group[open] summary::after {
    transform: rotate(180deg);
  }
  
  /* =========================
     MENU ITEMS – FLEXIBLE COLUMNS
  ========================= */
  
  .menu-items {
    padding: 0 16px 16px;
    margin: 0;
    list-style: none;
  
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    column-gap: 16px;
    row-gap: 10px;
  }
  
  .menu-items li {
    font-size: 16px;
    color: #444;
    padding: 4px 0;
  }
  
  /* FINE PRINT */
  .fineprint {
    padding: 8px 16px 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
  }
  
  /* =========================
     MOBILE
  ========================= */
  
  @media (max-width: 768px) {
    .menu-grid {
      gap: 16px;
    }
  
    .menu-group summary {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .menu-group summary img {
      width: 100%;
      height: 200px;
    }
  
    .menu-items {
      grid-template-columns: 1fr; /* single column */
      padding: 14px 20px 22px;
      text-align: center;
    }
  
    .fineprint {
      padding: 8px 20px 14px;
    }
  }
  





  .page-hero {
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
  
    /* flex to center content */
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 30px 60px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
  
    /* center overlay vertically/horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
  }
  
  .hero-overlay p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
  }
  







  /* =========================
   HERO SECTION (CONSISTENT)
========================= */

.page-hero {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Corporate page background image */
  .corporate-hero {
    background-image: url("../images/corporate-hero.jpg");
  }
  
  /* Overlay */
  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 32px 60px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Title */
  .hero-overlay h1 {
    font-size: 44px;
    margin: 0 0 10px;
  }
  
  /* Subtitle */
  .hero-overlay p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
  }
  
  /* =========================
     MOBILE
  ========================= */
  
  @media (max-width: 768px) {
    .page-hero {
      height: 260px;
    }
  
    .hero-overlay {
      padding: 24px 28px;
    }
  
    .hero-overlay h1 {
      font-size: 32px;
    }
  
    .hero-overlay p {
      font-size: 16px;
    }
  }
  







  




  /* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #d62828;
    box-shadow: 0 0 0 3px rgba(214,40,40,0.15);
    background: #fff;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  /* Error messages */
  .error-msg {
    display: none;
    font-size: 0.85rem;
    color: #d62828;
    margin-top: 0.35rem;
  }
  
  /* Show error when invalid */
  .contact-form input:invalid + .error-msg,
  .contact-form select:invalid + .error-msg {
    display: block;
  }
  
  /* Button spacing */
  .contact-form .book-btn {
    margin-top: 1rem;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .form-row {
      grid-template-columns: 1fr;
    }
  }

  





/*      Same day reply style */
  .form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
  }
  









  /* ===== PAGE SECTIONS (Shared Layout) ===== */
.page-section {
    padding: 4rem 1.5rem;
  }
  
  .page-section.alt-bg {
    background-color: #f7f7f7;
  }
  
  .content-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* ===== TEXT STYLES ===== */
  .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 800px;
  }
  
  .page-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  
  .page-section p {
    margin-bottom: 1.25rem;
  }
  
  /* ===== FEATURE LIST ===== */
  .feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem 2rem;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 1.2rem;
  }
  
  .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d62828; /* Tin Lizzy red */
    font-weight: bold;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    text-align: center;
  }
  
  .cta-section h2 {
    margin-bottom: 0.75rem;
  }
  
  .contact-info {
    margin: 1.25rem 0;
    font-size: 1.05rem;
  }
  
  /* ===== PRIMARY BUTTON ===== */
  .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #d62828;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease;
  }
  
  .btn-primary:hover {
    background: #b81f1f;
  }
  




  /*=============CATERING RE-DO ===============*/

  .card {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  


  .card h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111;
  }
  
  .card h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
  }

  
  .card ul {
    margin: 1rem 0 2rem 1.2rem;
    padding-left: 1rem;
  }
  
  .card ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    position: relative;
  }

  
  .card ul li::marker {
    color: #d62828;
  }

  
  .card .btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  

  .page-hero {
    margin-bottom: 3rem;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
  }

  
  @media (max-width: 768px) {
    .hero-overlay h1 {
      font-size: 2.2rem;
    }
  
    .card {
      padding: 2rem 1.5rem;
      margin: 2rem 1rem;
    }
  }
  
  
  
  
  
  
  /*===============================CATERING MAIN ===================*/
  

  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  
  /* ================= FOOTER ================= */

.site-footer {
  width: 100%;
  background-color: #111;
  color: #eee;
  padding: 50px 0 0;
}

/* Inner content aligned with header/content */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Footer columns */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #fff;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #f4b400;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Social links */
.socials a {
  display: inline-block;
  margin-right: 10px;
}

/* Bottom bar – FULL WIDTH */
.footer-bottom {
  width: 100%;
  background-color: #000;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.8rem;
  opacity: 0.85;
}






/* FORCE FOOTER FULL WIDTH */
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}





html, body {
  margin: 0;
  padding: 0;
}


.site-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-bottom p {
  margin: 5px 0;   /* controlled, small */
}



/* ================= reCAPTCHA Responsive Fix ================= */

.g-recaptcha {
  margin: 20px 0;
}

/* Mobile fix */
@media (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}

.contact-form .g-recaptcha {
  display: flex;
  justify-content: center;
}
