/* KulinarneLab — fast-ocean-280.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #ffffff;
  --primary:  #2d2d2d;
  --secondary:#b5a48b;
  --text:     #333333;
  --accent:   #5bbad5;
  --beige:    #f5f0eb;
  --tan:      #b5a48b;
  --white:    #ffffff;
  --radius:   15px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; display: block; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 9999;
  font-size: 13px;
}
#cookie-banner p { flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--secondary); text-decoration: underline; }
#cookie-accept {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
}
#cookie-accept:hover { background: #9e8e74; }

/* ── HEADER ── */
.header { background: var(--white); border-bottom: 1px solid #e8e0d6; position: sticky; top: 0; z-index: 900; }

.header-upper {
  background: var(--beige);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
}
.header-upper .header-text-wrapper { flex: 1; }
.header-links ul { display: flex; gap: 20px; list-style: none; }
.header-links ul li a { color: var(--primary); font-size: 13px; }
.header-links ul li a:hover { color: var(--secondary); }
.header-links ul li a::before { font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 5px; }
.header-links ul li a.ico-account::before { content: "\f007"; }
.header-links ul li a.ico-login::before { content: "\f2f6"; }

.header-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.header-logo a { display: flex; align-items: center; }
.header-logo img, .header-logo svg { height: 52px; width: auto; }

.mega-menu { display: flex; list-style: none; gap: 4px; }
.mega-menu > li { position: relative; }
.mega-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--primary);
  border-radius: 4px;
  transition: background .2s;
}
.mega-menu > li > a:hover,
.mega-menu > li.active > a { background: var(--beige); color: var(--secondary); }

.mega-menu > li .sublist-wrap {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid #e8e0d6;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  z-index: 200;
}
.mega-menu > li:hover .sublist-wrap { display: block; }
.mega-menu .sublist { list-style: none; padding: 8px 0; }
.mega-menu .sublist li a { display: block; padding: 8px 18px; font-size: 13px; color: var(--primary); }
.mega-menu .sublist li a:hover { background: var(--beige); color: var(--secondary); }
.mega-menu .sublist .back-button { display: none; }

/* mobile hamburger */
.responsive-nav-wrapper {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--white);
  border-bottom: 1px solid #e8e0d6;
}
.responsive-nav-wrapper .header-logo { display: flex; }
.button.menu-button, .button.search-button {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--primary); padding: 4px;
}
.button.menu-button::before { font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f0c9"; }
.button.search-button::before { font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f002"; }
.button.personal-button { display: none; }
.close-button.close-menu { display: none; }

.overlayOffCanvas {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 800;
}
.overlayOffCanvas.active { display: block; }

/* mobile menu panel */
.header-menu.nav-panel.open { display: block !important; }
@media (max-width: 768px) {
  .header-lower { display: none; }
  .responsive-nav-wrapper { display: flex; }
  .header-menu.nav-panel {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 280px; height: 100vh;
    background: #fff;
    overflow-y: auto;
    z-index: 850;
    padding: 20px 0;
    box-shadow: 2px 0 12px rgba(0,0,0,.15);
  }
  .mega-menu { flex-direction: column; gap: 0; }
  .mega-menu > li > a { padding: 12px 20px; border-bottom: 1px solid #f0e8e0; border-radius: 0; }
  .mega-menu > li .sublist-wrap { display: block; position: static; border: none; box-shadow: none; min-width: unset; }
  .mega-menu .sublist li a { padding: 8px 32px; font-size: 13px; background: var(--beige); }
  .mega-menu .sublist .back-button { display: none; }
  .plus-button { display: none; }
  .close-button.close-menu {
    display: flex; align-items: center; justify-content: flex-end;
    padding: 10px 20px; cursor: pointer; font-size: 13px; color: var(--primary);
  }
}

/* ── HERO SLIDER ── */
.slider-wrapper { width: 100%; overflow: hidden; }
.anywhere-slider { position: relative; }
.picture-slide picture, .picture-slide img { width: 100%; max-height: 700px; object-fit: cover; }

/* ── TAGLINE BAR ── */
.greyArea {
  background: var(--tan);
  margin-bottom: 55px;
}
.row-rapper-padding { max-width: 1200px; margin: 0 auto; }
.row-rapper-padding > div { padding: 30px 15px; }
.row-rapper-padding h1 {
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .5px;
}

/* ── CONTENT BLOCKS ── */
.master-wrapper-content { padding: 0 40px; max-width: 1300px; margin: 0 auto; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 55px;
}
.grid-item img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 380px;
}
.grid-item h1 { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.grid-item p { text-align: left; color: var(--text); line-height: 1.7; }
.grid-arrow { margin-bottom: 20px; margin-top: 18px; }
.grid-arrow a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 14px;
  transition: background .2s;
}
.grid-arrow a:hover { background: var(--secondary); color: #fff; }

/* standswithsmall variant */
.standswithsmallbanner .grid {
  margin-bottom: 55px;
  padding: 50px 0;
  background: var(--beige);
  border-radius: var(--radius);
  padding-left: 40px;
  padding-right: 40px;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title p { color: #666; font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ── COURSES GRID (3 cards) ── */
.courses-section { margin-bottom: 55px; }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  border: 1px solid #e8e0d6;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.course-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.course-card img { width: 100%; height: 200px; object-fit: cover; }
.course-card-body { padding: 20px; }
.course-card-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.course-card-body p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.course-card-body .price { font-size: 22px; font-weight: 700; color: var(--secondary); }
.course-card-body .btn-buy {
  display: inline-block;
  margin-top: 12px;
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  transition: background .2s;
}
.course-card-body .btn-buy:hover { background: var(--secondary); }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 50px 40px;
  margin-bottom: 55px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.how-step { text-align: center; }
.how-step .step-num {
  width: 52px; height: 52px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  margin: 0 auto 14px;
}
.how-step h4 { font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.how-step p { font-size: 13px; color: #666; }

/* ── TESTIMONIALS ── */
.testimonials-section { margin-bottom: 55px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-card .stars { color: var(--secondary); font-size: 16px; margin-bottom: 10px; }
.testimonial-card p { font-size: 14px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.testimonial-card .author { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ── PRICING ── */
.pricing-section { margin-bottom: 55px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 2px solid #e8e0d6;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-card.popular {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(181,164,139,.2);
}
.pricing-card .plan-name { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.pricing-card .plan-price { font-size: 38px; font-weight: 800; color: var(--secondary); }
.pricing-card .plan-price span { font-size: 16px; font-weight: 400; color: #888; }
.pricing-card ul { list-style: none; margin: 18px 0; text-align: left; }
.pricing-card ul li { font-size: 14px; color: #555; padding: 5px 0; border-bottom: 1px solid #f0e8e0; }
.pricing-card ul li::before { font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f00c"; color: var(--secondary); margin-right: 8px; }
.pricing-card .btn-plan {
  display: block;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 10px;
  transition: background .2s;
}
.pricing-card .btn-plan:hover { background: var(--secondary); }

/* ── FAQ ── */
.faq-section { margin-bottom: 55px; }
.faq-item { border-bottom: 1px solid #e8e0d6; padding: 16px 0; }
.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f078"; font-size: 12px; color: var(--secondary); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding: 12px 0 4px; font-size: 14px; color: #555; line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 55px;
}
.cta-banner h2 { font-size: 28px; color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #ccc; font-size: 15px; margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner a {
  background: var(--secondary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
}
.cta-banner a:hover { background: #9e8e74; color: #fff; }

/* ── CONTACT FORM ── */
.contact-section { margin-bottom: 55px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-size: 26px; color: var(--primary); margin-bottom: 18px; }
.contact-info p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.contact-detail i { color: var(--secondary); font-size: 18px; margin-top: 2px; }
.contact-detail span { font-size: 15px; color: var(--text); }

.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 5px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 16px;
  font-family: inherit;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--secondary); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.contact-form button:hover { background: var(--secondary); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--beige);
  padding: 50px 40px;
  margin-bottom: 55px;
  text-align: center;
}
.page-hero h1 { font-size: 34px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.page-hero p { color: #666; font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ── INNER PAGE CONTENT ── */
.inner-content { max-width: 900px; margin: 0 auto 55px; padding: 0 20px; }
.inner-content h2 { font-size: 22px; color: var(--primary); margin: 28px 0 10px; font-weight: 700; }
.inner-content h3 { font-size: 18px; color: var(--primary); margin: 22px 0 8px; }
.inner-content p { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 14px; }
.inner-content ul, .inner-content ol { margin: 10px 0 14px 24px; }
.inner-content li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 6px; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 55px; }
.about-img img { border-radius: var(--radius); width: 100%; object-fit: cover; max-height: 420px; }
.about-text h2 { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.about-text p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 14px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 55px; }
.team-card { text-align: center; }
.team-card img { border-radius: 50%; width: 120px; height: 120px; object-fit: cover; margin: 0 auto 14px; }
.team-card h4 { font-size: 16px; color: var(--primary); font-weight: 700; }
.team-card p { font-size: 13px; color: #777; }

/* ── SOLUTIONS / SERVICES ── */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 55px; }
.solution-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px;
}
.solution-card i { font-size: 28px; color: var(--secondary); margin-bottom: 12px; }
.solution-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.solution-card p { font-size: 14px; color: #555; line-height: 1.65; }

/* ── GETTING STARTED STEPS ── */
.steps-list { margin-bottom: 55px; }
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.step-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.step-text h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.step-text p { font-size: 15px; color: #555; line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: #fff; border-top: 1px solid #e8e0d6; margin-top: 30px; }
.footer-upper { background: var(--beige); padding: 30px 40px; display: none; } /* no social */
.footer-middle {
  padding: 40px 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px; margin: 0 auto;
}
.footer-block .title { font-weight: 700; color: var(--primary); font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-block .list { list-style: none; }
.footer-block .list .footer-menu__item { margin-bottom: 8px; }
.footer-block .list .footer-menu__link { font-size: 13px; color: #666; }
.footer-block .list .footer-menu__link:hover { color: var(--secondary); }
.footer-block address { font-style: normal; font-size: 13px; color: #666; line-height: 1.8; }
.footer-lower {
  background: var(--beige);
  padding: 18px 40px;
}
.footer-texts { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; }
.footer-text.copyright .txt { font-size: 12px; color: #888; }

/* ── SEND.PHP SUCCESS ── */
.success-box {
  max-width: 600px; margin: 80px auto; text-align: center; padding: 50px 40px;
  border: 1px solid #e8e0d6; border-radius: var(--radius);
}
.success-box i { font-size: 54px; color: var(--secondary); margin-bottom: 20px; }
.success-box h1 { font-size: 26px; color: var(--primary); margin-bottom: 12px; }
.success-box p { font-size: 15px; color: #555; margin-bottom: 22px; }
.success-box a { background: var(--primary); color: #fff; padding: 11px 26px; border-radius: 4px; font-size: 14px; }
.success-box a:hover { background: var(--secondary); }

/* ── STAR RATING ── */
.stars { color: #e8b84b; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .master-wrapper-content { padding: 0 16px; }
  .grid { grid-template-columns: 1fr; gap: 24px; }
  .standswithsmallbanner .grid { padding: 30px 20px; }
  .grid .grid-item:last-child { order: -1; }
  .standswithsmallbanner .grid .grid-item:first-child { order: 1; }
  .courses-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-middle { grid-template-columns: 1fr; padding: 30px 20px; }
  .header-upper { padding: 8px 16px; }
  .footer-lower { padding: 14px 16px; }
  .page-hero { padding: 36px 20px; }
  .cta-banner { padding: 36px 20px; }
  .how-section { padding: 36px 20px; }
  .row-rapper-padding h1 { font-size: 20px; }
  .grid-item h1 { font-size: 24px; }
}

@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
