
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

/* Layout: make page a column so footer can stick to bottom */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

/* Homepage font override (Graduate) */
body.home {
  font-family: 'Graduate', cursive;
}

/* Use Arial Black for all footer text */
footer,
footer p,
footer .footer-container {
  font-family: 'Arial Black', Arial, sans-serif;
}

/* Make homepage hero fill remaining vertical space to avoid footer gap */
body.home main {
  display: flex;
  flex-direction: column;
}

body.home .hero-slideshow {
  /* let slideshow expand to fill remaining space */
  flex: 1 1 auto;
  height: auto; /* override fixed/min heights */
  min-height: 60vh;
}

body.home .hero-slideshow .slideshow-wrapper,
body.home .hero-slideshow .slide {
  height: 100%;
}

/* Ensure Graduate is used only for the homepage hero title */
body.home .hero-content h1 {
  font-family: 'Graduate', cursive;
}

/* Use Arial Black for the homepage hero paragraph and buttons */
body.home .hero-content p,
body.home .order-btn {
  font-family: 'Arial Black', Arial, sans-serif;
}

/* Navbar font for all pages */
.navbar,
.navbar a,
.nav-links li a,
.hamburger {
  font-family: 'Arial Black', Arial, sans-serif;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: #ffeaea;
}

/* Logo Styling */
.logo {
  flex-grow: 1;
  text-align: center;
  order: 0;
}

.logo img {
  height: 60px;
  object-fit: contain;
  border-radius: 20px;
}

.team {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team h2 {
  color: #ff4d4d;
  margin-bottom: 2rem;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-card {
  background-color: #fff4f4;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  width: 250px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.product-card {
  background-color: #fff4f4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.product-details {
  padding: 1.35rem;
}

.product-details h2 {
  margin: 0 0 0.4rem;
  color: #d92f33;
}

.product-details p {
  margin: 0.35rem 0;
  color: #333;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.8rem;
  color: #ff4d4d;
}

.product-meta {
  font-size: 0.95rem;
  color: #5d5d5d;
}

.products-header {
  text-align: center;
  padding: 3rem 1rem 1rem;
}

.products-header h1 {
  font-size: 3rem;
  margin-bottom: 0.6rem;
}

.products-header p {
  font-size: 1.1rem;
  color: #5d5d5d;
  max-width: 700px;
  margin: 0 auto;
}

.product-card .order-btn {
  width: 100%;
  margin-top: 1rem;
  font-family: 'Bahnschrift SemiBold', 'Bahnschrift', Arial, sans-serif;
  font-weight: 600;
}

.team-card h3 {
  margin: 0.5rem 0 0.2rem;
  color: #333;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
}
.about-section {
  padding: 3rem 2rem;
  background-color: #ffeaea;
  text-align: center;
}
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

body.about-page .about {
  font-family: 'Bahnschrift SemiBold', 'Bahnschrift', Arial, sans-serif;
  padding: 3.5rem 2rem 4rem;
}

body.about-page .about h1 {
  margin-bottom: 1.25rem;
}

body.about-page .about p {
  margin: 0 0 1.2rem;
  line-height: 1.8;
}
.contact-section {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff4f4;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section h1 {
  text-align: center;
  color: #ff4d4d;
}

.order-summary {
  display: grid;
  gap: 0.6rem;
  background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
  border: 1px solid #ffd0d0;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-summary-label {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b3a3a;
}

.order-summary-total {
  margin: 0.15rem 0 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #d92f33;
}

.order-summary-note {
  margin: 0;
  color: #5d5d5d;
  line-height: 1.45;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-picker {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.product-picker input {
  flex: 1;
}

.selected-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.product-chip {
  background: #ffe3df;
  color: #b02a2a;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.product-chip-price {
  background: rgba(255, 255, 255, 0.75);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.remove-product {
  background: transparent;
  border: none;
  color: #b02a2a;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}

label {
  font-weight: bold;
}

input {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"] {
  font-family: 'Bahnschrift SemiBold', 'Bahnschrift', Arial, sans-serif;
  font-weight: 600;
}

button:hover {
  background-color: #e63946;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ACTIVE LINK STYLE */
.nav-links li a.active {
  
  color: yellow;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  
}
/* Base Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ff4d4d;
  padding: 0.5rem 1rem;
  position: relative;
  flex-wrap: wrap;

  z-index: 999;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Nav Links */
 .nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
} 
.nav-links li a.active {
  background-color: yellow;
  color: #ff4d4d;
  font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ff4d4d;
    padding: 1rem;
    z-index: 1000;
    list-style: none;
    gap: 1.8rem;

  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .logo {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 0.1rem;
  }
}
/* Transform hamburger into X when menu is open */
.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

 /* Order Button on Home Page */
.order-btn {
  background-color: #ff4d4d;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 77, 77, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1.5rem;
}

.hero-content .order-btn + .order-btn {
  margin-left: 1rem;
}

.order-btn:hover {
  background-color: #e60000;
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(230, 0, 0, 0.4);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.order-btn {
  animation: pulse 1.5s infinite;
}


.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* 
/* Hero Slideshow Area */
 /* .hero-slideshow {
  height: calc(100vh - 120px); 
  position: relative;
  overflow: hidden;
}  */

/* .slideshow-wrapper {
  position: absolute;
   top: 0;
  left: 0; 
  height: 100%;
  width: 100%;

  width: 100vw;
  height: 33vw; 
  background-size: cover;
  background-repeat: no-repeat;
}


.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;       
  background-position: center;   
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade 19s infinite ease-in-out;
}


.slide:nth-child(1) { animation-delay: 3s; }
.slide:nth-child(2) { animation-delay: 7s; }
.slide:nth-child(3) { animation-delay: 11s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 19s; }


@keyframes fade {
  0% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}


.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4); 
  border-radius: 1rem;
  max-width: 80%;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}


.order-btn {
  background-color: #ff4d4d;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 77, 77, 0.4);
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: #e60000;
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(230, 0, 0, 0.4);
} */

 .footer {
  background-color: #ff4d4d;
  color: white;
  text-align: center;
  padding: 0.09rem;
  margin-top:0;
  
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}



.footer-quote {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.kes {
  font-weight: bold;
  color: black;
  justify-content: center;
  text-align: center;
}

/* Slideshow Animation */
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  font-family: 'Poppins', sans-serif;
}

.hero-slideshow {
  position: relative;
  height: min(75vh, 700px);
  max-height: 85vh;
  overflow: hidden;
}

/* Slideshow container */
.slideshow-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Each Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideshow 25s infinite;
}

@media (min-width: 769px) {
  .hero-slideshow {
    height: clamp(500px, 76vh, 760px);
    background-color: #111;
  }

  .slide {
    left: 33.333%;
    width: 33.334%;
    background-size: cover;
    background-position: center center;
  }

  .slide::before,
  .slide::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(100% + 1px);
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  .slide::before {
    right: 100%;
  }

  .slide::after {
    left: 100%;
  }

  .hero-content {
    max-width: min(640px, 72%);
    padding: 1.25rem 1.5rem 1.1rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 3vw, 2.7rem);
  }

  .hero-content p {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    margin-bottom: 1.25rem;
  }

  .hero-content .order-btn {
    padding: 0.72rem 1.4rem;
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    border-radius: 999px;
    margin-top: 0.85rem;
  }

  .hero-content .order-btn + .order-btn {
    margin-left: 0.65rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 680px;
  }

  .hero-content .order-btn {
    padding: 0.78rem 1.6rem;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1180px) and (orientation: landscape) {
  .hero-content .order-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .order-btn + .order-btn {
    margin-left: auto;
    margin-top: 0.6rem;
  }
}

@media (min-width: 1024px) {
  .hero-slideshow {
    height: min(72vh, 680px);
  }
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 100vh;
  }
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 5s;
}
.slide:nth-child(3) {
  animation-delay: 10s;
}
.slide:nth-child(4) {
  animation-delay: 15s;
}
.slide:nth-child(5) {
  animation-delay: 20s;
}

/* Fade Animation */
@keyframes slideshow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Overlay Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.8rem;
  max-width: 75%;
  margin: 0 auto;
  padding-bottom: 19px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.order-btn {
  background-color: #ff3b3f;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #d92f33;
}
