/* ==========================
   Body & Background old
   
========================== */
body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    position: relative;
    overflow-x: hidden;   /* prevents video overflow */
    overflow-y: auto
}

/* Background Video */
#bg-video {
    position: fixed;      /* stays in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* fills screen without distortion */
    z-index: -2;          /* behind everything */
}

/* Dim overlay (you already had this, just adjusted to work with video) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);  /* your dimming level */
    z-index: -1;       /* ABOVE video, BELOW content */
    pointer-events: none;
}
/* Fullscreen intro wrapper */
#intro-screen {
    position: fixed;
    inset: 0;
    background: black; /* fallback color */
    z-index: 9999;     /* above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1s ease; /* fade-out effect */
}

/* Video styling */
#intro-screen video {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: fit;
}





/* This is where the intro screen ends */



/* ==========================
   Hero Headings
========================== */
h1, h2, p {
    position: relative;
    z-index: 1;  /* above overlay */
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    margin: 20px 10px;  /* small spacing around headings */
}

h2 {
    color: #FFA500; /* brand accent color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* ==========================
   Pricing Box
========================== */
.price-box {
    position: relative;   /* above overlay */
    z-index: 1;
    min-width: 300px;
    max-width: 350px;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: rgba(255,255,255,0.9);
    text-align: center;
    user-select: text; /* allows text selection */
    flex-shrink: 0;
}

/* Allow selection for all child elements inside box */
.price-box, 
.price-box * {
    user-select: text;
}

/* ==========================
   Table Styling
========================== */
.price-box table {
    width: 100%;
    border-collapse: collapse;
}

.price-box th, 
.price-box td {
    padding: 12px; /* space inside each cell */
    border-bottom: 1px solid rgba(0,0,0,0.1); /* subtle row separation */
    font-size: 1.1em;
}

/* Alternate row colors for readability */
.price-box tr:nth-child(even) {
    background-color: rgba(0,0,0,0.03); /* very subtle shading */
}

/* Table header styling */
.price-box th {
    background-color: #FFA500; /* brand color */
    color: #fff;
    text-align: center;
}

/* Optional: smaller headings inside box (if needed) */
.price-box h3 {
    margin-bottom: 15px;
    color: #FFA500;
}
.price-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
}

.price-box {
    scroll-snap-align: start;
}
.price-scroll {
    scroll-behavior: smooth;
}



/* Style for Place Order button */
.place-order-btn {
    font-size: 1.2rem;                /* bigger text */
    font-weight: bold;
    padding: 12px 28px;               /* bigger click area */
    border-radius: 20px;               /* rounded, pill shape */
    border: none;
    background-color: #ffc400;         /* match your brand yellow */
    color: #000;                       /* black text */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-top: 20px;                  /* spacing from content above */
}

/* Hover effect */
.place-order-btn:hover {
    background-color: #e6b800;         /* slightly darker yellow */
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Optional: active effect on click */
.place-order-btn:active {
    transform: scale(0.98);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* This section is for the block about us */
.about_us{
    background-color: #ffffff;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #ccc;
    position: relative;
    z-index: 1;

}
.about_us p,
.about_us h2{
    color: #000;
    text-shadow: none;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: bold;
}
.about_us h3{
    color: #FFA500;
}
/* this if for the section where contact us or phonoe number is */
.contact_us_card {
    background-color: #ffffff;               /* white background */
    padding: 20px;                           /* space inside the box */
    margin: 40px auto;                       /* center horizontally and vertical spacing */
    max-width: 800px;                        /* keep it from stretching too wide */
    border-radius: 10px;                     /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* subtle shadow */
    text-align: center;
    border: 1px solid #ccc;                  /* optional border for definition */
    position: relative;
    z-index: 1;                               /* above background dim overlay */
}

/* Remove bullets and display phone/email inline */
.info-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

.info-list-item {
    display: inline-block;
    margin: 0 15px;
}
.contact_us_card p,
.contact_us_card h2,
.contact_us_card a {
    color: #000;       /* black text */
    text-shadow: none; /* remove shadow */
}
.office-notice {
    font-size: 0.75rem;   /* smaller text */
    color: #000;          /* black text for visibility */
    text-align: center;
    margin-top: 10px;     /* space above the notice */
    line-height: 1.4;
}


/* This is the table for the delivery area */
.area-delivery {
    display: flex;
    flex-direction: column;    /* stack children vertically */
    align-items: center;       /* center horizontally */
    margin: 40px auto;
    padding: 20px;
    gap: 20px;                 /* space between map, table, footer */
    background-color: #fff;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    z-index: 1;
}

.area-delivery table {
    border-collapse: collapse;
    background-color: #fff;
    width: auto;               /* fit content instead of full page */
    min-width: 300px;          /* optional: ensure table isn’t too small */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle box shadow */
    border-radius: 10px;
    overflow: hidden;          /* round corners */
}

.area-delivery th, 
.area-delivery td {
    border: 1px solid #ccc;   /* lines between cells */
    padding: 10px 20px;
}

.area-delivery th {
    background-color: #FFA500;
    color: #fff;
}
/* Hover effect for each area cell */
.area-cell {
    position: relative;  /* needed for tooltip positioning */
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.area-cell:hover {
    background-color: #ffd27f;  /* highlight hovered cell */
}

/* Tooltip styling */
.area-cell::after {
    content: attr(data-zip);       /* grabs zipcodes from HTML attribute */
    position: absolute;
    bottom: 120%;                  /* place above the cell */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 5px;
    white-space: nowrap;           /* keeps everything in one line */
    opacity: 0;
    pointer-events: none;          /* avoids blocking mouse events */
    transition: opacity 0.2s ease-in-out;
    z-index: 2;                    /* above everything */
}

/* Show tooltip on hover */
.area-cell:hover::after {
    opacity: 1;
}


/* Map wrapper */
.map-container {
    max-width: 200px;       /* shrink the map */
    flex-shrink: 0;         /* prevent it from stretching */
}

.map-container img {
    width: 100%;            /* responsive inside the container */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Table styling */
.table-container table {
    border-collapse: collapse;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 100%; /* optional: ensures table fills container */
}
.table-container table {
    border-collapse: collapse;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.table-container th,
.table-container td {
    border: 1px solid #ccc;
    padding: 10px 20px;
}

.table-container th {
    background-color: #FFA500;
    color: #fff;
}

.delivery-footer {
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
}
.delivery-footer p {
    color: #000;       /* black text */
    text-shadow: none; /* remove shadow */
    font-family: Arial, Helvetica, sans-serif;
}

/*Payment method box */
.payment-methods {
    background-color: #ffffff;               /* white background */
    padding: 20px;                           /* space inside the box */
    margin: 40px auto;                       /* center horizontally and vertical spacing */
    max-width: 800px;                        /* keep it from stretching too wide */
    border-radius: 10px;                     /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* subtle shadow */
    text-align: center;
    border: 1px solid #ccc;                  /* optional border for definition */
    position: relative;
    z-index: 1;                               /* above background dim overlay */
}
.payment-methods p{
    color: #000;       /* black text */
}
.payment-methods .lead{
    text-shadow: none;
}


.separator {
    width: 100%;
    height: 50px;                 /* taller for buttons */
    background-color: #ffc400;
    border-radius: 4px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;                    /* above overlay */
    display: flex;                 /* align buttons */
    justify-content: flex-start;   /* left side by default */
    align-items: center;
    padding: 0 1.5rem;             /* spacing from edges */
    gap: 1rem;                     /* space between buttons */
}

/* Style for separator buttons */
.separator .top-btn {
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.9); /* white-ish box */
    color: #000;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Hover effect */
.separator .top-btn:hover {
    background-color: #fff;       /* brighter on hover */
    color: #ffc400;               /* match separator */
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);}






/* container */
.reviews {
  width: 100%;
  padding: 20px;
  background: #f9f9f9;
  box-sizing: border-box;
}

/* title */
.review-title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* horizontal scroll area (matches your HTML's typo) */
.reivews-scroll {
  display: flex;
  flex-direction: row;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* nice thin scrollbar */
.reivews-scroll::-webkit-scrollbar { height: 8px; }
.reivews-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* card */
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.review-card img {
  width: auto;
  height: 100%;
  max-height: 450px;  /* keeps them reasonable */
  border-radius: 10px;
  display: block;
}
/*REVIEWS ARE GOOD HOW IT IS*/



/* DELIVERY SNIPPTET */
#delivery-box {
    display: inline-block;            /* box wraps tightly around content */
    padding: 8px 20px;                /* enough space to make it noticeable */
    background-color: #ffffff;        /* white background */
    color: #ff6600;                   /* orange text */
    border: 2px solid #ff6600;        /* orange border */
    border-radius: 25px;              /* pill shape */
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;               /* center text inside the box */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* subtle floating effect */
    margin: 20px auto;                /* center horizontally in container */
}

/* Optional hover effect to make it pop */
#delivery-box:hover {
    background-color: #ff6600;
    color: #ffffff;
    cursor: pointer;
}



/* This is where delivery message and stuff go */
.promo-banner {
  font-size: 1.8em;
  font-weight: bold;
  color: #000000;
  background-color: #ffffff;
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  margin: 15px auto;
  transition: all 0.5s ease; /* smooth transition if text changes */
  max-width: 400px;
  display:inline-block;
}

.delivery-message {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffffff;
  background-color: #ff6600;
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  margin: 15px auto;
  transition: all 0.5s ease; /* smooth transition if text changes */
  max-width: 400px;
  display:inline-block;
}

