/* =================================================
   CSS VARIABLES (Reusable Color System)
   ================================================= */
:root {
  --bg-main: #F8F6F2;
  --bg-green: #D1DAC4;
  --bg-peach: #F4F1ED;
  --bg-peach-secondary: #F7E7D8; /*#F7E7D8; */

  --text-primary: #594235;
  --text-muted: #7D7672;

  --brand-primary: #AB5936; /* for accessability, previous: #C97552; /*#E1AFAF; /* #C97552; #E6B19B; */
  --brand-secondary: #5F7845; /* for accessability, origin: #8CA26E; */

  --border-soft: #EBE7E2;

  --text-gray: #707070;
}

/* =================================================
   Global Styles
   ================================================= */
body {
  font-family: "Noto Sans Hebrew", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-main);
  display:flex;
  flex-direction:column;
  min-height:100vh
}

main
{
	flex:1
}
.text-primary
{
	color: var(--text-primary) !important;
}

.brand-primary
{
	color: var(--brand-primary) !important;
}

.brand-secondary
{
	color: var(--brand-secondary) !important;
}

.bg-main {
  background-color: var(--bg-main);
}
a{
  transition: all 0.5s ease;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
}
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Top bar */
.hamburger span:nth-child(1) {
  top: 0;
}

/* Middle bar */
.hamburger span:nth-child(2) {
  top: 10px;
}

/* Bottom bar */
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE STATE → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}
.long-arrow-icon{
  background: url(../designFiles/long-arrow.svg) center center no-repeat;
  background-size:contain;
  height: 13px;
  width: 28px;
  display: inline-block;
}
.view-all-link{
  transition:all 0.5s ease;
  &:hover{
    filter: contrast(0.5);
    transform: scale(1.1);
  }
}
.text-muted{
  color: var(--text-muted) !important;
}
 .container-sm{
    max-width:923px;
  }
  @media (max-width:767px) {
    .container{
      padding:0 20px;
    }
  }

/* =================================================
   Header Styles
   ================================================= */
   #site-header{
    z-index: 9;
    top:0;
    .offcanvas{
      top: 80px;
    width: 100%;
    border: 0;
    background: none;
    .nav-link{
      color: #fff;
      font-size:28px;
      text-shadow: 4px 4px 8px rgba(0 0 0 / 50%);
      padding: 0;
    }
}
.offcanvas-backdrop{
      top: 80px;
    background: rgb(89 66 53 / 95%);
    opacity: 1;
}
   }
.site-header .nav {
  gap:24px
}
.site-footer .nav {
	gap: 12px;
}
.site-header .nav-link,
.site-footer .nav-link {
  color: var(--text-primary);
  font-weight: normal;
  font-size: 18px;
  padding: 5px 0px;
  &.active-link{
    font-weight: 900;
  }
}

.site-footer .nav-link {
	font-size: 1rem;
}

.site-header .nav-link:hover,
.site-footer .nav-link:hover {
  color: var(--brand-secondary);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-subtitle {
  font-size: 1rem;
  color: var(--text-primary);

  @media (max-width:767px) 
  {
  	font-size: 0.75rem;
  }
}

.site-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    @media (max-width:991px) {
        img{
          width:92px
        }
    }
}
.header-social{
  a{
    &:hover{
      filter: contrast(1.5);
      transform: scale(1.1);
    }
  }
}

/* =================================================
   Buttons
   ================================================= */
.btn-primary-custom {
  background-color: var(--brand-primary);
  color: var(--bg-main);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  border: none;
  width: fit-content;
}

.btn-primary-custom:hover {
  opacity: 0.9;
}

.btn-menu {
  font-size: 1.5rem;
  background: none;
  border: none;
}

/* =================================================
   Footer
   ================================================= */
.site-footer {
  background-color: var(--border-soft);
  margin-top:auto;
}


/* Rounded container */
.contact-wrapper {
 
  background-color: var(--border-soft);
  border-radius: 100px 100px 0 0;
  form{
    max-width: 363px;
    margin: auto;
    .btn-primary-custom{
    /*  width:111px;*/
	  font-weight: 600;
    }
  }

  .btn-primary-custom:hover
  {
  	background-color: var(--brand-secondary);
  }
  form.register-form
  {
	max-width: 400px;
}
  p{
    font-size:18px;
  }
}

/* =================================================
   Form Inputs
   ================================================= */
.custom-input {
  background-color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  direction: rtl;
}

.custom-input::placeholder {
  color: var(--text-muted);
}

/* =================================================
   Secondary Button (WhatsApp style)
   ================================================= */
.btn-secondary-custom {
  background-color: var(--brand-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary-custom:hover 
{
  background-color: var(--brand-secondary);
}

/* Small icon bubble */
.icon-circle {
  background-color: rgba(255,255,255,0.25);
  border-radius: 50%;
  padding: 0.35rem;
}

/* =================================================
   Footer Bottom
   ================================================= */
.site-footer {
  margin-top: 2rem;
}
/* hero-section */
/* HERO */
.hero {
  position: relative;
  width: 100%;
  margin: auto;
  height: 350px;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
  background-color: #594235;

}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../designFiles/hero-bg.webp") center/cover no-repeat;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  margin: auto;
  max-width:687px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  align-items: center;
  .btn-primary-custom{
    width: 240px;
    border: none;
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    font-weight: 600;
    padding: 0px;
	box-shadow: 0px 7px 11px 8px rgba(89 66 53 / 0.5);;

  }
  .btn-primary-custom:hover
  {
  	background-color: var(--brand-secondary);
  }
}

.btn-primary-custom:disabled, .btn-primary-custom:disabled:hover
{
	background-color: var(--bg-green);
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 4px 4px 8px rgba(0 0 0 / 0.5);
}

.hero-content p {
  font-size: 28px;
  line-height:32px;
/*  margin-bottom: 28px;*/
    text-shadow: 4px 4px 8px rgba(0 0 0 / 0.5);
}



/* Responsive */
@media (max-width: 768px) {

  .hero {
    height: 422px;
    border-radius: 0 0 60px 60px;
    padding:0 5px;
  }
.hero-content{
  padding:0;
}
  .hero-content h1 {
    font-size: 60px;
    line-height: 60px;
  }

  .hero-content p {
    font-size: 28px;
    line-height: 32px;

  }
}
/* workshop */
.workshops-section {
  background: var(--bg-peach);
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #4b3a2f;
  margin: 0 0 25px;
}

.workshop-card {
  transition: all 0.5s ease;
  background: #fff;
  border-radius: 5px 50px 5px 5px;
  overflow: hidden;
  box-shadow:0 4px 4px rgba(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  .btn-primary-custom{
    padding:7px 18px
  }
&:hover{
  transform:translateY(-5px)
}
}
.workshop-card > a{
  color: var(--text-primary);
}
.workshop-image {
  position: relative;
}

.workshop-image img {
  border-radius: 5px 50px 0;
  width: 100%;
  max-height: 267px;
}

.badge-tag {
position: absolute;
    top: 14px;
    left: 14px;
    background: rgb(244 241 237 / 0.85);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    max-width: 80%;
    text-align: center;
    color: var(--text-primary);
	z-index: 8;
}

.badge-new {
  background: #e8f0dc;
}

.workshop-body {
  padding: 20px;
  span.badge{
    background:var(--brand-secondary);
    border-radius:50px;
  }
}

.workshop-body .workshop-name {
  font-weight: 700;
  margin-bottom: 10px;
  font-size:20px;
}

.workshop-body p {
  font-size: 16px;
  color: var(--text-primary);
  line-height: normal;
}

.workshop-meta {
  display: flex;
  justify-content: start;
  gap: 20px;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 12px;
}

.workshop-footer {
  padding: 16px 20px;
  border-top: 1px solid #E0D9D1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-main);
}

.workshop-footer .btn-primary-custom {
&:hover{
  background-color: var(--brand-secondary);
}
}

.price {
  text-align: start;
  line-height: 18px;
}

.price small {
  display: block;
  font-size: 12px;
}

.price strong {
  color:var(--brand-secondary);
  font-size: 20px; /* 18px; */
}

.upcoming-workshop
{
	margin:auto;
}
.upcoming-date{
  margin-left:auto;
/*  padding-right:25px;*/
}
.view-all-link {
  color: var(--brand-secondary);
  font-weight: 700;
  text-decoration: none;
  font-size: 24px;
}
.time-icon{
  position: relative;
   font-size:14px;
  color: var(--text-primary); /*--text-muted*/
  &:before{
    content:'';
    background: url(../designFiles/clock.svg) no-repeat center center;
    height: 16px;
    width: 16px;
    background-size:contain;
    display:inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
}
.user-icon{
  position: relative;
  font-size:14px;
  color: var(--text-primary); /*--text-muted*/
  &:before{
    content:'';
    background: url(../designFiles/user-groups.svg) no-repeat center center;
    height: 16px;
    width: 16px;
    background-size:contain;
    display:inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
}

.no-icon
{
    height: 18px;
	width: 18px;
}

/* upcoming-section */
.upcoming-workshop{
		font-size: 20px !important;
  background: var(--border-soft);
  .card{
/*    max-width: 923px;*/
    width: 100%;
    margin: auto;
   
    & span{
      color: var(--text-primary);
    }
    a{
      span{
        color:var(--brand-secondary)
      }
    }
  }
  a{
    color: var(--brand-secondary);
  }
  @media (max-width:767px) {
     .workshop-info{
      a{
        width:100%;
        text-align: start;
      }
    }
  }
}

/* ab-sec-about-founder */
.af-sec, .private-sec{
  .card{
    
    border:0;
    border-radius:0 0px 100px 100px;
    overflow: hidden;
    background: var(--bg-peach-secondary);
    .card-thumb{
      flex:0 0 50%;
      img{
        border-radius:0 100px 0 0;
        width:100%;
        height: 100%;
      }
    }
    .card-body{
      flex:0 0 58%;
      p{
        font-size:22px;
        line-height: 32px;
        color: var(--text-primary);
      }
    }
     .btn-primary-custom{
          font-size: 20px;
          width:168px;
          text-align: center;
		  font-weight: 600;
        }
  	.btn-primary-custom:hover
	  {
  		background-color: var(--brand-secondary);
	  }
  }
  @media (max-width:991px) {
      .card{
        flex-direction: column-reverse !important;
        .card-thumb{
          img{
          border-radius:0 100px 0 100px
        }
        }
        div{
          width:100%;
        }
        .section-title{
          max-width:200px;
        }
       
      }
  }
}

.private-sec
{
	background: var(--border-soft);
	border-radius: 0px;

	.card
	{
  		background: #FFF;
	}

	.card-body, .card-thumb
	{
		padding: 16px;
	}

	.card-thumb
	{
		flex: 0 0 30% !important;
	}

	.section-title
	{
		max-width: unset !important;
	}

	.btn-primary-custom
	{
		background-color: var(--brand-secondary);
		width: 230px !important;
	}
	
	.btn-primary-custom:hover
	{
		background-color: var(--brand-primary) !important;
	}
}

/* info-section */
.know-sec{
  .container{
    max-width:923px;
  }
  .card{
    background:none;
    border:0;
    box-shadow:none;
    padding:0;
    display:flex;
    align-items: center;
    .card-body{
      color: var(--text-primary);
      h3{
        font-size:22px;
        font-weight: 500;
      }
      p{
        margin: 0;
      }
    }
  }
}
/* inner-pages */
.inner-hero-sec{
  height: 300px;
}
.workshop-page-hero{
  .hero-overlay{
    background-image: url(../designFiles/workshop-bright-bg.webp);
	opacity: 0.45;
  }
}
.worshop-card-list{
  background: none;
}
@media (max-width:767px) {
  .workshop-page-hero{
    height: auto;
    padding: 30px 5px;
  }
}
.inner-secv2{
  max-width:1320px;
  margin: auto;
  h1{
    font-size: 44px; /*60px;*/
  }
  .card{
    background:#E6CCB4;
    .card-thumb{
      img{
      height: 427px;
      object-fit: cover;
    }
    }
    .card-body{
      padding-right: 5rem !important;
    }
  }
  @media (max-width:991px) {
    .card{
      .section-title{
        max-width:100%;
      }
    }
  }
  @media (max-width:767px) {
    .card{
       .card-body{
      padding:2rem 1rem !important;
    }
    }
  }
}
.wordshop-detail{
  p{
    font-size:22px;
  }
}


.about-workshop {
    background: #EBE7E2;
    border-radius: 0 100px 0;
    padding: 4rem 3rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media (max-width:767px) {
      padding: 4rem 2rem;
    }
}

.about-workshop ul {
    margin-right: -15px;
    li::marker{
    color:#D76E42
}
}

.about-workshop h4 {
    font-size: 28px;
    font-weight: 400©
}

.about-workshop li {
    font-size: 22px;
    font-weight: 300;
}
.upcoming-workshop{
  .btn-primary-custom{
    background: var(--brand-secondary);
    color:var(--bg-main);
    font-weight: 600;
  }

  .btn-primary-custom:hover
  {
  	background-color: var(--brand-primary);
  }
}
/* contact-page */
.contact-page-hero{
  .hero-overlay{
    background-image:url(../designFiles/contact-bg.webp)
  }
}
.register-page-hero{
  .hero-overlay{
    background-image:url(../designFiles/register-bg.webp)
  }
}
.contact-footer-section{
  h3{
    font-size:26px;
    margin:0 0 25px;
  }
  iframe{
    width:100%;
    height: 280px;
  }
  .btn-secondary-custom
  {
		background-color: var(--brand-secondary);
		/*width: 230px !important;*/
  }
  .btn-secondary-custom:hover
  {
		background-color: var(--brand-primary) !important;
  }
}


@media (max-width:767px) {
.inner-secv2 .card .card-thumb img {
border-radius: 0 0 100px 100px !important;
height: 267px;
}

.inner-secv2 .card {border-radius: 0;}

.inner-secv2 .card .card-body .section-title {
text-align: center;
}

.inner-secv2 .card .card-body p,
.inner-secv2 .card .card-body div {
text-align: center;
}

.inner-secv2 .card .card-body p br {
display: none;
}

.inner-secv2 .card .card-body {
text-align: center;
}
}

.thumb-carousel {
  position: relative;
  height: 427px;
  overflow: hidden;
  border-radius: 5px 50px 0;
}


.thumb-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.thumb-carousel img.active {
  opacity: 1;
}
@media (max-width:767px) {
  .thumb-carousel{
    height:272px
  }
  
}

.form-check-input:checked
{
        background-color:var(--text-primary);
    border-color: var(--text-primary);
}

.form-check-input:focus 
{
    border-color: var(--text-primary);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(201 117 82 / 20%);
}

@media (max-width:767px) {
	.coursePageRegisterBtn {
		font-size: 16px !important;
	}
}