* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    color: #666;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh; 
    background-image: url("https://cdn.shopify.com/s/files/1/0895/0952/7853/files/Starry-background.webp?v=1737124314");
    background-size: 600px;
    background-position: center;
    background-attachment: fixed;
    image-rendering: -webkit-optimize-contrast; /* Improves rendering in WebKit browsers */
    image-rendering: crisp-edges;
    background-repeat: repeat;
    overflow-x: hidden;
  }

  #ninetails {
    bottom: 0;
    left: 0;
    width: 100px;
    height: auto;
    position: fixed;
    z-index: 1000;
  }

  #section1 {
    background-color: rgb(203, 223, 255);
    border-radius: 10px;
    border: 2px solid #878686;
    display: flexbox;
  }

  @media (max-width: 768px) {
    #ninetails {
        width: 80px;
    }
  }

  #landinglogo {
    max-width: 40%;
    height: auto;
    z-index: -1;
  }

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 20px;
  flex-direction: column;
  text-align: center;
}
  
.hero-content {
  color: rgb(0, 0, 0);
  margin-bottom: 100px;
  margin-top: 60px;
  max-width: 80%;
}
  
.hero h1 {
  font-size: 3rem; 
  margin-bottom: 20px;
}
  
.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-content {
    margin-bottom: 60px;
  }
}

/* Review-Signup Section */
.reviews-signup-container {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between the two sections */
  padding: 20px;
  margin-top: 20px;
}

/* Ensure each section takes up 50% of the width on larger screens */
.review-section, .signup-box {
  flex: 1;
}

.review-section {
  background-color: #0056b3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #878686;
}

.review-section h2 {
  text-align: left;
}

.review-container {
  position: relative;
  overflow: hidden;
  height: 150px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  opacity: 0;
  border-style: solid;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.37);
  background-color: rgba(0, 255, 255, 0.263);
}

.review-card.active {
  transform: translateX(-100%);  /* Bring into view */
  opacity: 1;
}

.review-rating {
  color: gold;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  color: #000000;
}

.review-author {
  font-weight: bold;
  color: #000000;
}

.star {
  font-size: 24px;
  color: gold;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .reviews-signup-container {
    flex-direction: column;
    align-items: center;
  }

  .review-section, .signup-box {
    max-width: 100%;
  }
}

/* Explore button */
.cta-button {
  position: relative;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}
  
  .cta-button:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-3px);
  }
  
  .cta-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }
  
.cta-button:hover::after {
  transform: scaleX(1);
}

/******** Signup Form ********/
.signup-form {
  background-color: #0056b3;
  border: 2px solid #878686;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.signup-form h2 {
  text-align: center;
}

@media (max-width: 768px) {
  .signup-form {
    max-width: 100%;
    padding: 15px;
  }
}

.signup-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form button {
  width: 100%; 
  padding: 10px;
  margin: 5px 0;
}

.signup-form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.signup-form button:hover {
  background-color: #979899;
}

/* Footer */
footer {
  color: white;
  text-align: center;
  padding: 5px 0;
}

.glow {
  animation: textGlow 1.5s ease-in-out forwards;
}

@keyframes textGlow {
  0% {
      color: rgba(255, 215, 0, 1); /* Bright gold color */
      text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 
                   0 0 10px rgba(255, 255, 0, 0.6); /* Subtle glow */
      transform: scale(1); /* Normal size */
  }
  50% {
      color: rgba(255, 223, 0, 1); /* Slightly brighter yellow */
      text-shadow: 0 0 10px rgba(255, 223, 0, 1), 
                   0 0 20px rgba(255, 255, 0, 0.9); /* Brighter glow */
      transform: scale(1.1); /* Slightly larger */
  }
  100% {
      color: rgba(255, 215, 0, 1); /* Return to original color */
      text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 
                   0 0 10px rgba(255, 255, 0, 0.6); /* Subtle glow again */
      transform: scale(1); /* Back to normal size */
  }
}

/* Style the button to look like a link within the card */
.card button {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0;
}

.card button img {
    width: 100%;
    height: auto;
}

.card button h2, 
.card button p {
    margin: 10px 0;
    color: inherit;
}