/* Small normalize / reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  min-width: 320px;
  background-color: #50345A;
  margin: 0;
  padding: 0;
  font-family: "Poppins",system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: white;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom local font */
@font-face {
  font-family: 'Poppins';
  src: url('./assets/Poppins-Regular.ttf') format('opentype');
  font-weight: 100 200 300 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PoppinsL';
  src: url('./assets/Poppins-Light.ttf') format('opentype');
  font-weight: 100 200 300 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Juniper';
  src: url('./assets/JuniperandSage-Regular.ttf') format('opentype');
  font-weight: 100 200 300 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilfiky';
  src: url('./assets/GilfikyRegular-KVwRo.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'PoppinsL', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* Navbar component styles (replaces Tailwind utilities) */
.navbar {
  position: relative;
  background: #B594BF;
  padding: 0.75rem 2rem;
  /* smaller: py ~12px, px ~32px */
}

.navbar__list {
  display: flex;
  gap: 1rem;
  /* smaller gap */
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 2.1rem;
  /* increased ~25%, rounded */
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar__item--left,
.navbar__item--middle,
.navbar__item--right {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.navbar__item--left {
  padding-left: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Move items 50% closer to their adjacent dividers by halving side paddings
  Contact me (li 1) -> reduce right padding
  My Story (li 3) -> reduce left padding
  Our services (li 5) -> reduce right padding
  Booking (li 7) -> reduce left padding */
.navbar__list>li:nth-child(1) {
  padding-right: 0.375rem;
}

.navbar__list>li:nth-child(3) {
  padding-left: 0.375rem;
}

.navbar__list>li:nth-child(5) {
  padding-right: 0.375rem;
}

.navbar__list>li:nth-child(7) {
  padding-left: 0.375rem;
}

.navbar__divider {
  width: 1.5px;
  height: 2rem;
  background: white;
}

.navbar__spacer {
  width: 22%;
  pointer-events: none;
}

.navbar__link {
  color: white;
  text-decoration: none;
}

.navbar__link:hover {
  color: #e5e7eb;
}

.navbar__list li {
  list-style: none;
}

.navbar.is-open .navbar__list li {
  padding: 0.5rem 0;
}

.navbar__logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -72px;
  /* a bit lower */
  height: 140px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 16px;
  background: #B594BF;
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo {
  height: 100%;
  width: auto;
  display: block;
}

  /* Desktop-only shop link under centered logo */
  .navbar__shop-desktop {
    display: none;
    position: absolute;
    font-size: 1.5vw;
    text-transform: uppercase;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25%; /* place just under the logo container */
    background: #50345A;
    padding: 5px 2rem;
    border-radius: 22px;
    text-decoration: none;
    z-index: 0;
  }
/* Mobile-only controls */
.navbar__hamburger {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.navbar__logo-mobile {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 48px;
  width: auto;
}

.main-banner__title{
  font-family: "Gilfiky",sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  text-align: justify;
}

.main-banner__subtitle{
  font-family: "PoppinsL",sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 10px;;
}

.schedule-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  gap: 2rem;
  padding: 2rem 1.5rem 0 1.5rem;
}

.schedule-section img {
  color: wheat;
  width: 100px;
  height: auto;
}

.services-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 4rem 1.5rem 4rem 1.5rem;
  background-color: #50345A;
  text-align: center;
}

.divider {
  width: 85%;
  height: 30px;
  margin: auto;
  border-top: white 4px solid;
  border-bottom: white 4px solid;
}

.services-section h3 {
  font-size: 7.5vw;
  margin: 0;
  text-transform: uppercase;
}

.services-section span {
  font-size: 2vw;
  font-weight: bolder;
  background-color: #B594BF;
  border-radius: 25px;
  padding: 5px 40px;
  text-transform: uppercase;

}

.footer {
  background-color: white;
  border-radius: 300px 300px 0 0;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
}

.footer h4 {
  width: fit-content;
  margin: 30px auto;
  padding: 0.25rem 1rem;
  font-size: 1.7vw;
  font-weight: 600;
  color: #50345A;
  border: #50345A solid 4px;
  border-radius: 30px;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer ul li div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
}

.footer-divider {
  width: 2px;
  height: 12rem;
  background: #50345A;
  align-self: center;
}

.footer h5 {
  margin: 0;
  color: #50345A;
  font-weight: 400;
  font-size: 3vw;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer a {
  color: #50345A;
  text-decoration: none;
  font-weight: 600;
}

.schedule-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-width: 100vw;
  gap: 4rem;
  padding: 3rem 1.5rem 3rem 1.5rem;
}

.schedule-section img {
  color: wheat;
  width: 35%;
  height: auto;
}

.vertical-divider {
  width: 6px;
  height: 16rem;
  background: white;
  align-self: center;
}

.services-welcome {
  display: flex;
  max-height: 75vw;
  overflow: hidden;
  justify-content: start;
  gap: 1rem;
  background-color: white;
  color: #50345A;
}

.services-welcome>img {
  display: none;
  max-width: 50vw;
  height: auto;
  margin: auto;
}

.services-welcome img {
  display: block;
  width: 75%;
  height: auto;
}

.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50vw;
  font-size: 2.5vw;
  padding: 3rem 4rem 3rem 6rem;
}

.services-intro span {
  font-size: 2vw;
  background-color: #50345a;
  color: white;
  border-radius: 25px;
  margin-top: 15px;
  padding: 5px 35px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}



.service-divider {
  display: none;
  
}

.service-list{
  display: grid;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
  margin-bottom: 15%;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  gap: 3rem;
}

.service-list>div{
  border-bottom: 1px white solid;
  padding-bottom: 2.5rem;
}

.service-list span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -7.5%;
  width: 80%;
  height: 15%;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  text-align: center;
  color: white;
  background-color: #b594bf;
  font-family: 'Gilfiky', cursive;
  font-weight: lighter;
}

.service-shorttext{
  font-size: 9vw;
}

.service-longtext{
  font-size: 5vw;
}

.service-list a{
  display: block;
  position: relative;
  top: -2.5%;
  width: 75%;
  border: solid 1px white;
  border-radius: 50px;
  padding: 0.3rem 2rem;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 6vw;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "PoppinsL",system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;

}

/* Mobile: show logo + hamburger, hide full list */
@media (max-width: 767px) {

  .navbar {
    height: 150px;
    padding: 0.75rem 1rem;
    overflow: visible;
  }

  .navbar__list {
    display: none;
  }

  .navbar__hamburger {
    display: block;
  }

  .navbar__logo-mobile {
    display: block;
    height: 130px;
    bottom: -32px;
    background-color: #B594BF;
    padding: 0 56px 24px 56px;
    border-radius: 66px;
    position: relative;
    z-index: 30;
  }

  .navbar__logo-container {
    display: none;
  }

  /* when open, show vertical menu */
  .navbar.is-open .navbar__list {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    gap: 0.5rem;
    background: #B594BF;
    border-top: white solid 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1rem;
    padding-top: 2rem;
    z-index: 20;
  }

  .navbar.is-open .navbar__list .navbar__divider {
    display: none;
  }

  .navbar.is-open .navbar__list .navbar__spacer {
    display: none;
  }

  .navbar.is-open .navbar__list li {
    padding: 0.5rem 0;
  }


  .main-banner {
    width: 100%;
    height: auto;
    padding: 86px 0 0 0;
    /* space for navbar */
    /* Layered background: gradient overlay on top of the photo */
    background: linear-gradient(180deg, rgba(80, 52, 90, 0) 0%, rgba(80, 52, 90, 1) 20%), url('./images/15.jpg');
    background-size: cover, contain;
    background-position: center center, start center;
    background-repeat: no-repeat, no-repeat;

  }

  /* Banner title styling (kept outside nested block for valid CSS) */
  .main-banner__title {
    color: white;
    font-size: 9vw;
    font-weight: 100 !important;
    font-style: normal;
    text-align: center;
    padding-left: 0%;
    margin-top: 50px;
    margin-bottom: 0;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .main-banner__subtitle {
    text-align: center;
    font-size: 5vw;
    margin: 10px 0 0 0;
    padding-bottom: 1px;
  }

  .mystory-section {
    padding: 2rem 1.5rem 0 1.5rem;
    font-size: 4vw;
    line-height: 1.5;
    max-width: 600px;
    position: relative;
    top: -1px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
  }

  .rosi {
    border-radius: 150px 150px 0 0;
    width: 60%;
    margin: auto;
  }

  .services-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 4rem 1.5rem;
    background-color: #50345A;
    text-align: center;
  }

  .divider {
    width: 85%;
    height: 30px;
    margin: auto;
    border-top: white 4px solid;
    border-bottom: white 4px solid;
  }

  .services-section h3 {
    font-size: 10vw;
    margin: 0;
    text-transform: uppercase;
  }

  .services-section span {
    font-size: 5vw;
    font-weight: bolder;
    background-color: #B594BF;
    border-radius: 25px;
    padding: 5px 40px;
    text-transform: uppercase;

  }


  .schedule-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    min-width: 100vw;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .schedule-section img {
    color: wheat;
    width: 80%;
    height: auto;
  }

  .vertical-divider {
    width: 100%;
    height: 2px;
    background: white;
    align-self: center;
  }

  .footer {
    background-color: white;
    border-radius: 300px 300px 0 0;
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
  }

  .footer h4 {
    width: fit-content;
    margin: 30px auto;
    padding: 0.25rem 1rem;
    font-size: 4vw;
    font-weight: 600;
    color: #50345A;
    border: #50345A solid 4px;
    border-radius: 30px;
    text-transform: uppercase;
  }

  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer ul li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem;
  }

  .footer-divider {
    display: none;
  }

  .footer h5 {
    margin: 0;
    color: #50345A;
    font-weight: 400;
    font-size: 5vw;
    text-transform: uppercase;
  }

  .footer a {
    color: #50345A;
    text-decoration: none;
    font-weight: 600;
  }

.services-welcome {
  display: flex;
  overflow: hidden;
  background-color: white;
  color: #50345A;
}

.services-welcome>img {
  display: none;
}

.services-welcome img {
  width: 70%;
  height: auto;
}

.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  width: 80%;
  font-size: 3vw;
  padding: 2rem;
}

.services-intro span {
  font-size: 3vw;
  background-color: #50345a;
  color: white;
  border-radius: 25px;
  margin: auto;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}



}

/* Responsive breakpoints */
@media (min-width: 768px) {
  .navbar {
    padding: 0.75rem 2.5rem;
  }

  .navbar__list {
    display: flex;
    gap: 1.25rem;
    font-size: 1rem;
  }

  .navbar__spacer {
    width: 30%;
  }

  .navbar__divider {
    height: 2.25rem;
  }

  .navbar__item--left,
  .navbar__item--middle,
  .navbar__item--right {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar__item--left {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  /* Tablet: halve the side paddings near dividers (1rem -> 0.5rem) */
  .navbar__list>li:nth-child(1) {
    padding-right: 0.5rem;
  }

  .navbar__list>li:nth-child(3) {
    padding-left: 0.5rem;
  }

  .navbar__list>li:nth-child(5) {
    padding-right: 0.5rem;
  }

  .navbar__list>li:nth-child(7) {
    padding-left: 0.5rem;
  }

  .navbar__logo-container {
    height: 125px;
    bottom: -48px;
    padding-left: 56px;
    padding-right: 56px;
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
  }

  .hide-shop{
    display: none;
  }

  .navbar__shop-desktop{
    display: inline;
  }

  .main-banner {
    width: 100%;
    height: auto;
    padding: 86px 0 0 0;
    /* space for navbar */
    /* Layered background: gradient overlay on top of the photo */
    background: linear-gradient(180deg, rgba(80, 52, 90, 0) 0%, rgba(80, 52, 90, 1) 90%), url('./images/15.jpg');
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;

  }

  /* Banner title styling (kept outside nested block for valid CSS) */
  .main-banner__title {
    color: white;
    font-size: 4vw;
    font-weight: 100 !important;
    font-style: normal;
    text-align: left;
    padding-left: 7.5%;
    margin-top: 50px;
    margin-bottom: 0;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .main-banner__subtitle {
    text-align: left;
    font-size: 2vw;
    font-weight: 300;
    margin: 0 0 2% 0;
    padding-bottom: 1px;
    padding-left: 7.5%;
  }

  .mystory-section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 85%;
    font-size: 1.7vw;
    line-height: 1.5;
    position: relative;
    top: -1px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
  }

  .mystory-section p {
    width: 65%;
    margin: 0;
  }

  .rosi {
    width: 35%;
    border-radius: 200px 200px 0 0;
  }
  
.services-welcome {
  display: flex;
  max-height: 55vw;
  overflow: hidden;
  justify-content: start;
  gap: 1rem;
  background-color: white;
  color: #50345A;
}

.services-intro {
  font-size: 2vw;
}

.services-intro span{
  align-self: flex-start;
}

.services-welcome img {
  align-self: flex-start;
  width: 80%;
  height: auto;
}

.service-list>div{
  padding-bottom: 0;
  border: none;
}

.service-divider {
  display: block;
  width: 100%;
  height: 1.5px;
  background: white;
  grid-column-start: 1;
  grid-column-end: 4;
  margin-bottom: 0.2rem;
  margin-top: 0.2rem;
  margin-left: auto;
  margin-right: auto;
  
}

.service-list{
  display: grid;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 4rem;
}

.service-list span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -7.5%;
  width: 80%;
  height: 15%;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  text-align: center;
  color: white;
  background-color: #b594bf;
  font-family: 'Gilfiky', cursive;
  font-weight: lighter;
}

.service-shorttext{
  font-size: 2vw;
}

.service-longtext{
  font-size: 1.5vw;
}

.service-list a{
  display: block;
  position: relative;
  top: -2.5%;
  width: 60%;
  border: solid 1px white;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.1vw;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "PoppinsL",system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;

}

.footer-divider {
  display: none;
}

.footer h4 {
  font-size: 4vw;
}

.footer h5{
  font-size: 4vw;
}

.footer a{
  font-size: 3vw;
}

}


@media (min-width: 1024px) {

  /* Intermediate breakpoint between tablet and large */
  .navbar {
    padding: 1.75rem 2.75rem;
  }

  .navbar__list {
    gap: 1.4rem;
    font-size: 1.5rem;
  }

  .navbar__spacer {
    width: 25%;
  }

  .navbar__divider {
    height: 2.35rem;
  }

  .navbar__item--left,
  .navbar__item--middle,
  .navbar__item--right {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }

  .navbar__item--left {
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }

  .navbar__list>li:nth-child(1) {
    padding-right: 0.525rem;
  }

  .navbar__list>li:nth-child(3) {
    padding-left: 0.525rem;
  }

  .navbar__list>li:nth-child(5) {
    padding-right: 0.525rem;
  }

  .navbar__list>li:nth-child(7) {
    padding-left: 0.525rem;
  }

  .navbar__logo-container {
    height: 170px;
    bottom: -72px;
    padding-left: 75px;
    padding-right: 75px;
    border-radius: 88px;
  }

  .navbar__logo-container img {
    position: relative;
    z-index: 30;
  }

  /* Desktop-only shop link under centered logo */
  .navbar__shop-desktop {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30%; /* place just under the logo container */
    background: #50345A;
    padding: 2px 3rem;
    border-radius: 22px;
    text-decoration: none;
    z-index: 0;
  }

  .main-banner {
    width: 100%;
    height: auto;
    padding: 200px 0 0 0;
    /* space for navbar */
    /* Layered background: gradient overlay on top of the photo */
    background: linear-gradient(180deg, rgba(80, 52, 90, 0) 0%, rgba(80, 52, 90, 1) 60%), url('./images/15.jpg');
    background-size: cover, contain;
    background-position: center center, start start;
    background-repeat: no-repeat, no-repeat;

  }

  /* Banner title styling (kept outside nested block for valid CSS) */
  .main-banner__title {
    color: white;
    font-size: 5vw;
    font-weight: 100 !important;
    font-style: normal;
    text-align: left;
    padding-left: 7.5%;
    margin-top: 10%;
    margin-bottom: 0;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .main-banner__subtitle {
    text-align: left;
    font-size: 3vw;
    font-weight: 300;
    margin: 0 0 2% 0;
    padding-bottom: 1px;
    padding-left: 7.5%;
  }

  .mystory-section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 85%;
    font-size: 1.7vw;
    line-height: 1.5;
    position: relative;
    top: -1px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
  }

  .mystory-section p {
    width: 65%;
    margin: 0;
  }

  .rosi {
    width: 35%;
    border-radius: 200px 200px 0 0;
  }

   
.services-welcome {
  display: flex;
  max-height: 50vw;
  overflow: hidden;
  justify-content: start;
  gap: 1rem;
  background-color: white;
  color: #50345A;
}

.services-intro {
  font-size: 2vw;
}

.services-intro span{
  align-self: flex-start;
}

.services-intro-img {
  max-width: 70%;
}


.footer-divider {
  display: block;
  width: 2px;
  height: 12rem;
  background: #50345A;
  align-self: center;
}

.footer h4 {
  margin-top: 50px;
  font-size: 2.5vw;
}

.footer h5{
  font-size: 1.5vw;
}

.footer a{
  font-size: 1.2vw;
}



}

@media (min-width: 1366px) {
  .navbar {
    padding: 1.75rem 1rem;
  }

  .navbar__list {
    gap: 1.5rem;
    font-size: 2.05rem;
  }

  .navbar__spacer {
    width: 25%;
  }

  .navbar__divider {
    height: 2.5rem;
  }

  .navbar__item--left,
  .navbar__item--middle,
  .navbar__item--right {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar__item--left {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  /* Large: halve the side paddings near dividers (1.25rem -> 0.625rem) */
  .navbar__list>li:nth-child(1) {
    padding-right: 0.625rem;
  }

  .navbar__list>li:nth-child(3) {
    padding-left: 0.625rem;
  }

  .navbar__list>li:nth-child(5) {
    padding-right: 0.625rem;
  }

  .navbar__list>li:nth-child(7) {
    padding-left: 0.625rem;
  }

  .navbar__logo-container {
    height: 180px;
    bottom: -72px;
    padding-left: 85px;
    padding-right: 85px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }

  /* Banner title styling (kept outside nested block for valid CSS) */
  .main-banner__title {
    color: white;
    font-size: 6vw;
    font-weight: 100 !important;
    font-style: normal;
    text-align: left;
    width: 85%;
    padding-left: 8%;
    margin-top: 100px;
    margin-bottom: 0;
    line-height: 1.05;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .main-banner__subtitle {
    text-align: left;
    font-size: 3vw;
    font-weight: 300;
    margin: 0 0 2% 0;
    padding-bottom: 1px;
    padding-left: 8%;
  }

  .mystory-section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 85%;
    font-size: 1.7vw;
    line-height: 1.5;
    position: relative;
    top: -1px;
    padding-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
  }

  .mystory-section p {
    width: 60%;
    padding: 0.5rem;
    margin: 0;
  }

  .rosi {
    width: 40%;
    border-radius: 300px 300px 0 0;
  }

  .services-welcome {
    max-height: 40vw;
  }
}