    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

.spinning-logo {
  /* Spin infinitely */
  animation: spin 22s linear infinite; /* 4s per rotation, adjust as needed */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
    .custom-navbar .nav-link {
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
      color: #333;
      font-weight: 700; /* normal weight initially */
      transition: transform 0.3s, font-weight 0.3s, color 0.3s;
      margin-left: 50px; /* space between items */
      

    }

    .custom-navbar {
  background: linear-gradient(170deg,#f7d6af 22%, #bcf1d0 63%, #bcf1d0 100%);
}

    .custom-navbar .nav-link:hover {
      color: #09ff00;
      color: #51ff00;        /* change color on hover */
      font-weight: 700;       /* bold on hover */
      transform: translateY(-8px); /* jump effect */
      
    }
    /* === HERO SECTION === */
    .container-fluid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      padding: 50px 20px;
      background: linear-gradient(to bottom, #bcf1d0, #f5bdac);
      text-align: center;
    }

    .text-column {
      flex: 1 1 400px;
      padding: 20px;
    }

    .text-column h1 {
      font-family: 'Chewy', cursive;
      font-size: 48px;
      color: #228b22;
      font-weight: 700;
      animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);     /* normal size */
  }
  50% {
    transform: scale(1.2);   /* grow 20% bigger */
  }
    }

    .text-column p {
      font-size: 18px;
      line-height: 1.6;
      margin-top: 10px;
    }

#play-audio-btn {
  background: linear-gradient(to bottom, #d691eb, #84d4f3);
  color: #333;                     /* text color */
  font-family: 'Chewy', cursive;   /* matches your headings */
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
#play-audio-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #000;
}

/* Active / Click effect */
#play-audio-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .center-container {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .center-container img {
      max-width: 100%;
      height: auto;
      border-radius: 50%;
    }

    .cta-btn {
  background: linear-gradient(to bottom, #afddf7, #adf7c8);
  color: #333;
  font-family: 'Chewy', cursive;
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #000;
}

.cta-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.audio-btn {
  background: linear-gradient(to right, #adf7c8, #f7d6af); /* reversed gradient for contrast */
  color: #333;
  font-family: 'Chewy', cursive;
  font-size: 18px;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.audio-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #000;
}

.audio-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



    /* === GARDEN SECTION === */
    .garden-text {
      background:  #f5bdac;
      text-align: center;
      padding: 30px 15px;
      font-weight: 700;
      animation: pulse 7s ease-in-out infinite;
}

@keyframes pulse {
  0%, 75% {
    transform: scale(1);     /* normal size */
  }
  50% {
    transform: scale(1.1);   /* grow 10% bigger */
  }
}
    

    .garden-text p {
      font-family: 'Chewy', cursive;
      font-size: 32px;
      color: #155724;
      margin: 0;
    }

    .container2 {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      gap: 20px;
      background: linear-gradient(to bottom, #f5bdac, #eec993);
    }

    .text-box, .image-box {
      flex: 1 1 400px;
      text-align: center;
    }

    .text-box p {
      font-family: 'Chewy', cursive;
      font-size: 22px;
      line-height: 1.6;
      color: #333;
    }

    .image-box img {
      max-width: 100%;
      height: auto;
      border-radius: 50%;
    }

    /* === COMING SOON SECTION === */
    .coming-soon {
      background: linear-gradient(to bottom, #eec993, #f5bdac);
      text-align: center;
      padding: 40px 20px;
    }
    
    .coming-soon h2 {
  display: inline-block;       /* required for transform */
  font-weight: 700;
  animation: jump-text 2s ease-in-out infinite;
}

@keyframes jump-text {
  0%, 100% {
    transform: translateY(0);  /* normal position */
  }
  50% {
    transform: translateY(-15px); /* jump up 15px */
  }
}

    .coming-soon h2 {
      font-family: 'Chewy', cursive;
      font-size: 36px;
      color: #d2691e;
      margin-bottom: 10px;
    }

    .coming-soon p {
      font-family: 'Chewy', cursive;
      font-size: 20px;
      color: #444;
    }

    .container3 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
      background: linear-gradient(to bottom, #f5bdac, #eec993);
    }

    .section {
      flex: 1 1 400px;
      text-align: center;
      background: #f3dcab;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .section img {
      width: 100%;
      max-width: 350px;
      height: auto;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    /* === FOOTER === */
    footer {
      background-color: #343a40;
      color: white;
      text-align: center;
      padding: 15px 10px;
      font-size: 16px;
    }

    /* === RESPONSIVE BREAKPOINTS === */
    @media (max-width: 992px) {
      .text-column h1 {
        font-size: 36px;
      }
      .garden-text p {
        font-size: 28px;
      }
    }

    @media (max-width: 768px) {
      .text-column, .text-box, .image-box {
        text-align: center;
      }
      .text-column h1 {
        font-size: 30px;
      }
      .text-box p {
        font-size: 18px;
      }
    }

    @media (max-width: 576px) {
      .container-fluid {
        flex-direction: column;
        padding: 30px 10px;
      }
    }

      .center-container img {
        width: 250px;
      }

      .garden-text p {
        font-size: 24px;
      }

      .coming-soon h2 {
        font-size: 28px;
      }

      .coming-soon p {
        font-size: 18px;
      }
      @media (max-width: 768px) {
  .custom-navbar .nav-item {
    margin-left: 10px; /* less space on mobile */
  }
}

/* === STATIC PAGE STYLES === */
.static-page {
    background: linear-gradient(to right, #f7d6af, #adf7c8);
    text-align: center;
    padding: 60px 20px;
    min-height: 100vh;
}

/* Top central image */
.static-image img {
    max-width: 300px;
    width: 50%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Text styling */
.static-text h1 {
    font-family: 'Chewy', cursive;
    font-size: 42px;
    margin-bottom: 20px;
}

.static-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Call-to-Action Button */
.static-btn {
    display: inline-block;
    background: linear-gradient(to right, #baaff7, #f3a3d2);
    color: #333;
    font-family: 'Chewy', cursive;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.static-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: #000;
}

.static-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .static-image img {
        width: 70%;
    }

    .static-text h1 {
        font-size: 32px;
    }

    .static-text p {
        font-size: 16px;
    }
}
