body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FDF8F1;
    color: #333;
  }

  /* --- Navbar Styles --- */
  .navbar {
    width: 100vw;
    background-color: #10182F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    color: white;
  }
  
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-logo {
    width: 100px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  .nav-toggle {
    background: none;
    background-color: #10182F;
    color: #C7AE6A;
    display: none;
    font-size: 1.0rem;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
  }

  .nav-icon {
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover .nav-icon {
    transform: scale(1.1);
  }

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #10182F;
        padding: 0 1rem;
    }


.nav-links.active {
    max-height: 300px;
    padding: 1rem;
    display: flex;
}

.nav-links li {
    margin: 0.5rem 0;
  }
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding-right: 60px;
  }
  
  .nav-search {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    outline: none;
    width: 200px;
    max-width: 80vw;
  }

  .plan-card {
    flex: 1 1 100%;
    max-width: 500px;
  }
  
  @media (max-width: 768px) {
    .nav-search{
      display: none;
    }
  }
  

  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #D4AF37; /* Gold hover effect */
  }
  
  /* Optional: Make it responsive later */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* You'll add a mobile nav later if needed */
    }
  }
  

  .site-header {
    margin-top: 100px;
    padding: 4rem 2rem 14rem;
    background: linear-gradient(to right, #a8b5a0, #cbe3ca);
    border-bottom: none;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
  }

  .logo {
    width: 120px;
    margin-bottom: 20px;
    height: auto;
    flex-shrink: 0;
  }

  .site-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: #0A2342;
  }

  h1 {
    font-family: Circular, Arial, sans-serif;
    font-size: 2rem;
    margin: 10px 0;
    color: #C7AE6A; 
  }

.slogan {
  font-size: 1.2rem;
  font-weight: 500;
  color: #C7AE6A;
  margin-top: 0.5rem 0 1rem;
  font-style: italic;
  }

.blip-description {
    color: #0A2342;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blip-text {
    flex: 1;
    min-width: 300px;
}

.header-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

.button-container {
        position: absolute;
        bottom: 1rem; /* Adjust to fit nicely above the wave */
        right: 1rem;
        z-index: 1;
}

.header-button {
    display: inline-block;
    background-color: #5a4a3f;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.header-button:hover {
    background-color: #3d322a;
}

.signup {
  background-color: #FDF8F1;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.signup-alt {
  background-color: #FDF8F1;
}

.signup-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.signup-container[data-direction="left"] {
  transform: translateX(-60px);
}
.signup-container[data-direction="right"] {
  transform: translateX(60px);
}


.signup-container.animate {
  transform: translateX(0);
  opacity: 1;
}

.signup-image {
  max-width: 550px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signup-text {
  flex: 1;
  min-width: 280px;
  padding-left: 50px;
}

.signup-text h2 {
  font-size: 1.5rem;
  color: #0A2342;
  margin-bottom: 1rem;
}

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

.footer {
  background-color: #10182F;
  color: #ffffff;
  margin-top: 2rem;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
} 

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  justify-content: center;
  padding-right: 18rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4rem 0 0;
}

.footer-logo {
  width: 170px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex: 2;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #C7AE6A;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
} 

.footer-column ul li a:hover {
  color: #C7AE6A;
}

.footer-column:nth-child(2) {
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-bottom: 1rem;
  margin-top: 2rem;
  color: #aaa;
  font-size: 0.85rem;
}

/* Small screens */
@media (max-width: 768px) {
  .signup-text {
    padding-left: 0;
    text-align: center;
    order: 1;
  }

  .signup-container {
    flex-direction: column;
    text-align: center;
  }

  .signup-image {
    max-width: 90vw;
    margin-bottom: 1rem;
    order: 2;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .header-button {
    margin-top: 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }

  .footer-brand {
    padding: 0;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .impact-left, .impact-right {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .nav-logo {
    width: 80px;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .blip-description {
    font-size: 1rem;
  }

  .nav-search {
    width: 150px;
    font-size: 0.9rem;
  }

  .header-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .signup-text h2 {
    font-size: 1.2rem;
  }
}

.impact {
  background-color: rgba(236, 217, 176, 0.4); /* soft champagne gold with transparency */
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  max-width: 900px;
  margin: 3rem auto;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.impact-container {
  max-width: 900px;
  margin: 0 auto;
}

.impact-title {
  font-size: 2rem;
  color: #0A2342;
  margin-bottom: 1rem;
}

.impact-description {
  font-size: 1.2rem;
  color: #0A2342;
  line-height: 1.6;
}

.impact-left {
  margin-left: auto;
  margin-right: 10%;
}

.impact-right {
  margin-left: 10%;
  margin-right: auto;
}

.impact + .impact {
  margin-top: 4rem;
}

/* Subscription Page */
.plans-section {
  padding: 4rem;
  background-color: #FDF8F1;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  flex: 1 1 45%;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
  border: 2px solid #C7AE6A;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-title {
  font-size: 1.6rem;
  color: #0A2342;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #C7AE6A;
  padding-bottom: 0.5rem;
}

.plan-subtitle {
  font-size: 1.1rem;
  color: #5a4a3f;
  font-weight: 900;
}

.plan-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.plan-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: #333;
  font-size: 1rem;
}

.basic-plan {
  /* order: 1; */
  background: rgba(255, 250, 230, 0.6);
}

@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
}

.join-button {
  margin-top: 1.5rem;
  background-color: #5a4a3f;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 140px;
  align-self: center;
}

.join-button:hover {
  background-color: #3d322a;
  transform: translateY(-2px);
}

.frequency-card {
  max-width: 17rem;
  display: none;
  margin-top: 2rem;
  margin-left: 3rem;
  padding: 2rem;
  background-color: #fffaf0;
  border: 2px solid #C7AE6A;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translate(30px, 30px);
  transition: all 0.5s ease;
}

.frequency-title {
  font-size: 1.4rem;
  color: #0A2342;
  margin-bottom: 1rem;
  border-bottom: 2px solid #C7AE6A;
  padding-bottom: 0.4rem;
}

.hidden {
  display: none;
}

.frequency-card.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.frequency-options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.frequency-button {
  padding: 0.5rem 1rem;
  background-color: #C7AE6A;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.frequency-button {
  background-color: #C7AE6A;
}

.frequency-button:hover {
  background-color: #a58f5a;
}

.frequency-description {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  max-width: 500px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(20px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.selection-container {
  display: flex;
  gap: 2rem;
  margin-left: 3rem;
  margin-top: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.task-card {
  max-width: 25rem;
  display: none;
  margin-top: 2rem;
  margin-left: 2rem;
  padding: 2rem;
  background-color: #fffaf0;
  border: 2px solid #C7AE6A;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translate(30px, 30px);
  transition: all 0.5s ease;
}

.task-card.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
} 

.task-form {
  margin-top: 1rem;
}

.task-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.task-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.task-column label {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.task-column input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #c7ae6a;
}

.task-form .join-button {
  width: 100%;
  max-width: 160px;
  margin-top: 1rem;
}

.home-info-card {
  display: none;
  margin-top: 3.65rem;
  margin-left: 3.65rem;
  padding: 2rem;
  background-color: #fffaf0;
  border: 2px solid #C7AE6A;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  animation: fadeInUp 0.5s ease-out;
}

.home-info-card.show {
  display: block;
}

.home-info-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-info-form input[name="address"] {
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  padding: 0.5rem;
  font-size: 1rem;
}

.home-info-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.navbar-about {
  width: 100%;
  height: 5rem;
  background-color: #10182F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  color: white;
}
.about-layout {
display: flex;
gap: 3rem;
align-items: flex-start;
justify-content: space-between;
padding: 3rem;
padding-top: 10rem;
flex-wrap: wrap;
background-color: #FDF8F1;
}

.about-text {
flex: 1 1 60%;
}

.about-description {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.founders-photos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 30%;
  align-items: center;
}

.founder-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

html,body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

main {
  flex: 1;
}

.contact-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 11rem 2rem 4rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 95%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-row input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 1.1rem;
  color: #333;
}

.contact-info p {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }
}

.frequency-button.selcted {
  background-color: #C7AE6A;
  color: white;
}

#handymanForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
  /* #carousel-container {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 0;
  } */