/**
* Template Name: Siimple
* Template URL: https://bootstrapmade.com/free-bootstrap-landing-page/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Nunito Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --nav-font: "Nunito Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f8efe4; /* Background color for the entire website, including individual sections */
  --default-color: #5a4638; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #4d2f21; /* Color for headings, subheadings and title throughout the website */
  --accent-color:  #be8354; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #fffaf4; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #fff8f1;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffd8ba; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #9e6a45; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #70472f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffdfc4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3e8dc;
  --surface-color: #fffaf4;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  background-image: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 45%), radial-gradient(circle at 85% 10%, rgba(231, 193, 159, 0.18) 0%, rgba(231, 193, 159, 0) 42%);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(64, 40, 26, 0.22);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  backdrop-filter: blur(4px);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 58px;
  width: auto;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(84, 54, 36, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none;
  }

  .navmenu {
    position: static;
    width: auto;
    top: auto;
    bottom: auto;
    right: auto;
    overflow: visible;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    overflow: visible;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff5ea;
    padding: 8px 14px;
    font-size: 16px;
    border-radius: 999px;
    justify-content: center;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff5ea;
    background-color: color-mix(in srgb, var(--accent-color), transparent 72%);
  }
}

@media (max-width: 1199.98px) {
  .header {
    padding: 10px 0;
    overflow: visible;
  }

  .header .logo img {
    max-height: 46px;
  }

  .navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: min(86vw, 320px);
    height: 100dvh;
    max-width: 320px;
    right: 0;
    transform: translateX(100%);
    background-color: var(--nav-mobile-background-color);
    z-index: 9997;
    box-shadow: -14px 0 32px rgba(43, 23, 10, 0.35);
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    padding: 66px 0 24px;
    overflow-y: auto;
    background-color: transparent;
  }

  .navmenu li {
    width: 100%;
  }

  .navmenu a,
  .navmenu a:focus {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 20px;
    font-size: 18px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    right: 20px;
    top: 20px;
    color: #fff5ea;
  }

  .mobile-nav-active .navmenu {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .header .logo img {
    max-height: 40px;
  }

  .mobile-nav-toggle {
    top: 16px;
    right: 14px;
    font-size: 30px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    right: 14px;
    color: #fff5ea;
  }

  .navmenu {
    width: 100vw;
    max-width: none;
    right: 0;
    transform: translateX(100%);
  }

  .mobile-nav-active .navmenu {
    transform: translateX(0);
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 12px 20px;
    font-size: 18px;
  }
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.footer h3 {
  font-size: 36px;
  font-weight: 300;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb,#bf8656, transparent 50%);
  /* background-color: color-mix(in srgb, var(--background-color), transparent 50%); */
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 104vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-warm-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 232, 210, 0.2) 0%, rgba(255, 232, 210, 0) 45%),
    linear-gradient(115deg, rgba(47, 27, 16, 0.8) 0%, rgba(96, 58, 35, 0.64) 42%, rgba(190, 131, 84, 0.52) 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 232, 210, 0.7);
  background: color-mix(in srgb, #ffffff, transparent 88%);
  color: #ffe8d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: heroRise 0.7s ease-out both;
}

.hero h2 {
  margin: 0;
  font-size: 86px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff8f3;
  text-shadow: 0 12px 22px rgba(33, 18, 9, 0.42);
  animation: heroRise 0.7s ease-out 0.15s both;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: #ffefde;
  line-height: 1.6;
  animation: heroRise 0.7s ease-out 0.25s both;
}

.hero .hero-kicker {
  margin-bottom: 12px;
  color: #ffe3c8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  animation: heroRise 0.7s ease-out 0.1s both;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 30px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 14px 28px -16px rgba(37, 20, 10, 0.95);
}

.hero .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroRise 0.7s ease-out 0.35s both;
}

.hero .btn-get-started.btn-secondary {
  background: color-mix(in srgb, #ffffff, transparent 88%);
  border: 1px solid rgba(255, 241, 228, 0.8);
  color: #fff7ef;
}

.hero .btn-get-started.btn-secondary:hover {
  background: color-mix(in srgb, #ffffff, transparent 80%);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  transform: translateY(-2px);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.warm-intro {
  padding: 42px 0;
}

.warm-intro p {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  font-size: 31px;
  line-height: 1.35;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Workshops Section
--------------------------------------------------------------*/
.workshops {
  position: relative;
}

.workshops-carousel {
  padding: 10px 45px 55px;
}

.workshops-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.workshops-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.workshops-carousel .carousel-indicators .active {
  background-color: var(--accent-color);
}

.workshops-carousel .carousel-control-prev,
.workshops-carousel .carousel-control-next {
  width: 38px;
  height: 38px;
  top: calc(50% - 26px);
  background: color-mix(in srgb, var(--surface-color), white 30%);
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 12px 24px -16px rgba(66, 39, 21, 0.8);
}

.workshops-carousel .carousel-control-prev {
  left: -8px;
}

.workshops-carousel .carousel-control-next {
  right: -8px;
}

.workshops-carousel .carousel-control-prev-icon,
.workshops-carousel .carousel-control-next-icon {
  filter: invert(22%) sepia(17%) saturate(1127%) hue-rotate(341deg) brightness(95%) contrast(90%);
  width: 18px;
  height: 18px;
}

.workshop-slide {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, #fff6ee 0%, #fffaf4 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  box-shadow: 0 24px 40px -30px rgba(76, 45, 26, 0.85);
}

.workshop-slide img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 360px;
  object-fit: cover;
}

.workshop-slide-content {
  padding: 26px;
}

.workshop-slide-content h3 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.workshop-slide-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 50%);
  font-weight: 700;
  margin-bottom: 8px;
}

.workshop-slide-description {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.workshop-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), white 86%);
  color: #6b4329;
  font-size: 0.92rem;
  font-weight: 700;
}

.btn-workshop {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-workshop:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-1px);
}

.workshop-modal {
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  background: #fffaf4;
}

.workshop-modal .modal-header,
.workshop-modal .modal-footer {
  border-color: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.workshop-modal-image {
  border-radius: 14px;
  margin-bottom: 16px;
  max-height: 340px;
  width: 100%;
  object-fit: cover;
}

.workshop-modal-subtitle {
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 48%);
}

.workshop-modal-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.workshop-modal-short {
  font-size: 1.05rem;
  font-weight: 700;
}

.workshop-modal-long {
  font-size: 1rem;
  line-height: 1.7;
}

.workshop-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.workshop-modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  background: color-mix(in srgb, var(--accent-color), white 86%);
  color: #6b4329;
  font-weight: 700;
}

.btn-workshop-modal-cta {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 700;
}

.btn-workshop-modal-cta:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.workshops-page-main {
  padding-top: 120px;
}

.workshops-page-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

.workshops-grid {
  margin-top: 28px;
}

.workshop-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  background: linear-gradient(160deg, #fff7ef 0%, #fffaf4 100%);
  box-shadow: 0 24px 40px -30px rgba(76, 45, 26, 0.85);
}

.workshop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.workshop-card-body {
  padding: 22px;
}

.workshop-card-body h3 {
  font-size: 1.85rem;
  margin-bottom: 10px;
}

.workshop-card-text {
  margin-bottom: 14px;
  line-height: 1.7;
}

.workshop-card-includes {
  margin: 0 0 18px;
  padding-left: 18px;
}

.workshop-card-includes li {
  margin-bottom: 6px;
}

.workshops-empty {
  display: none;
  border-radius: 18px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), white 20%);
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 58%);
  color: color-mix(in srgb, var(--heading-color), #000000 12%);
  text-align: center;
  font-weight: 700;
}

.workshops-empty.is-visible {
  display: block;
}

.ebook-page-main {
  background-image: radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 44%), radial-gradient(circle at 82% 14%, rgba(190, 131, 84, 0.2) 0%, rgba(190, 131, 84, 0) 42%);
}

.ebook-hero-section {
  padding-top: 24px;
}

.ebook-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), white 78%);
  color: color-mix(in srgb, var(--heading-color), #000 8%);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.82rem;
  font-weight: 800;
}

.ebook-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 18px 0 12px;
}

.ebook-subtitle {
  margin: 0 0 16px;
  font-size: 1.14rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 35%);
}

.ebook-promise {
  max-width: 720px;
  font-size: 1.03rem;
  line-height: 1.72;
}

.ebook-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ebook-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}

.ebook-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(77, 47, 33, 0.08);
  color: #5c3b29;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.96rem;
}

.ebook-price-chip small {
  opacity: 0.85;
  font-size: 0.86rem;
}

.ebook-mockup-card {
  border-radius: 24px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  background: linear-gradient(160deg, #fff9f3 0%, #fff2e8 100%);
  box-shadow: 0 30px 45px -35px rgba(69, 38, 20, 0.9);
}

.ebook-mockup-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #77462a;
  background: rgba(255, 255, 255, 0.7);
}

.ebook-mockup-frame {
  margin-top: 14px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
}

.ebook-mockup-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.ebook-mockup-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  border-radius: 999px;
  background: rgba(38, 22, 12, 0.78);
  color: #fff4e8;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.ebook-mockup-caption {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), #000 10%);
}

.ebook-info-card h3,
.ebook-list-card h3,
.ebook-benefits-card h3,
.ebook-step-card h3 {
  font-size: 1.5rem;
}

.ebook-check-list,
.ebook-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ebook-check-list li,
.ebook-benefits-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.ebook-check-list i {
  color: #4f8a4e;
  margin-top: 2px;
}

.ebook-bonus-box {
  margin-top: 18px;
  border-radius: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color), white 84%);
}

.ebook-bonus-box h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.ebook-bonus-box p {
  margin: 0;
  line-height: 1.68;
}

.ebook-benefits-card img {
  height: 230px;
  object-fit: cover;
}

.ebook-benefits-list span {
  white-space: nowrap;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 999px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent-color), white 78%);
  color: color-mix(in srgb, var(--heading-color), #000 8%);
  margin-top: 2px;
}

.ebook-process-card {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  background: linear-gradient(150deg, #fff6ed 0%, #fffaf5 60%, #fff3e8 100%);
  box-shadow: 0 26px 40px -36px rgba(75, 42, 24, 0.85);
}

.ebook-step-card {
  border-radius: 18px;
  padding: 20px;
  background: #fffefc;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.ebook-step-number {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--accent-color), white 80%);
  color: #73492f;
  margin-bottom: 10px;
}

.ebook-step-card p {
  margin: 0;
  line-height: 1.65;
}

.ebook-cta-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed color-mix(in srgb, var(--accent-color), transparent 52%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ebook-cta-price span {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--heading-color), #000 14%);
}

.ebook-cta-price p {
  margin: 4px 0 0;
}

.ebook-cta-price small {
  font-weight: 700;
  margin-right: 10px;
  opacity: 0.78;
}

.ebook-cta-price strong {
  font-size: 1.24rem;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 32%);
}

.ebook-context-image {
  width: 100%;
  min-height: 220px;
  max-height: 280px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0 22px 36px -30px rgba(63, 34, 17, 0.9);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 56px;
  }

  .hero p {
    font-size: 18px;
  }

  .warm-intro p {
    font-size: 24px;
  }

  .workshops-carousel {
    padding: 0 0 48px;
  }

  .workshops-page-main {
    padding-top: 108px;
  }

  .workshop-card img {
    height: 205px;
  }

  .workshop-card-body h3 {
    font-size: 1.55rem;
  }

  .workshops-carousel .carousel-control-prev,
  .workshops-carousel .carousel-control-next {
    display: none;
  }

  .workshop-slide img {
    min-height: 220px;
    max-height: 220px;
  }

  .workshop-slide-content {
    padding: 20px;
  }

  .workshop-slide-content h3 {
    font-size: 1.65rem;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    font-size: 17px;
  }

  .ebook-title {
    font-size: 2.15rem;
  }

  .ebook-mockup-frame img {
    min-height: 320px;
  }

  .ebook-process-card {
    padding: 20px;
  }

  .ebook-cta-price strong {
    font-size: 1.12rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2.2rem;
  font-weight: 600;
}

.about img {
  border-radius: 18px;
  box-shadow: 0 24px 36px -30px rgba(66, 38, 22, 0.9);
}

.about .about-block-title {
  font-family: var(--default-font);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), #000000 12%);
  margin: 26px 0 10px;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 22px 40px -30px rgba(89, 56, 34, 0.7);
  border-radius: 22px;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.why-us .card .img {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.why-us .card .img img {
  transition: transform 0.6s ease;
}

.why-us .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), white 92%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.why-us .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 44px -30px rgba(89, 56, 34, 0.9);
}

.why-us .card:hover .img img {
  transform: scale(1.05);
}

.why-us .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.why-us .card h2 a {
  color: var(--heading-color);
}

.why-us .card h2 a:hover {
  color: var(--accent-color);
}

.why-us .card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 24px 45px -35px rgba(91, 61, 39, 0.75);
  padding: 42px 28px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(190, 131, 84, 0.92) 0%, rgba(233, 184, 145, 0.75) 100%);
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-box {
  background: color-mix(in srgb, var(--surface-color), #ffffff 40%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 35px -30px rgba(95, 58, 34, 0.9);
}

.contact iframe {
  border-radius: 14px;
  box-shadow: 0 20px 35px -30px rgba(71, 40, 19, 0.95);
}

.contact .info-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact .contact-helper {
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 38%);
  margin-bottom: 10px;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}