body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f4f7fb;
  color: #333;
}

header, footer {
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header Layout */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #840578;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
   flex-direction: column;
    align-items: flex-start;
}

.navbar a.active {
  color: #f2ea03;
  border-bottom: 2px solid #f2ea03;
}

/* Logo + toggle grouped */
.header-left {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Logo */
.logo {
  height: 100px;
  margin-left:70px;
  border-radius: 50px;
}

/* Toggle button */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFF;
  margin-left: auto;
}


/* Navbar */
.navbar {
  display:inline;
  margin-left: 150px;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}


.navbar a {
  text-decoration: none;
  color: #FFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f2ea03;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
    gap: 12px;
  }

.navbar.show {
    display: flex;
  }
}


 h1, h2 {
            color: #d63384;
            font-family: Yeseva One;
        }
        .team {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .member {
            flex: 1 1 45%;
            padding: 15px;
            background: #fcf6fc;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

/* About Section */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  background-color: #fdfaf6;
  flex-wrap: wrap; /* enables responsiveness */
}

/* Columns */
.hero-column {
  flex: 1 1 45%;
}

/* Text Content */
.hero-text h2 {
  font-size: 2rem;
  color: #840578;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.secret-link {
  font-weight: bold;
  color: #d150aa;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.secret-link:hover {
  color: #f2ea03;
}

/* Image */
.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .hero-column {
    flex: 1 1 100%;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  
}

.hero-img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Two-Column Layout */
.hero-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.hero-column {
  flex: 1;
  min-width: 300px;
}

/* Image + Overlay Container */
.image-overlay {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Container with Two Columns */
.hero-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

.hero-column {
  flex: 1;
  /* min-width: 300px; */
}

 .container {
      max-width: 700px;
      margin: 3rem auto;
      padding: 2rem;
      background: #fff8f4;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      font-family: 'Segoe UI', sans-serif;
      color: #333;
    }

    h1 {
      text-align: center;
      font-size: 2.5rem;
      color: #d63384;
      margin-bottom: 0.5rem;
    }

 .hero-columns2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9fc;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 700px;
}

.hero-column.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d63384;
  outline: none;
}

.cta-btn {
  background-color: #d63384;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}

.cta-btn:hover {
  background-color: #d63384;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-columns {
    padding: 20px 10px;
  }

  .hero-column.hero-text {
    max-width: 100%;
  }
}
    p {
      text-align: center;
      /* font-size: 1.2rem; */
      margin-bottom: 2rem;
      /* color: #555; */
    }

    .mood-form label {
      display: block;
      padding: 1rem;
      margin-bottom: 1rem;
      background: #f9f3ff;
      border-radius: 12px;
      border: 1px solid #e0d6f5;
      transition: background 0.3s ease;
      cursor: pointer;
    }

    .mood-form input[type="radio"] {
      margin-right: 0.6rem;
      transform: scale(1.3);
      accent-color: #d63384;
    }

    .mood-form label:hover {
      background: #f3e6ff;
    }

    .result {
      display: none;
      margin-top: 1rem;
      padding: 0.8rem;
      background: #fff;
      border-left: 5px solid #f576b6;
      font-size: 0.95rem;
      color: #444;
      border-radius: 8px;
      line-height: 1.6;
    }

    .mood-form input:checked + div.result {
      display: block;
    }

    .buttons {
      margin-top: 2rem;
      text-align: center;
    }

    .btn {
      display: inline-block;
      background-color: #d63384;
      color: white;
      padding: 0.75rem 1.5rem;
      margin: 0 1rem;
      border-radius: 10px;
      font-size: 1rem;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #d63384;
    }

/* Image Container */
.image-overlay {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}



.journal-container {
        max-width: 600px;
        margin: 4rem auto;
        padding: 2rem;
        background: #fff8f6;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .journal-container label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #d63384;
        font-size: 1.1rem;
    }

    .journal-container input[type="date"],
    .journal-container input[type="password"],
    .journal-container textarea {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1.5rem;
        border: 1px solid #ccc;
        border-radius: 10px;
        font-size: 1rem;
        box-sizing: border-box;
        background-color: #fff;
        transition: border-color 0.3s ease;
    }

    .journal-container input:focus,
    .journal-container textarea:focus {
        border-color: #d63384;
        outline: none;
    }

    .journal-container textarea {
        resize: vertical;
    }

    .buttons {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .buttons button {
        flex: 1;
        padding: 0.75rem;
        font-size: 1rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        background-color: #d63384;
        color: white;
        transition: background 0.3s ease;
    }

    .buttons button:hover {
        background-color: #d63384;
    }

    #message {
        margin-top: 1.5rem;
        text-align: center;
        color: #4caf50;
        font-weight: bold;
    }


/* Quiz container */
.quiz-container {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro {
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  text-align: center;
}


        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .hero p {
            font-size: 1rem;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .stories, .testimonials, .call-to-action {
            padding: 4rem 2rem;
            text-align: center;
        }

        .stories h2, .testimonials h2, .call-to-action h2 {
            font-size: 2.5rem;
            color: #d63384;
            margin-bottom: 1rem;
        }

        .stories p, .testimonials p, .call-to-action p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
        }

        .video-container {
            margin: 2rem auto;
            max-width: 700px;
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: left;
        }

        .video-container iframe {
            width: 100%;
            height: 315px;
            border-radius: 8px;
        }

        .video-container p {
            margin-top: 1rem;
            font-size: 1rem;
            color: #444;
        }

        .testimonial blockquote {
            background: #f1f0f8;
            border-left: 5px solid #a30ea5;
            padding: 1rem 2rem;
            margin: 2rem auto;
            max-width: 600px;
            font-style: italic;
            color: #333;
            border-radius: 8px;
        }

        .call-to-action .cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: #840578;
            color: white;
            font-size: 1.1rem;
            text-decoration: none;
            border-radius: 20px;
            transition: background 0.3s ease;
        }

        .call-to-action .cta-btn:hover {
            background-color: #840578;
        }


/* Questions */
.question {
  display: none;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 4px solid #980eb0;
  background: #f9f7fc;
  border-radius: 8px;
}

.question.active {
  display: block;
}

.question label {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  color: #d63384;
}

input[type="radio"] {
  margin-right: 10px;
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.navigation-buttons button {
  background-color: #d63384;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.navigation-buttons button:hover {
  background-color: #d63384;
}

/* Result Styling */
.quiz-result {
  margin-top: 30px;
  background-color: #e8f5e9;
  border: 1px solid #66bb6a;
  padding: 20px;
  border-radius: 10px;
  color: #2e7d32;
  font-size: 1.1rem;
  display: none;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .navigation-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .navigation-buttons button {
    width: 100%;
  }
}



/* Text Styling */
.overlay-text {
  padding: 50px;
  background-color: #840578;
  color: #d63384;;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Stacking for Smaller Screens */
@media (max-width: 768px) {
  .hero-columns {
    flex-direction: column;
  }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-columns {
    flex-direction: column;
  }


}

/* Overlay Text */
.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive: Stack nicely */
@media (max-width: 768px) {
  .image-text {
    font-size: 1rem;
    padding: 15px;
  }
}


.secret-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  color: #840578;
  cursor: pointer;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #840578;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}

.feature-box {
  text-align: center;
  max-width: 300px;
}

.feature-box img {
  width: 100%;
  border-radius: 1rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #f2ea03;
  padding: 1rem;
  background-color: #01013c;
}
