* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/*
HERO EDITING
*/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



/* Hero Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.9rem;
  }

  .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

}

@media (max-width: 426px) {
  .hero-overlay h1 {
    font-size: 2.1rem;
  }

    .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 321px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

    .hero-overlay p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}



/* ---- The King's Story ---- */
.story-section {
  background: #fff;            /* fills the whole row, no black showing when zoomed out */
  color: #111;
}

/* Only the inner content is constrained */
.story-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.story-section .story-title {
  color: #111;
}


.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* text a bit wider */
  gap: 2.5rem;
  align-items: center;
}

.journeyPill {
  display: inline-block;
  background: #f8ebeb;
  border: 2.5px solid #eecccd;
  color: #bc393f;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.journeyPill:hover {
  background: #cf2e36;
  color: #fff;
}

.story-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.story-title .accent {
  color: #cf2e36; /* your red accent */
}

.story-text p {
  color: #333;
  line-height: 1.8;
  margin: 0.9rem 0;
}

/* Right-side media */
.story-media {
  position: relative;
}

.story-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  display: block;
  object-fit: cover;
}

/* Floating rating card */
.rating-card {
  position: absolute;
  left: 1.2rem;
  bottom: -1.1rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
}

.rating-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #2a2a2a;
  display: grid;
  place-items: center;
}

.rating-icon i {
  font-size: 1rem;
  color: #f39c12; /* gold-ish */
}

.rating-copy {
  line-height: 1.1;
}

.rating-copy strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.rating-copy span {
  color: #cfcfcf;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-media {
    order: -1; /* image above text on tablet/mobile; remove if you want it below */
  }
  .rating-card {
    left: 0.8rem;
    bottom: -0.9rem;
  }
}

@media (max-width: 480px) {
  .story-title { font-size: 2rem; }
  .rating-card { transform: scale(0.95); transform-origin: left bottom; }
}




/* --- Chef Section --- */
.chef-section {
  background: #fff;
  padding: 4rem 2rem;
}

.chef-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* image left, text right */
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Pill above Meet Chef */
.chef-pill {
  display: inline-block;
  background: #e6f6eb;       /* soft green */
  color: #2f9e44;            /* medium green */
  border: 2px solid #b7e2c2;
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}
.chef-pill:hover {
  background: #2f9e44;
  color: #fff;
}


/* Image block */
.chef-media {
  position: relative;
}

.chef-img {
  width: 90%;          /* shrink slightly */
  max-width: 380px;    /* cap max size */
  max-height: 400px;   /* shorter than before */
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;      /* centers inside the grid cell */
}


.chef-badge {
  position: absolute;
  bottom: -14px;
  left: 16px;
  background: #e6f6eb;           /* soft green (matches your achievements vibe) */
  color: #2f9e44;                 /* medium green */
  border: 2px solid #b7e2c2;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.chef-badge i { font-size: 0.95rem; }

/* Text block */
.chef-text .valuePill { margin-bottom: 0.8rem; }
.chef-title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 1rem 0;
}
.chef-text p {
  color: #222;          /* darker for readability */
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
/* Responsive */
@media (max-width: 900px) {
  .chef-grid {
    grid-template-columns: 1fr;
  }
  .chef-badge {
    position: static;
    display: inline-flex;
    margin-top: 0.8rem;
  }
}




/* -------- Our Values -------- */
.section-header { margin-bottom: 2rem; }


.valuePill {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  border: 2.5px solid #f9e6c8;
  color: #efb23d;
  background: #fdf6eb;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}


.valuePill:hover {
  background: #f6b141;
  color: #fff;
}


/* Commitment Sect */
.commitment-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #222;
}

.commitment-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  padding: 2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.card-yellow {
  background-color: #fcf9e9;
}
.card-pink {
  background-color: #fbf1f1;
}
.card-green {
  background-color: #e7faed;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-yellow .card-icon i,
.card-yellow h3 {
  color: #f1c236 !important;
}
.card-pink .card-icon i,
.card-pink h3 {
  color: #ea5949 !important;
}
.card-green .card-icon i,
.card-green h3 {
  color: #32be39 !important;
}

.card-yellow:hover .card-icon i,
.card-yellow:hover h3 {
  transform: scale(1.1);
  color: #d4a017;
}
.card-pink:hover .card-icon i,
.card-pink:hover h3 {
  transform: scale(1.1);
  color: #c0392b; 
}
.card-green:hover .card-icon i,
.card-green:hover h3 {
  transform: scale(1.1);
  color: #2e7d32; 
}

.card-icon i,
.card h3 {
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #111;           /* near-black */
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.2px; /* improves readability */
}


.hms-link {
  color: #2b68d9;
  text-decoration: underline;
  font-weight: 600;
}
.hms-link:hover {
  color: #194bbf;
}

/* Responsive Commitment Sect */
@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}




/* Timeline Section */
.timeline-section {
  background: #fff;
  padding: 4rem 2rem;
}

.achievementsPill {
  display: inline-block;
  background: #e6f6eb;         /* soft green background */
  border: 2.5px solid #b7e2c2; /* light green border */
  color: #2f9e44;              /* medium green text */
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.achievementsPill:hover {
  background: #2f9e44;   /* solid green hover */
  color: #fff;           /* white text */
}

#greenAccent {
   color: #2f9e44 !important;
}


.timeline-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #111;
}

.container {
  text-align: center; /* centers inline/inline-block elements */
}


/* Timeline container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
  width: 100%;
  max-width: 900px;
}

/* Vertical red line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #cf2e36;
  transform: translateX(-50%);
  
}

/* Each item */
.timeline-item {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

/* Dots */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #cf2e36;
  border-radius: 50%;
  border: 3px solid #fff;
  transform: translateX(-50%);
  top: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(207,46,54,0.2);
}

/* Content boxes */
.timeline-content {
  position: relative;
  width: 42%;
  padding: 1.2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.timeline-content.left {
  left: 0;
  text-align: right;
}

.timeline-content.right {
  left: 58%;
  text-align: left;
}

.badge {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #cf2e36;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Headings and text */
.timeline-content h3 {
  margin-bottom: .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #cf2e36;
}
.timeline-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive (stack cards) */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-dot {
    left: 20px;
    transform: none;
  }
  .timeline-content {
    width: calc(100% - 60px);
    left: 50px !important;
    text-align: left !important;
  }
}



/* ---- CTA Section ---- */
.cta-section {
  background: #ffffff;                /* full-bleed white row */
  padding: 3.5rem 1.25rem;
}
.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: 20px;
  border: 2px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  background: #f1f1f1; /* light panel look */
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: .6rem;
}
.cta-accent { color: #cf2e36; } /* site red */

.cta-sub {
  color: #475569;
  max-width: 780px;
  margin: 0.25rem auto 1.2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-red {
  background: #cf2e36;
  color: #fff;
  box-shadow: 0 10px 18px rgba(207,46,54,0.22);
}
.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(207,46,54,0.28);
  background: #b72a32;
}

.btn-amber-outline {
  background: transparent;
  color: #f4aa20;
  border: 2px solid #f5b83d;
}
.btn-amber-outline:hover {
  background: #ffc61c;
  border-color: #ffc61c;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(255,198,28,0.24);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
  .cta-title { font-size: 1.7rem; }
  .btn { width: 100%; text-align: center; }
}