@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Reset */
body,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Top Strip */
.nav-strip {
    width: 100vw;
    height: 3rem;
    /* Increased height for social media icons */
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    height: 2rem;
    /* Icons size */
    margin: 0 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2vw;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    font-family: 'Pacifico', cursive;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    /* More curved hover effect */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    background-color: #E5E9D9;
    transform: scale(1.1);
}

.book-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border: 0.125rem solid black;
    border-radius: 0.9375rem;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.book-btn:hover {
    background-color: #FFB6C1;
    /* Light pink hover color */
    color: black;
    transform: scale(1.1) rotate(-2deg);
    /* Subtle tilt effect */
}

.book-btn:active {
    background-color: red;
    color: white;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* Section1 */
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2vw;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: 3.5vw;
      margin-bottom: 1vw;
      animation: fadeIn 1.5s ease-in-out;
    }

    .hero p {
      color: #495460;
      font-size: 1.2vw;
      margin-bottom: 3vw;
      max-width: 50vw;
      animation: fadeIn 1.5s ease-in-out;
      animation-delay: 0.5s;
      animation-fill-mode: backwards;
    }

    .nav {
      display: flex;
      justify-content: center;
      gap: 2vw;
      margin-bottom: 3vw;
    }

    .nav a {
      text-decoration: none;
      color: #AD343E;
      font-size: 1.2vw;
      padding: 0.6vw 1.5vw;
      border-radius: 2vw;
      transition: all 0.3s ease;
      animation: slideIn 1s ease-in-out;
    }

    .nav a:hover {
      background-color: #AD343E;
      color: #fff;
      transform: scale(1.1);
    }

    .nav a:first-child {
      background-color: #AD343E;
      color: #fff;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2vw;
      padding: 0 5vw;
    }

    .product {
      box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
      padding: 1.5vw;
      text-align: center;
      transition: transform 0.3s ease;
      height: 25vw;
      animation: popIn 1.2s ease-in-out;
    }

    .product:hover {
      transform: scale(1.1);
    }

    .product img {
      width: 100%;
      height: auto;
      margin-bottom: 1vw;
   
    }

    .product .price {
      color: #AD343E;
      font-size: 1.3vw;
      margin-bottom: 0.5vw;
    }

    .product .name {
      font-weight: bold;
      font-size: 1.2vw;
      margin-bottom: 0.5vw;
    }

    .product .description {
      font-size: 1vw;
      color: #495460;
    }

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

    @keyframes slideIn {
      from {
        transform: translateY(-20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes popIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }
    /* Section 2 */
/* Import Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

.section-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f4f1; /* Skin off white background */
  padding: 3vw;
  border-radius: 2vw;
  transition: all 0.5s ease;
  width: 100vw;
  height: 40vw; /* Decreased height */
  transform: translateY(10vw);
  animation: slideUp 1s ease-out forwards; /* Slide up animation for section */
}

@keyframes slideUp {
  0% {
    transform: translateY(12vw);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-container {
  flex: 1;
  padding: 5vw;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4vw; /* Smaller text size */
  color: #333;
  margin-bottom: 2vw;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards 0.5s; /* Text fade-in animation */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(2vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.description {
  font-family: 'Playfair Display', serif;
  font-size: 2.5vw; /* Slightly smaller font size */
  color: #555;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards 1s; /* Delay fade-in */
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeInRight 1s ease-in-out forwards 1.5s; /* Image fade-in */
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(5vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-container img {
  width: 75vw; /* Large image size */
  max-width: 40vw; /* Image will not exceed this size */
  border-radius: 2vw;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.section-2:hover .image-container img {
  transform: scale(1.05); /* Image zoom effect on hover */
  box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.section-2:hover {
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.1); /* Section shadow effect */
  transform: translateY(0); /* Ensure the section stays in place */
}
/* Footer */
footer {
    background-color: #303030; /* Dark grey background */
    color: white; /* White text */
    padding: 20px;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.footer-column a:hover {
    text-decoration: underline;
    transform: scale(1.05); /* Scale up on hover */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    margin-right: 10px;
    margin-top: -4vw;
}

.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.footer-social img {
    width: 8vw;
    height: 8vw;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.2); /* Scale up on hover */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid white;
    padding-top: 10px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.social-icons img:hover {
    transform: scale(1.2); /* Scale up on hover */
}









/* Navbar */
/* .navbar */

/* Hamburger Icon Styles */
.hamburger-icon {
  display: none;
  /* Hidden by default */
  font-size: 2rem;
  cursor: pointer;
  color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger-icon {
      display: block;
      /* Show hamburger icon on small screens */
  }

  .nav-links {
      display: none;
      /* Hide nav links by default */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 10;
      padding: 1rem 0;
  }

  .nav-links.active {
      display: flex;
      /* Show nav links when active class is added */
  }

  .book-btn {
      margin-left: auto;
      /* Push button to the right */
      margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
      font-size: 1.5rem;
      /* Reduce logo size for very small screens */
  }

  .book-btn {
      font-size: 0.875rem;
      /* Reduce button font size */
      padding: 0.5rem 1rem;
      /* Adjust button padding */
  }

}

@media (max-width: 826px) {
  .logo {
      font-size: 1.25rem;
      font-weight: bold;
      color: black;
      font-family: 'Pacifico', cursive;
  }

}




@media (max-width: 826px) {
  .logo {
      font-size: 1.75rem;
      font-weight: bold;
      color: black;
      font-family: 'Pacifico', cursive;
      margin-left: -39vw;
  }
}

@media (max-width: 826px) {
  .logo {
      margin-left: -28vw;
  }
}

@media (max-width: 826px) {
  .logo {
      margin-left: 0vw;
  }
}

@media (max-width: 706px) {
  .logo {
      margin-left: -41vw;
  }
}

@media (max-width: 792px) {
  .logo {
      font-size: 1.25rem;
  }
}

@media (max-width: 792px) {
  .book-btn {
      font-size: 0.75rem;
      padding: 0.6rem 1.5rem;
      border: 0.125rem solid black;
      border-radius: 0.9375rem;
      background-color: transparent;
      color: black;
      cursor: pointer;
      margin-left: 0vw;
      transition: background-color 0.3s ease, transform 0.3s ease;
  }
}

@media (max-width: 792px) {
  .logo {
      margin-left: 1vw;
      font-size: 1.75rem;

  }
}

@media (max-width: 720px) {
  .logo {
      margin-left: -43vw;
  }
}


@media (max-width: 686px) {
  .logo {
      margin-left: -39vw;
  }
}

@media (max-width: 582px) {
  .logo {
      margin-left: -31vw;
  }
}


@media (max-width: 800px) {
  .logo {
      font-size: 1.25rem;
  }
}

@media (max-width: 608px) {
  .logo {
      font-size: 1.75rem;
  }
}

@media (max-width: 608px) {
  .logo {
      font-size: 1.75rem;
  }
}

@media (max-width: 766px) {
  .logo {
      font-size: 3.5vw;
      margin-left: -48vw;
  }
}




@media (max-width: 404px) {
.logo{
  font-size: 6vw;
  margin-left: -14vw;
}
}

@media (max-width: 606px){
  .logo{
      font-size: 4vw;
      margin-left: -36vw;
  }
}

@media (max-width: 626px){
  .logo{
      font-size: 4.5vw;
      margin-right: -15vw;
  }
}

@media (max-width: 464px){     
.logo{
  font-size: 5.5vw;
}
}

@media (max-width: 400px){ 
.logo{
  margin-right: -21vw;
}
}

@media (max-width: 340px){ 
.logo{
  font-size: 6.25vw;
  margin-left: -24vw;
}
}

/* Navbar */




















































/* hero 1 */
/* Mobile Responsive Styles */
@media screen and (max-width: 985px) {
  .hero {
    padding: 5vw;
  }

  .hero h1 {
    font-size: 8vw;
    margin-bottom: 3vw;
  }

  .hero p {
    font-size: 4vw;
    max-width: 90vw;
    margin-bottom: 6vw;
  }

  .nav {
    flex-wrap: wrap;
    gap: 3vw;
    margin-bottom: 6vw;
  }

  .nav a {
    font-size: 3.5vw;
    padding: 1.5vw 4vw;
    border-radius: 4vw;
  }

  .products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6vw;
    padding: 0;
    width: 90vw;
    margin: 0 auto;
  }

  .product {
    width: 80vw;
    height: auto;
    padding: 5vw;
    margin: 0 auto;
    box-shadow: 0 2vw 3vw rgba(0, 0, 0, 0.1);
  }

  .product img {
    width: 70vw;
    height: 70vw;
    object-fit: cover;
    margin: 0 auto 3vw;
    border-radius: 2vw;
  }

  .product .price {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .product .name {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }

  .product .description {
    font-size: 3.8vw;
    line-height: 1.4;
  }

  /* Section 2 adjustments for mobile */
  .section-2 {
    flex-direction: column;
    height: auto;
    padding: 8vw;
    width: 100%;
  }

  .text-container {
    padding: 5vw;
    text-align: center;
  }

  h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }

  .description {
    font-size: 4vw;
  }

  .image-container {
    justify-content: center;
    margin-top: 5vw;
  }

  .image-container img {
    width: 90vw;
    max-width: 90vw;
  }
}

/* Tablet/Medium Device Adjustments */
@media screen and (min-width: 600px) and (max-width: 985px) {
  .hero h1 {
    font-size: 6vw;
  }

  .hero p {
    font-size: 3vw;
  }

  .nav a {
    font-size: 2.5vw;
    padding: 1vw 3vw;
  }

  .product {
    width: 60vw;
  }

  .product img {
    width: 50vw;
    height: 50vw;
  }

  .product .price {
    font-size: 4vw;
  }

  .product .name {
    font-size: 3.5vw;
  }

  .product .description {
    font-size: 3vw;
  }
}

/* Very Small Mobile Devices */
@media screen and (max-width: 400px) {
  .hero h1 {
    font-size: 9vw;
  }

  .hero p {
    font-size: 4.5vw;
  }

  .nav {
    gap: 2vw;
  }

  .nav a {
    font-size: 4vw;
    padding: 2vw 5vw;
  }

  .product {
    width: 90vw;
  }

  .product img {
    width: 80vw;
    height: 80vw;
  }
}



















/* Footers */
@media (max-width: 1024px) {
  .section-three-stats-grid {
      justify-content: center;
  }

  .section-three-grid-box div {
      font-size: 4vw; /* Bigger numbers */
  }

  .section-three-grid-box p {
      font-size: 2.5vw; /* Bigger labels */
  }
}

@media (max-width: 600px) {
  .section-three-stats-grid {
      justify-content: center;
  }

  .section-three-grid-box div {
      font-size: 5vw;
  }

  .section-three-grid-box p {
      font-size: 3.2vw;
  }
}
@media (max-width: 630px){
  .footer-social img {
      width: 20vw;
      height: 15vw;
      transition: transform 0.3s ease;
  }
}

@media (max-width: 1091px){
.footer-social img {
  width: 12vw;
  height: 11vw;
  transition: transform 0.3s ease;
}
}
@media (max-width: 715px){
.footer-social img {
  width: 19vw;
  height: 16vw;
  transition: transform 0.3s ease;
}
}
@media (max-width: 467px){
.footer-social img {
  width: 30vw;
  height: 27vw;
  transition: transform 0.3s ease;
}
}










































/* humburger */
/* humburger */

/* humburger bar */
/* Base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Hide everything by default on desktop */
#hm-container {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  #hm-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: block;
  }

  #hm-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
  }

  .hm-bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #888; /* Gray bars */
    left: 0;
    transition: all 0.3s ease;
  }

  #hm-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    transition: left 0.4s ease;
    z-index: 9999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  }

  .hm-links {
    padding-top: 80px;
  }

  .hm-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .hm-link:hover {
    background: #444;
  }
}

@media (max-width: 674px){
.logo{
  margin-left: 10vw;
  margin-top: -1vw;
  font-size: 4vw;
}
}

@media (max-width: 767px){
.logo{
  
  margin-left: 11vw;
  font-size: 4vw;
  margin-top: -1vw;
}
}

@media (max-width: 767px){
.logo{
  margin-left: 15vw;
  font-size: 5vw;
}
}

@media (max-width: 767px){
.logo{
  font-size: 4vw;
  margin-left: 12vw;
}
}

@media (max-width: 519px){
.logo{
  font-size: 5vw;
}
}

@media (max-width: 395px){
.logo{
  margin-left: 18vw;
  font-size: 6vw;
}
}



/* Humburger bar   */























/* footer */


@media (max-width: 1024px) {
  .section-three-stats-grid {
      justify-content: center;
  }

  .section-three-grid-box div {
      font-size: 4vw; /* Bigger numbers */
  }

  .section-three-grid-box p {
      font-size: 2.5vw; /* Bigger labels */
  }
}

@media (max-width: 600px) {
  .section-three-stats-grid {
      justify-content: center;
  }

  .section-three-grid-box div {
      font-size: 5vw;
  }

  .section-three-grid-box p {
      font-size: 3.2vw;
  }
}
@media (max-width: 630px){
  .footer-social img {
      width: 20vw;
      height: 15vw;
      transition: transform 0.3s ease;
  }
}

@media (max-width: 1091px){
.footer-social img {
  width: 12vw;
  height: 11vw;
  transition: transform 0.3s ease;
}
}
@media (max-width: 715px){
.footer-social img {
  width: 19vw;
  height: 16vw;
  transition: transform 0.3s ease;
}
}
@media (max-width: 467px){
.footer-social img {
  width: 30vw;
  height: 27vw;
  transition: transform 0.3s ease;
}
}
/* footer */