/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

body {
  overflow-x: hidden;
}

.site-content {
  margin: 0;
  padding: 0!important;
}

.site-header {
  z-index: 3;
}

::selection {
    background-color: #917450a2;
    color: white; 
}

::-webkit-scrollbar {
    width: 12px; 
}

::-webkit-scrollbar-track {
    background: #f0f8f6; 
}

::-webkit-scrollbar-thumb {
    background: #866F52;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #866F52; 
}

/* עבור Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #866F52 #f0f8f6;
}

.separate-containers .site-main > section {
    margin-bottom: 5%;
} 

h1, h2, h3, h4, h5, h6 {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #866F52;
}

p {
font-family: "Assistant", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: right;
}

/*hero*/ 

.post-10 {
  display: none;
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
      margin: 0;
    padding: 0;

}

/* מגדיר שהסקשן יתפוס את כל גובה המסך */
#home.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
    margin: 0;
    padding: 0;
      width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* סליידר ברקע: ממוקם מוחלט, תופס את כל הסקשן */
.slider_header_box {
  position: absolute!important;
  top: 0!important; 
  left: 0!important;
  width: 100%!important;
  height: 100%!important;
  z-index: 1!important;
  filter: opacity(0.5) blur(1px);
}

/* קונטיינר הסליידר - תופס את כל המקום */
.slider_header {
  width: 100%!important;
  height: 100%!important;
}

/* כל סליידר-סלייד: תופס 100% גובה ורוחב, עם חיתוך נכון */
.slider_header .swiper-slide img.slide_header {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important; /* התאמת התמונה לכיסוי מלא בלי עיוות */
}

/* Overlay for better text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

/* Header Content */
.header {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

/* Logo */
.header img {
  margin-bottom: 30px;
  filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Main Heading */
.header h1 {
  color:#866F52;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(254, 253, 253, 0.4);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Subheading */
.header p {
  color: #866F52;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  opacity: 0.95;
  text-align: center;
}

/* CTA Button */
.button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius:5px;
  background-color: #866F52;
  color:#EFE9E3;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

/*wellness*/ 

.wellness {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.wellness h3 {
  margin-bottom: 80px;
}

.wellness-options {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.wellness-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.wellness-header {
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
}

.wellness-header h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.wellness-header img {
  width: 150px;
  height: 150px;
  transition: 0.3s ease;
}

.dropdown-arrow {
  display: block;
  font-size: 1.2rem;
  color: #866F52;
  transition: transform 0.3s ease;
  margin-top: 5px;
}

.wellness-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

.wellness-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: right;
  padding: 0 20px;
}

.wellness-item.active .wellness-dropdown {
  max-height: 1000px;
  padding: 20px;
}

/* Zoom-in effect for images*/ 

.zoom-image {
    transition: transform 0.3s ease;
    transform: scale(0); /* התחלה מגודל 0 (בלתי נראה) */
    opacity: 0; /* אופציונלי - התחלה שקופה */
}

.zoom-image.zoom-in {
    transform: scale(1); /* זום-אין לגודל מלא */
    opacity: 1; /* אופציונלי - הופעה מלאה */
}

/*CTA*/ 

.cta {
  background-image: url("https://ezra-hazor.nitzshacharenv.com/wp-content/uploads/2026/01/DSC02637.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* This is the equivalent of object-fit for backgrounds */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Makes it static while scrolling */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 25vh;
  position: relative; /* Changed from static */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9F8F6;
    opacity: 0.7;
    pointer-events: none; /* Allows clicking through the overlay */
}

/*founder*/

  .about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0% 10%;
}

.about-intro, .about-image {
  width:50%!important;
  padding: 0.5rem;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 -0.5rem 0;
}

.about h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  color: #333;
  text-transform: uppercase;
}

.about p {
  font-size: 1.1rem;
  margin: 0 0 0 2rem;
  line-height: 1.4;
}

.about img {
  border-radius: 10px;
}

/*reco section*/ 

.reco {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    position: relative;
    overflow-x: hidden;
    background-image: url("https://ezra-hazor.nitzshacharenv.com/wp-content/uploads/2026/01/DSC02405.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    padding-bottom: 5%;
}

.reco::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9F8F6;
    opacity: 0.7;
    pointer-events: none; /* Allows clicking through the overlay */
}

.reco h1 {
    text-align: center;
}

.reco_container {
    max-width: 1200px!important;
}

.reco_container ul {
   margin:0;
}

.card_item{
    background-color: #F9F8F6;
    border-radius: 10px;
    position: relative;
    padding:10px 0px;
    gap:0px;
}

.card_info {
  padding:10px 20px;
}

.custom-swiper-prev,
.custom-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)!important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    padding:10px;
}

.custom-swiper-prev {
    left: 30px;
}

.custom-swiper-next {
    right: 30px;
}

.swiper-pagination-bullet-active {
    background-color: #EFE9E3!important;
}

    /*booking*/ 
    
    .booking_section {
        display: flex;
        align-items: center;
        gap:20px;
    }

    .booking_calender, .booking_info {
        width:50%;
        padding: 0.5rem;
    }

    .booking_calender {
      background-color: #EFE9E3;
      padding:2%;
      border-radius: 10px;
    }


/*map*/ 

.map {
  width:100vw;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* Contact Section */

.site-main>:last-child {
  margin: bottom 40px !important;;
}

.site-footer {
  margin-top:5%;
}

.contact {
  padding: 2rem;
  margin-top: -10%;
  margin-bottom: 10%;
  background-color: #EFE9E3;
  border-radius: 5px;
  position: relative;
  z-index: 10!important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: right;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}

.contact-info > div {
  flex: 1;
}

.contact-info h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

.contact-info a {
  text-decoration: none;
  color:#866F52;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
}

.social-links a:nth-child(3){
  display: inline-block;
  width: 100px;
  height: 40px;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.social-links a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}



  /* ============================================
   RESPONSIVE BREAKPOINTS - TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    /* Hero Section */
    .header h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .header p {
        font-size: 1.1rem;
    }

    .button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /*wellness*/ 

    .wellness-options {
      flex-direction: column;
    }

    /* Founder Section */
    .about {
        padding:5%;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about h1 {
        font-size: 2.8rem;
    }

    .about p {
        font-size: 1rem;
        margin: 0 0 0 1rem;
    }

    /*booking*/ 
    
    .booking_section {
        display: flex;
        flex-direction: column-reverse;
        margin:10%;
    }

    .booking_calender, .booking_info {
        width:100%;
    }

    /*reco*/ 

.reco_container {
  margin: 0% 10%!important;
}

        /* Contact Section */
    .contact {
        margin: 0 5%;
        padding: 1.5rem;
        margin-top: -15%;
    }

    .contact-info {
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section */
    .header {
        padding: 0 15px;
    }

    .header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .header img {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

        /*wellness*/ 

    .wellness-options {
      flex-direction: column;
    }

    /* Founder Section */
    .about {
        flex-direction: column;
        padding: 5%;
    }

    .about-intro, .about-image {
        width: 100%!important;
        padding: 0.5rem 0;
    }

    .about h2 {
        font-size: 1.5rem;
    }

    .about h1 {
        font-size: 2rem;
    }

    .about p {
        font-size: 0.95rem;
        margin: 0;
    }

        /*reco*/ 

    .reco_container {
    margin:0 20%;
}

       /*booking*/ 
    
    .booking_section {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .booking_calender, .booking_info {
        width:100%;
    }
    
    .booking_calender {
      padding: 2% 2% 0.5% 2%;
    }

        /* Contact Section */
    .contact {
        margin: 0 5%;
        padding: 1.5rem;
        margin-top: -30%;
    }

    .contact h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    /* Hero Section */
    .header h1 {
        font-size: 1.6rem;
    }

    .header p {
        font-size: 0.9rem;
    }

    .header img {
        max-width: 150px;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

        /*wellness*/ 

    .wellness-options {
      flex-direction: column;
    }

    /* Founder Section */
    .about {
        padding: 3%;
    }

    .about h2 {
        font-size: 1.3rem;
    }

    .about h1 {
        font-size: 1.6rem;
    }

    .about p {
        font-size: 0.9rem;
    }

        /*reco*/ 

    .reco_container {
        margin:0 20%!important;
    }



       /*booking*/ 
    
    .booking_section {
        display: flex;
        flex-direction: column-reverse;
    }

    .booking_calender, .booking_info {
        width:100%;
    }

    .booking_calender {
      padding: 2% 2% 0.5% 2%;
    }

        /* Contact Section */
    .contact {
        padding: 1rem;
        margin-top: -30%;
    }

    .contact h3 {
        font-size: 1.1rem;
    }

    .contact-info h5 {
        font-size: 0.9rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }
}