@font-face {
  font-family: "Satoshi-Light";
  src: url("../assets/fonts/Satoshi-Light.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Light.woff") format("woff"),
    url("../assets/fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("../assets/fonts/Satoshi-LightItalic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-LightItalic.woff") format("woff"),
    url("../assets/fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../assets/fonts/Satoshi-Regular.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Regular.woff") format("woff"),
    url("../assets/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("../assets/fonts/Satoshi-Italic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Italic.woff") format("woff"),
    url("../assets/fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../assets/fonts/Satoshi-Medium.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Medium.woff") format("woff"),
    url("../assets/fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("../assets/fonts/Satoshi-MediumItalic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-MediumItalic.woff") format("woff"),
    url("../assets/fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("../assets/fonts/Satoshi-Bold.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Bold.woff") format("woff"),
    url("../assets/fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("../assets/fonts/Satoshi-BoldItalic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-BoldItalic.woff") format("woff"),
    url("../assets/fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("../assets/fonts/Satoshi-Black.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Black.woff") format("woff"),
    url("../assets/fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("../assets/fonts/Satoshi-BlackItalic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-BlackItalic.woff") format("woff"),
    url("../assets/fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 300.0 to 900.0
*/
@font-face {
  font-family: "Satoshi-Variable";
  src: url("../assets/fonts/Satoshi-Variable.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-Variable.woff") format("woff"),
    url("../assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 300.0 to 900.0
*/
@font-face {
  font-family: "Satoshi-VariableItalic";
  src: url("../assets/fonts/Satoshi-VariableItalic.woff2") format("woff2"),
    url("../assets/fonts/Satoshi-VariableItalic.woff") format("woff"),
    url("../assets/fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  --primary: #be3136;
  --secondary: #233e73;
  --dark: #17171a;
  --light: #ffffff;
  --light-warm: #f8f8f8;

  font-family: "Satoshi", sans-serif;
  --transition: 0.3s;

  scroll-margin-top: 4rem;
}

body {
  font-family: "Satoshi", sans-serif;
  line-height: 1.6;
  color: #17171a;
  container: body-wrapper / inline-size;

  animation: fadeIn 1.5s ease-in;
}

/* Header & Navigation */
header {
  background: var(--light);
  color: var(--primary);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 5rem;

  & nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      align-items: center;
    }

    & .btn {
      position: absolute;
      right: 5vw;
      @container body-wrapper (width < 48.75em) {
        display: none;
      }
    }

    & .logo {
      font-size: 1.8rem;
      font-weight: bold;
      text-decoration: none;
      height: 100%;
      position: absolute;
      left: 5rem;

      @container body-wrapper (width < 48.75em) {
        position: relative;
        display: flex;
        width: 100%;
        justify-content: center;
        left: 0;
        height: auto;
      }

      & img {
        width: 5rem;

        @container body-wrapper (width < 48.75em) {
          width: 5rem;
          padding: 0;
          margin: 0;
        }
      }
    }

    & .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;

      @container body-wrapper (width < 48.75em) {
        &.nav-links {
          position: fixed;
          left: -100%;
          top: 5rem;
          flex-direction: column;
          background: var(--light);
          width: 100%;
          text-align: center;
          transition: var(--transition);
          padding: 2rem 0;
          gap: 1rem;
        }

        &.nav-links.active {
          left: 0;
        }
      }

      &:hover {
        color: #be3136;
      }

      & a {
        color: var(--dark);
        text-decoration: none;
        font-size: 1.2rem;
        font-family: Satoshi-Medium;
        transition: var(--transition);
        border-bottom: 2px solid var(--light);

        @container body-wrapper (width < 48.75em) {
          color: var(--dark);
        }

        &:hover {
          color: var(--secondary);
          transition: var(--transition);
          border-bottom: 2px solid var(--secondary);
        }
      }
    }

    & .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;

      @container body-wrapper (width < 48.75em) {
        display: flex;
        position: absolute;
        right: 10vw;
      }

      & span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        transition: var(--transition);
      }
    }
  }
}

h2 {
  color: var(--dark);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* Section Styles */
section {
  padding: 4rem 2rem;
  margin: 0 auto;

  &#massage-packages {
    background: var(--dark);
    background-image: url("../assets/img/thai-massage-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }
  }

  &#couples-packages {
    background: var(--dark);
    background-image: url("../assets/img/couples-massage-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }
  }

  &#beauty-packages {
    background: var(--dark);
    background: url("../assets/img/beauty-treatments.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.2rem 0 0.2rem 0;
    height: 95vh;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }
  }

  &#nails-packages {
    background: var(--dark);
    background: url("../assets/img/nails-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.2rem 0 0.2rem 0;
    height: 95vh;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }
  }

  &#services {
    background-color: var(--light-warm);
    background: url("../assets/img/26.png");
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    &.home {
      background: #ffffff;
      background-image: url("../assets/img/massage-banner.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      & h2 {
        color: var(--light);
      }
    }
  }

  &#reviews {
    background: var(--dark);
    background: url("../assets/img/group-spa.jpg");
    background-repeat: no-repeat;
    background-size: cover;

    & h2 {
      color: var(--light);
    }
  }

  &#specials {
    background: var(--light-warm);
    background: url("../assets/img/26.png");
  }

  &#about {
    background: #ffffff;
    background-image: url("../assets/img/flower-pattern-corners.png");
    background-blend-mode: difference;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;

    @container body-wrapper (width < 48.75em) {
      padding: 0;
    }

    & h2 {
      margin-top: 3rem;
      padding: 0 1rem 0 1rem;
      background-color: var(--light);
      border-radius: 20px;
    }

    & .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 1rem;
      background-color: var(--light);
      border-radius: 20px;

      & p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #17171a;
        margin-bottom: 1.5rem;
      }
    }
  }

  &#services-massage {
    background: var(--dark);
    background-image: url("../assets/img/massage-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#services-waxing {
    background: var(--dark);
    background-image: url("../assets/img/waxing-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#services-beauty {
    background: var(--dark);
    background-image: url("../assets/img/beauty-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#services-nails {
    background: var(--dark);
    background-image: url("../assets/img/nails-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#services-lashes {
    background: var(--dark);
    background-image: url("../assets/img/lashes-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#services-kids {
    background: var(--dark);
    background-image: url("../assets/img/kids-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    margin: 0.2rem 0 0.2rem 0;

    @container body-wrapper (width < 48.75em) {
      justify-content: center;
      height: 100%;
    }

    & h2 {
      color: var(--light);
    }

    & .package-grid {
      justify-content: center;
    }
  }

  &#our-story {
    background: var(--dark);
    background-image: url("../assets/img/flower-pattern-corners.png");
    background-blend-mode: color-dodge;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & .frame-container {
      width: 100%;
      display: flex;
      justify-content: center;

      img {
        border: solid 2px;
        border-bottom-color: #ffe;
        border-left-color: #eed;
        border-right-color: #eed;
        border-top-color: #ccb;
        max-height: 100%;
        max-width: 100%;
        height: auto;
      }

      .frame {
        background-color: #ddc;
        border: solid 5vmin #eee;
        border-bottom-color: #fff;
        border-left-color: #eee;
        border-radius: 2px;
        border-right-color: #eee;
        border-top-color: #ddd;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset,
          0 5px 10px 5px rgba(0, 0, 0, 0.25);
        box-sizing: border-box;
        display: inline-block;
        /* margin: 10vh 10vw; */
        height: auto;
        padding: 5vmin;
        position: relative;
        text-align: center;
        max-width: 35%;
      }

      .frame::before {
        border-radius: 2px;
        bottom: -2vmin;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) inset;
        content: "";
        left: -2vmin;
        position: absolute;
        right: -2vmin;
        top: -2vmin;
      }

      .frame::after {
        border-radius: 2px;
        bottom: -2.5vmin;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
        content: "";
        left: -2.5vmin;
        position: absolute;
        right: -2.5vmin;
        top: -2.5vmin;
      }

      @media (max-width: 48.75em) {
        .frame {
          margin: 2vh 3vw;
          padding: 2vmin;
          border-width: 3vmin;
          max-width: 80%;
        }
      }
    }

    & .undertext {
      margin: 1rem 0 0 0;
      color: var(--light);
      text-align: center;
      max-width: 35%;
      display: flex;
      flex-direction: column;
      gap: 2rem;

      @container body-wrapper (width < 48.75em) {
        max-width: 75%;
      }
    }

    & h2 {
      color: var(--dark);
    }
  }
}

/* Hero Section */
.hero {
  margin-top: 5rem;
  background: linear-gradient(rgba(23, 23, 26, 0.5), rgba(23, 23, 26, 0.5)),
    url("../assets/img/hero-background.jpg");
  background-size: cover;
  background-position: center;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 100% !important;
  max-width: none;

  &.sub {
    height: 50vh;
  }

  &.about {
    height: 50vh;
    background: linear-gradient(rgba(23, 23, 26, 0.5), rgba(23, 23, 26, 0.5)),
      url("../assets/img/hero-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  & .hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & h1 {
      font-size: 3rem;
      margin-bottom: 1rem;

      @container body-wrapper (width < 48.75em) {
        font-size: 2.9rem;
        max-width: 90%;
        line-height: 3rem;
        margin-bottom: 2rem;
      }
    }

    & .location {
      margin-top: -2rem;
      font-size: 2rem;
      color: var(--primary);
    }

    & p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 40%;
      text-align: center;

      @container body-wrapper (width < 48.75em) {
        font-size: 1.2rem;
        max-width: 70%;
      }
    }
  }
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #be3136;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #9a282c;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;

  @container body-wrapper (width < 48.75em) {
    display: flex;
    flex-direction: column;
  }

  & .service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;

    &:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 6px 20px rgba(190, 49, 54, 0.2);
      cursor: pointer;
    }

    & h3 {
      color: var(--secondary);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    & p {
      margin-bottom: 1rem;
      color: var(--dark);
    }

    & img {
      width: 100%;
      border-radius: 4px;
    }
  }
}

.price {
  font-size: 1.3rem;
  color: #be3136;
  font-weight: bold;
  margin-bottom: 1rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;

  @container body-wrapper (width < 48.75em) {
    display: flex;
    flex-direction: column;
  }
}

.package-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  border-color: #be3136;
}

.package-card h3 {
  color: #233e73;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.package-card ul {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.package-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: #17171a;
}

.package-card li:before {
  content: "✓ ";
  color: #be3136;
  font-weight: bold;
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item h4 {
  color: #233e73;
  margin-bottom: 0.5rem;
}

.menu-item p {
  color: #17171a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.menu-price {
  color: #be3136;
  font-weight: bold;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card p {
  color: #17171a;
  font-style: italic;
  margin-bottom: 1rem;
}

.reviewer {
  color: #233e73;
  font-weight: bold;
}

.specials-container {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;

  & p {
    font-weight: bold;
  }

  & img {
    width: 100%;
  }
}

.gift-vouchers-container {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  & h4 {
    color: var(--primary);
    font-size: 1.4rem;
  }
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 2px solid #233e73;
  border-radius: 5px;
  font-family: inherit;
  color: #17171a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #be3136;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  color: #233e73;
  margin-bottom: 1rem;

  @container body-wrapper (width < 48.75em) {
    text-align: center;
  }
}

.contact-info p {
  margin-bottom: 1rem;
  color: #17171a;
}

/* Founder Section */
.founder-section {
  max-width: 800px;
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #8b6f47;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 2px;
}

.founder-image-container {
  width: 250px;
  height: 250px;
  margin: 0 auto 40px;
  position: relative;
}

.founder-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.05);
}

.founder-name {
  font-size: 2rem;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-weight: 400;
}

.founder-position {
  font-size: 1.1rem;
  color: #8b6f47;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}

.founder-quote {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  position: relative;
}

.founder-quote::before {
  content: '"';
  font-size: 4rem;
  color: #d4af37;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.3;
}

.founder-quote::after {
  content: '"';
  font-size: 4rem;
  color: #d4af37;
  position: absolute;
  bottom: -40px;
  right: 10px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .founder-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .founder-image-container {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .founder-position {
    font-size: 0.9rem;
  }

  .founder-quote {
    font-size: 1rem;
    padding: 20px;
  }
}

footer {
  & .footer-top {
    background-color: var(--dark);
    background-image: url(../assets/img/flower-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 2rem 0;
    gap: 2rem;

    & img {
      width: 5rem;
    }

    & .socials {
      & a {
        text-decoration: none;
        & i {
          margin: 0 0.2rem 0 0.2rem;
          font-size: 42px;
          color: var(--light);
          transition: var(--transition);
        }

        & i:hover {
          cursor: pointer;
          color: var(--primary);
          transition: var(--transition);
        }
      }
    }

    & ul {
      list-style: none;
      display: flex;
      flex-direction: row;
      gap: 1rem;

      & li a {
        transition: 0.2s;
        text-decoration: none;
        color: var(--light);
      }

      & li a:hover {
        color: var(--primary);
        font-weight: bold;
        transition: var(--transition);
        cursor: pointer;
      }
    }
  }

  & .footer-bot {
    background-color: var(--primary);
    height: 4rem;
    color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.7rem;
  }
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1rem;
  }
}

/* .fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* .slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease-out forwards;
} */

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

/* === CONTACT SECTION (namespaced) === */
.contact-wrapper {
  padding: 3rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-box {
  flex: 1 1 320px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;

  & li {
    margin-bottom: 1rem;
    font-size: 1rem;

    & .contact-icon {
      color: #c0392b;
      margin-right: 8px;
    }

    & a {
      text-decoration: none;
      color: var(--primary) !important;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.contact-link {
  color: #c0392b;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Social icons */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.contact-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(40%);
  transition: 0.3s ease;
}

.contact-social a img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Map */
.contact-map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  @container body-wrapper (width < 48.75em) {
    margin-top: -8rem;
  }
}

.contact-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Image Slider */
.slider-container {
  max-width: 800px;
  width: 100%;
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 1rem 0 2rem 0;

  @container body-wrapper (width < 48.75em) {
    max-width: none;
    width: 90%;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 40px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .slider {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }
}

/* Effects */
/* When element comes into view */
.animated {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}

/* ===== FADE IN UP ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up.animate-in-view {
  animation: fadeInUp 0.8s ease-out forwards; /* 'forwards' keeps final state */
}

/* ===== FADE IN DOWN ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down.animate-in-view {
  animation: fadeInDown 0.8s ease-out forwards;
}

/* ===== SLIDE IN LEFT ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left.animate-in-view {
  animation: slideInLeft 0.6s ease-out forwards;
}

/* ===== SLIDE IN RIGHT ===== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-right.animate-in-view {
  animation: slideInRight 0.6s ease-out forwards;
}

/* ===== SCALE UP (POP) ===== */
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scale-up.animate-in-view {
  animation: scaleUp 0.5s ease-out forwards;
}

/* ===== BOUNCE IN ===== */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounce-in.animate-in-view {
  animation: bounceIn 0.8s ease-out forwards;
}

/* ===== FLIP IN ===== */
@keyframes flipIn {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}
.flip-in.animate-in-view {
  animation: flipIn 0.7s ease-out forwards;
}

/* ===== ROTATE IN ===== */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
.rotate-in.animate-in-view {
  animation: rotateIn 0.8s ease-out forwards;
}

/* ===== ZOOM IN ===== */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-in.animate-in-view {
  animation: zoomIn 0.5s ease-out forwards;
}

/* ===== SHAKE ===== */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake.animate-in-view {
  animation: shake 0.5s ease-in-out;
}

/* ===== PULSE ===== */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.pulse {
  animation: pulse 1s ease-in-out forwards;
}

/* ===== GLOW ===== */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px #6c63ff;
  }
  50% {
    box-shadow: 0 0 20px #6c63ff, 0 0 30px #6c63ff;
  }
}
.glow {
  animation: glow 2s ease-in-out infinite;
}

/* Trigger animation on click */
.animated {
  animation-fill-mode: both;
}
