


.red-underline {
  display: inline-block;       /* Ensures underline fits to text */
  border-bottom: 2px solid red;  /* Red underline */
  color: #fff;                 /* Keep text white (optional) */
  padding-bottom: 2px;         /* Small gap between text and underline */
  font-size: 1rem;             /* Adjust as needed */
}



.page-title {
  font-family: 'Bebas Neue', sans-serif; /* Or your preferred font */
  font-size: 2.5rem; /* Adjust size */
  color: #ba1209f7; /* Dark blue - change to your brand color */
  /*text-shadow: 0.1px 0.1px 0.1px rgba(243, 237, 237, 0.812); */
  
}

.page-title_p{
  font-family: 'Bebas Neue', sans-serif; /* Or your preferred font */
  font-size: 1.25rem; /* Adjust size */
  color: #f3efeff7; /* Dark blue - change to your brand color */
  text-shadow: 1px 1px 1px rgba(236, 8, 8, 0.812); 
  
}



/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .topbar {
    background-color: black;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 60px;
    width: auto;
  }
  
  .topbar-buttons {
    display: flex;
    gap: 0.5rem;
  }
  /*buttons for all top bar*/
  .contact-button {
    color: #fff;
    background-color: #e21b0d;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  
  
  
  .slideshow-container {
    position: relative;
    width: 100%;
    height: 300px; /* Set a fixed height for your slideshow */
    overflow: hidden;
    aspect-ratio: 4 / 3; 
  }
  
  .mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  
  .mySlides.active {
    opacity: 1;
    z-index: 1;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit:cover;
  } 
  
  
 

  
  
  
  
  
  body {
    
    font-family: 'Bebas Neue', sans-serif;
    padding: 1rem;
    line-height: 1.6;


    
    background:black
      
    
}
    
   
  
  header {
    display: flex;
    flex-direction: column;
    font-family:'Anton', sans-serif;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
  }
  
  
  
  
  
  
  /*text under web title */
  header p {
    font-size: 1rem;
    color: #ee0d15;
    margin-top: 0.3rem;
  }
  
  

  .about-video {
    display: block;
    width: 100%;         /* Responsive full width */
    max-width: 300px;    /* Limit the max size */
    height: auto;        /* Keep aspect ratio */
    margin: 20px auto;   /* Center the video with spacing */
    border-radius: 12px; /* Optional: rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
  }
  
  
  
  

  
  
  
  .services,
  .location,
  .about,
  .booking {
    margin-bottom: 2rem;
  }

  .about h2,
  .location h2,
  .services h2,
  .contact h2,
  .real_booking h2 {
    font-family:'Bebas Neue', sans-serif;
    width: 100vw; /* full width */
    margin: 2rem 0 1rem 0;
    padding: 0.5rem;
    font-weight: bold ;
    
    
    
    /* background: #fbf8f8f6; /* outer white background */ 
    color: #f7f3f3f7;
    
    font-size: 2rem; 
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    
  }





/* Remove default list styling (no bullets) */
.services ul {
  list-style: none;
}

/* Style each <li> block (each treatment section) */
.services ul li {
  background: #0d0d0db3; /* Light background for each item */
  margin-bottom: 0.5rem; /* Space between items */
  padding: 0.75rem; /* Inner spacing */
  border-radius: 6px; /* Rounded corners */
}

/* Style the <summary> dropdown button (heading for each treatment) */
.services li summary {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold; /* Make it bold */
  color: #f6f3f3; /* Red text */
  text-shadow: 1px 1px 1px rgba(17, 17, 17, 0.812);
  cursor: pointer; /* Hand cursor on hover */
  margin: 0; /* Remove any default margins */
  padding: 0.25rem 0.5rem; /* Add some padding inside */
  border-top: 2px solid red; /* 🔴 Red underline */
  
  
  border-radius: 3px; /* Slight rounding on corners */
  font-size: 1.5rem; /* Set heading size */
  line-height: 1.2; /* Adjust spacing between lines */
  
  display: list-item; /* Shrink-wrap to content */
}

/* Style the container that holds the dropdown content */
.services li details {
  margin-top: 0.5rem; /* Space between summary and content */
  color: #e0e0e0;
  background: #111111fc; /* Background for the dropdown area */
  padding: 0.5rem; /* Space inside */
  border-radius: 1px; /* Minimal rounding */
  font-size: 1rem; /* Base text size */
}

/* Style the paragraph inside the dropdown (treatment description) */
.services li details p {
  margin-bottom: 0.5rem; /* Space at the bottom of text */
  font-size: 1rem; /* Text size */
  
  color: #f1eeee; /* Light gray text */
  background: #0f0f0f; /* Dark background for contrast */
}

.details-container {
  display: block;
}


.service-image {
  width: 100%;         /* full width of the container */
  height: auto;        /* maintain aspect ratio */
  margin-top: 0.5rem;  /* space above image */
  border-radius: 4px;  /* optional rounded corners */
}

.real_booking  {
  text-align:center;
  
}

.image-border-link {
  display: inline-block;
  background-image: url('images/backdrop .jpg'); /* Your border image */
  background-size: 100% 100%; /* Stretch to fit */
  background-repeat: no-repeat;
  padding: 70px 100px; /* Adjust padding around text */
  text-align: center;
  font-weight: bold;
}

.booking-link {
  font-size: 2rem;        /* Set text size */
  color: white;           /* Text color */
  text-decoration: none;  /* Remove underline */
  display: inline-block;
  text-decoration: underline;
}


  
  

.about summary {
  font-size: 1.1rem; /* Match your paragraph size */
  color: #f5f1f1;
  cursor: pointer;
  margin-top: 0.5rem;
  list-style: none;
}

.about details[open] summary {
  margin-bottom: 0.5rem;
}

.about p {
  color: #f3f3f3; /* or use white: #fff */
  font-size: 1.1rem;
}





.location p {
  color: #f3f3f3;  /* White paragraph text */
  font-size: 1.1rem;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for readability */
  padding-top: 1rem;
  padding-bottom: 0.1rem;
  border-radius: 6px;
  max-width: 800px;
  margin: 0 auto 1rem auto; /* Center the paragraph */
}

.map-button {
  display: block;
  width: 100%;                      /* 80% of screen width */
  max-width: 600px;                 /* Optional max size */
  margin: 2rem auto;                /* Center horizontally */
  
  aspect-ratio: 4 / 3;             /* Maintain shape (adjust if needed) */
  background-image: url('images/1000045669.jpg');  /* Your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

/* The text layer */
.map-button-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  
  background: rgba(0, 0, 0, 0.6);    /* Semi-transparent black */
  padding: 0.2rem;                     /* Space around text */
  
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;                 /* Text size—adjust as you like */
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Optional: hover zoom effect */
.map-button:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}






  
  
section.contact p {
 font-size: 24px;
 color: #f9f7f7; /* Add color to verify */
 text-align: center ;
}
  
  
  
  footer {
    text-align: center;
    font-size: 0.85rem;
    color: #f9f7f7;
    margin-top: 2rem;
  }
  
/* === Slideshow 2 Styles === */
.slideshow2-container {
  display: flex;
  align-items: center;           /* vertically center arrows with slideshow */
  justify-content: center;       /* center the whole group */
  gap: 12px;
  margin-top: 30px;
  flex-wrap: nowrap;             /* prevent wrapping to new line */
}

.arrow2 {
  font-size: 2rem;
  color: red;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, color 0.3s ease;
  flex-shrink: 0;                /* keep arrows visible even if space is tight */
}

.arrow2:hover {
  transform: scale(1.2);
  color: darkred;
}

.slideshow2 {
  position: relative;
  width: 15rem;                  /* adjust as you like */
  height: 15rem;
  overflow: hidden;
  border: 1px solid #070707;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(15, 15, 15, 0.25);
  background: #faf8f8;
  flex-shrink: 0;
}

.slideshow2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  border-radius: 12px;
  background-color: #faf8f8;
}

.slideshow2 img.active {
  display: block;
}

.Morereviews {
  font-size: 2rem;
  color: white;
  text-decoration: underline;
  display: block;          /* makes it fill the line, so text-align works */
  text-align: center;      /* centers the text inside */
  margin: 0 auto;          /* centers the whole element if it has width */
}


  

  
  

/* ========== Media Query: Large Screens (≥ 1200px) ========== */
@media (min-width: 600px) and (max-width: 1199px) {
  .page-title {
    font-size: 3rem;
  }

  .page-title_p {
    font-size: 1.5rem;
  }

  .topbar {
    padding: 1.5rem 2rem;
  }

  .contact-button {
    padding: 0.6rem 1.2rem;
    font-size: 2rem;
  }

  .topbar-buttons {
    display: flex;
    gap: 3rem;
  }

  .logo{
    height: 90px;
    width: auto;
  }
  .about p {
    font-size: 1.5rem;
  }
  .about summary {
    font-size: 2rem; /* Match your paragraph size */
  }

  .slideshow-container {
    position: relative;
    width: 60vw; /* 80% of the viewport width */
    height:auto ;
    margin: 0 auto; /* Center horizontally */
    max-width: 500px; /* Optional: limit max size on ultra-wide screens */
  }
   
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .about-video {
    width: 40vw;
    height: auto;
    margin: 0 auto;
    max-width: 500px;
  }
  
  

  
  
  

  


.services li summary {
  font-size: 2.5rem;
}


/* detials dropdown text size */
.services li details {
  
  font-size: 1.5rem; /* Base text size */
}

/* Style the paragraph inside the dropdown (treatment description) */
.services li details p {
 
  font-size: 2rem; /* Text size */
  
}

.service-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.details-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.details-container p {
  width: 60%;
  margin: 0;
}

.details-container .service-image {
  width: 40%;
  margin-top: 0;
}
  


  

  .about h2,
  .location h2,
  .services h2,
  .booking h2,
  .real_booking h2 {
    font-size: 3rem;
  }

  .location p {
    color: #f3f3f3;  /* White paragraph text */
    font-size: 1.5rem;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for readability */
    padding-top: 1rem;
    padding-bottom: 0.1rem;
    border-radius: 6px;
    max-width: 500px;
    margin: 0 auto 1rem auto; /* Center the paragraph */
  }
  
  .map-button {
    display: block;
    width: 100%;                      /* 80% of screen width */
    max-width: 500px;                 /* Optional max size */
    margin: 2rem auto;                /* Center horizontally */
    
    aspect-ratio: 4 / 3;             /* Maintain shape (adjust if needed) */
    background-image: url('images/1000045669.jpg');  /* Your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
  }

  /* The text layer */
.map-button-text {
  
  padding: 1rem;                     /* Space around text */
  
  
  font-size: 2.2rem;                 
  
}

.red-underline{
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center; 
}

  

  .booking input,
  .booking textarea {
    width: 100%; /* Ensures full width consistency */
    padding: 0.75rem;
    margin-bottom: 1rem;
    
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
  }

  
  .booking button {
   
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 2rem;
    cursor: pointer;
  }

  section.contact p {
    font-size: 2rem;
    color: #fff; /* Add color to verify */
    text-align: center;
  }
  
  footer {
    text-align: center;
    font-size: 2rem ;
    
    margin-top: 2rem;
  }
}

/* ========== Media Query: Large Screens (≥ 1200px) ========== */
@media (min-width: 1200px) {
  .page-title {
    font-size: 3rem;
  }

  .page-title_p {
    font-size: 1.5rem;
  }

  .topbar {
    padding: 1.5rem 2rem;
  }

  .contact-button {
    padding: 0.6rem 1.2rem;
    font-size: 2rem;
  }

  .topbar-buttons {
    display: flex;
    gap: 3rem;
  }

  .logo{
    height: 150px;
    width: auto;
  }
  .about p {
    font-size: 1.5rem;
  }
  .about summary {
    font-size: 2rem; /* Match your paragraph size */
  }

  .slideshow-container {
    position: relative;
    width: 60vw; /* 80% of the viewport width */
    height:auto ;
    margin: 0 auto; /* Center horizontally */
    max-width: 1200px; /* Optional: limit max size on ultra-wide screens */
  }
   
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .about-video {
    width: 40vw;
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  

  
  
  

  


.services li summary {
  font-size: 2.5rem;
}


/* detials dropdown text size */
.services li details {
  
  font-size: 1.5rem; /* Base text size */
}

/* Style the paragraph inside the dropdown (treatment description) */
.services li details p {
 
  font-size: 2rem; /* Text size */
  
}

.service-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.details-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.details-container p {
  width: 60%;
  margin: 0;
}

.details-container .service-image {
  width: 40%;
  margin-top: 0;
}
  


  

  .about h2,
  .location h2,
  .services h2,
  .booking h2,
  .real_booking h2,
  .contact h2 {
    font-size: 3rem;
  }

  .location p {
    color: #f3f3f3;  /* White paragraph text */
    font-size: 1.5rem;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for readability */
    padding-top: 1rem;
    padding-bottom: 0.1rem;
    border-radius: 6px;
    max-width: 800px;
    margin: 0 auto 1rem auto; /* Center the paragraph */
  }
  
  .map-button {
    display: block;
    width: 100%;                      /* 80% of screen width */
    max-width: 800px;                 /* Optional max size */
    margin: 2rem auto;                /* Center horizontally */
    
    aspect-ratio: 4 / 3;             /* Maintain shape (adjust if needed) */
    background-image: url('images/1000045669.jpg');  /* Your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
  }

  /* The text layer */
.map-button-text {
  
  padding: 1rem;                     /* Space around text */
  
  
  font-size: 2.2rem;                 
  
}

.red-underline{
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center; 
}

  

  .booking input,
  .booking textarea {
    width: 100%; /* Ensures full width consistency */
    padding: 0.75rem;
    margin-bottom: 1rem;
    
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
  }

  
  .booking button {
   
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 2rem;
    cursor: pointer;
  }

    section.contact p {
    font-size: 3rem;
    color: #fff; /* Add color to verify */
    text-align: center;
  }
  
  footer {
    text-align: center;
    font-size: 2rem ;
    
    margin-top: 2rem;
  }
  .slideshow2 {
    
    width: 30rem;                  /* adjust as you like */
    height: 30rem;
  }
  .Morereviews{
    font-size: 4rem;
  }
}


  
  