@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

@font-face {
  font-family: LemonMilk;
  src: url(../font/lemon_milk/LEMONMILK-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: LemonMilk;
  src: url(../font/lemon_milk/LEMONMILK-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: LemonMilk;
  src: url(../font/lemon_milk/LEMONMILK-Light.otf);
  font-weight: 300;
}

@font-face {
  font-family: LemonMilk;
  src: url(../font/lemon_milk/LEMONMILK-Medium.otf);
  font-weight: 500;
}

:root {
  --white: #fff;
  --black: #000;
  --gold: #d19b22;
  --primary: #BC6743;
  --bg: #fffbee;
  --nav-color: #d19b22;
  --font: LemonMilk, sans-serif;
  --para: "Noto Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
}

/* ---- UTILITY ---- */
.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 50px;
}

/* ---- HEADER / NAV ---- */
.containerHeader {
  padding: 10px 20px;
  max-width: 1400px;
  margin: auto;
}

header .logo img {
  width: 200px;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header ul {
  gap: 40px;
}

header ul li a {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--nav-color);
  position: relative;
  transition: color 0.3s ease;
}

header ul li a:hover {
  color: var(--primary);
}

header ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background-color: var(--gold);
  transition: transform 0.3s ease;
  transform-origin: center;
}

header ul li a:hover::after {
  transform: scaleX(1.1);
}

header .row {
  gap: 50px;
}

/* Hamburger button */
.hamburger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
  background-color: #b8880f;
}

/* ---- OVERLAY MOBILE MENU ---- */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  background-color: var(--bg);
  overflow-x: hidden;
  transition: 0.5s ease;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 12px;
  text-decoration: none;
  font-size: 20px;
  color: var(--gold);
  font-family: var(--font);
  display: block;
  transition: 0.3s ease;
  letter-spacing: 1px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}

.overlay a:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.overlay .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0;
  text-decoration: none !important;
  background-color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--white) !important;
  line-height: 1;
}

.overlay .closebtn::after {
  content: "✕";
  font-size: 24px;
  color: var(--black);
  font-weight: bold;
}

.overlay .closebtn:hover {
  background-color: #b8880f;
}

/* ---- DESKTOP: show/hide helpers ---- */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-hero {
  display: none;
}

.desktop-hero-info {
  display: block;
}

.desktop-hero-section {
  display: block;
}

/* ---- PHONE / HOURS ---- */
.dateWidth {
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
}

.dateWidth h1,
.dateWidth h2 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* ---- DESKTOP HERO ---- */
.herosection .containerHero {
  width: 100%;
  height: 700px;
  background: url(../images/herosection.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.herosection .btn a {
  background-color: var(--bg) !important;
  color: var(--primary) !important;
  border: 2px solid var(--gold) !important;
  padding: 0.6rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.herosection .btn a:hover {
  background-color: var(--gold) !important;
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ---- MOBILE HERO ---- */
.mobile-hero {
  width: 100%;
  background-color: var(--bg);
  padding: 1rem 0;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.mobile-hero-logo {
  margin-bottom: 0.5rem;
}

.mobile-hero-logo img {
  width: clamp(180px, 55vw, 280px);
  height: auto;
  margin: 0 auto;
  display: block;
}

.mobile-hero-contact {
  margin-bottom: 1.5rem;
}

.mobile-hero-contact h1 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.mobile-hero-contact h2 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}

.mobile-hero-btn {
  display: block;
  width: clamp(260px, 75vw, 400px);
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  border: 2px solid var(--gold);
  border-radius: 8px;
  background-color: var(--bg);
  color: var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-hero-btn:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-hero-image {
  width: 100%;
  overflow: hidden;
}

.mobile-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- MENU CARDS ---- */
.boxMenu .container {
  max-width: 1300px;
}

.boxMenu .row {
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.boxMenu .col-1 {
  background: url(../images/cardBg.png) no-repeat center center/cover;
  padding: 20px 20px 25px;
  border-radius: 20px;
  text-align: center;
  flex-basis: 300px;
  flex-grow: 0;
  max-width: 350px;
  min-width: 300px;
  height: 520px;
  border: 10px solid #5F2008;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boxMenu .col-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.boxMenu .col-1 h1 {
  font-family: var(--font);
  font-weight: 700;
  color: #D19B22 !important;
  font-size: 1.7em;
  margin-bottom: 8px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.boxMenu .col-1 img {
  width: 150px;
  margin-bottom: 10px;
}

.boxMenu .col-1>p {
  font-size: 0.95em;
  color: var(--white);
  font-family: var(--para);
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.boxMenu .col-1 .contentPara {
  margin-top: 5px;
  margin-bottom: 5px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.boxMenu .col-1 .contentPara p {
  font-size: 1em;
  color: var(--white);
  font-family: var(--para);
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.boxMenu .col-1 .priceBtn {
  margin-top: auto;
  padding-bottom: 5px;
}

.boxMenu .col-1 .priceBtn h4 {
  color: var(--white);
  font-size: 1.5em;
  font-family: var(--font);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  border: 3px solid #D19B22;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
}

/* ---- ABOUT ---- */
.about .row {
  gap: 50px;
  align-items: flex-start;
}

.about .row h1 {
  color: var(--gold);
  font-size: 2.25rem;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 16px;
}

.about .row p {
  font-family: var(--para);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

.about .row .col-1 img {
  border-radius: 12px;
}

/* ---- REWARDS PROGRAM ---- */
.program .container {
  background-color: var(--gold);
  border-radius: 1rem;
  margin-bottom: 50px;
}

.program .container h1 {
  font-size: 2.25rem;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
}

.program .container p {
  color: var(--white);
  font-family: var(--para);
  font-size: 18px;
  font-weight: 400;
  max-width: 36rem;
  margin: auto;
  margin-bottom: 30px;
}

.program .flexBtn {
  gap: 30px;
}

.program .flexBtn .btn a {
  background-color: #ffae00;
  color: var(--black);
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  letter-spacing: 1px;
}

.program .flexBtn .btn a:hover {
  background-color: #b8880f;
  transform: translateY(-2px);
}

.program .flexBtn .btn.onlyBorder a {
  background-color: transparent;
  border: 1px solid var(--white);
  font-weight: 300;
  color: var(--white);
}

.program .flexBtn .btn.onlyBorder a:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ---- CONTACT ---- */
.contact .container {
  padding-bottom: 60px;
}

.contact .row {
  gap: 80px;
  align-items: center;
}

.contact .row .col-1:first-child img {
  border-radius: 12px;
}

.contact .row h1 {
  color: var(--gold);
  font-size: 2.25rem;
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 30px;
}

/* Contact items - desktop: horizontal */
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffae00;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  color: #999;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--black);
  font-size: 1.2rem;
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact buttons */
.contact-buttons {
  display: flex;
  gap: 20px;
  flex-direction: row;
  margin-top: 35px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffae00;
  color: var(--black);
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 35px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-width: 200px;
}

.contact-btn:hover {
  background-color: #b8880f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- DESKTOP: hide mobile-only elements ---- */
@media screen and (min-width: 949px) {
  .mobile-only {
    display: none !important;
  }

  .mobile-hero {
    display: none !important;
  }

  .desktop-only {
    display: block !important;
  }

  .desktop-hero-info {
    display: block !important;
  }

  .desktop-hero-section {
    display: block !important;
  }
}

/* ---- TABLET/MOBILE ---- */
@media screen and (max-width: 948px) {
  .desktop-only {
    display: none !important;
  }

  .desktop-hero-info {
    display: none !important;
  }

  .desktop-hero-section {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .mobile-hero {
    display: flex !important;
  }

  header .row {
    justify-content: center !important;
    position: relative;
  }

  header .logo {
    margin: 0 auto;
  }

  header .mobile-only {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .container {
    padding: 30px 15px;
  }

  .about .row,
  .contact .row {
    flex-direction: column;
  }

  .about .row {
    text-align: center;
  }

  .about .row h1 {
    font-size: 1.75rem;
  }

  .about .row p {
    font-size: 16px;
  }

  /* Contact mobile: centered stacked */
  .contact .row {
    align-items: center;
  }

  .contact .row h1 {
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    margin-bottom: 28px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-bottom: 4px;
  }

  .contact-text {
    align-items: center;
  }

  .contact-label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .contact-value {
    font-size: 1.1rem;
    text-align: center;
  }

  /* Contact buttons mobile: full width stacked */
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
  }

  .contact-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* Menu cards */
  .boxMenu .row {
    flex-direction: column;
    align-items: center;
  }

  .boxMenu .col-1 {
    max-width: 90%;
    width: 100%;
    height: auto;
    min-height: 520px;
  }

  /* Program */
  .program .container h1 {
    font-size: 1.75rem;
  }

  .program .container p {
    font-size: 16px;
  }

  .program .flexBtn {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* ---- SMALL MOBILE ---- */
@media screen and (max-width: 600px) {
  header .logo img {
    width: 150px;
  }

  .boxMenu .col-1 {
    border-width: 10px;
    min-height: 500px;
    max-width: 95%;
  }

  .boxMenu .col-1 img {
    width: 140px;
    margin-bottom: 8px;
  }

  .boxMenu .col-1 h1 {
    font-size: 1.5em;
  }

  .program .container h1 {
    font-size: 1.5rem;
  }

  .program .container p {
    font-size: 15px;
  }
}

@media screen and (max-width: 400px) {
  header .logo img {
    width: 130px;
  }

  .containerHeader {
    padding: 8px 10px;
  }

  .hamburger-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-hero-btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
  }

  .boxMenu .col-1 {
    min-height: 470px;
    border-width: 8px;
  }
}/* ---- CAREERS PAGE ---- */
.careers-page {
  padding-bottom: 50px;
}

.careers-hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.whats-it-like .container {
    max-width: 1100px;
}

.whats-it-like .row {
  gap: 40px;
  margin-top: 20px;
}

.whats-it-like .col-image {
    flex: 1;
}

.whats-it-like .col-text {
    flex: 1.2;
}

.whats-it-like .col-text h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.whats-it-like .col-text p {
  font-family: var(--para);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.how-we-recruit {
  padding: 80px 0;
}

.how-we-recruit h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.how-we-recruit .subtitle {
  max-width: 900px;
  margin: 0 auto 50px;
  font-family: var(--para);
  font-size: 16px;
  color: #444;
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.recruit-card:hover {
  transform: translateY(-5px);
}

.recruit-card .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.recruit-card .icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.recruit-card h3 {
  font-size: 1.1rem;
  margin: 15px 0 10px;
  color: var(--black);
}

.recruit-card p {
  font-family: var(--para);
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.positions {
  padding: 80px 0;
}

.positions .container {
    max-width: 1100px;
}

.positions h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.positions .row {
  gap: 50px;
}

.positions .col-accordion {
  flex: 1.2;
}

.positions .col-image {
  flex: 1;
}

.accordion {
  margin-bottom: 30px;
}

.accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.accordion-title {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-title {
  background-color: #ffae00;
  color: var(--black);
}

.accordion-title span i {
  margin-right: 10px;
  color: var(--gold);
}

.accordion-item.active .accordion-title span i {
  color: var(--black);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 150px;
  padding: 15px 20px;
}

.accordion-content p {
  font-family: var(--para);
  font-size: 14px;
  color: #444;
  text-transform: uppercase;
}

.apply-btn {
  display: inline-block;
  background-color: #ffae00;
  color: var(--black);
  padding: 14px 45px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.apply-btn:hover {
  background-color: #b8880f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE CAREERS */
@media screen and (max-width: 948px) {
  .careers-hero h1 {
    margin-top: 20px;
  }

  .whats-it-like .row {
    flex-direction: column !important;
  }

  .whats-it-like .col-image {
    order: 1;
  }

  .whats-it-like .col-text {
    order: 2;
  }

  .recruit-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .whats-it-like .col-text h2,
  .how-we-recruit h2,
  .positions h2 {
    font-size: 1.8rem;
  }

  .center-mobile {
    text-align: center;
  }

  .market-img-mobile {
    margin-bottom: 20px;
    text-align: center;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }
}

}