:root {
      --bg: #708A74;
      --text: #000;
      --accent-yellow: #F9C738;
      --accent-red: #C72C2C;
      --white: #F5F5F5;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      background-color: var(--bg);
      padding: 15px 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      border-bottom: 1px solid #2f4f40;
    }

    .header-left img {
      height: 70px;
      border-radius: 50%;
    }

    main {
      flex: 1;
    }

    footer {
      background-color: #2f4f40;
      color: var(--white);
      padding: 20px;
      text-align: center;
    }
/* form {
      background-color: var(--white);
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .form-step {
      display: none;
      animation: fadeIn 0.4s ease-in-out;
    }

    .form-step.active {
      display: block;
    }

    .form-step input,
    .form-step select {
      width: 100%;
      padding: 10px;
      margin: 8px 0 20px;
      border-radius: 8px;
      border: 1px solid #ccc;
    } */

    label {
      font-weight: 600;
    }

    .step-buttons {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 10px;
    }

    .step-buttons button {
      padding: 10px 20px;
      border: none;
      background-color: var(--bg);
      color: white;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .step-buttons button:hover {
      background-color: #5a7462;
    }

    .timeslot-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .timeslot-list label {
      display: inline-block;
      background-color: #e5e5e5;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .timeslot-list input[type="radio"] {
      display: none;
    }

    .timeslot-list input[type="radio"]:checked+span {
      background-color: var(--bg);
      color: white;
      padding: 5px 0;
    }

    #customDurationInput {
      display: none;
    }

    #customDurationInput input {
      width: 100%;
    }
   .fd-container {
  height: 100vh;
  width: 100%;
  background-image: url('/pikol-garden/public/img/fd-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.fd-container h1 {
  background-color: #ffffffc4;
  width: 55%;
  height: 165px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #2f4f40;
  font-size: 3rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

    /* Logo */
.logo {
  height: 70px;
  border-radius: 50%;
}

/* Burger Menu (hidden on desktop) */
.burger {
  font-size: 30px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: none;
}
.close-btn{
  display: none;
}
/* Flex structure */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.book-btn {
  background-color: var(--accent-yellow);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.book-btn:hover {
  background-color: #e5b926;
}
.header-right {
    align-self: center;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
.auth-links {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.auth-btn {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid var(--white);
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.auth-btn:hover {
  background: var(--white);
  color: var(--bg);
}

/* Optional style difference for Signup */
.auth-btn.signup {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}

.auth-btn.signup:hover {
  background: var(--accent-yellow);
  color: var(--bg);
}

.index-section{
  padding: 40px;
  color: var(--white);
  text-align: center;
  background-image: url('/pikol-garden/public/img/home-bg.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.index-welcome{
  background-color: #000000c7;
  padding: 4rem;
  font-size: 2rem;
  border-radius: 10px;
}
.index-welcome > button{
  padding: 10px 20px; font-size: 1rem; margin-bottom: 20px;
}

.auth-btn i {
    font-size: 1rem;
    color: #f0c040;
    transition: color 0.2s ease;
}

.auth-btn i:hover {
    color: #f0c040;
}
.user-info a{
  margin: 0 5px
}
.user-name{
  color: #f0c040;
  font-weight: bold;
}
/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-left {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background-color: var(--bg); /* or use #333 for contrast */
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }
.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: var(--white);
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
  }

  .header-right {
    align-self: flex-end;
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .book-btn, .auth-links {
    width: 100%;
    text-align: center;
    display: block;
  }
   .auth-links {
      align-items: normal;
      gap: 10px;
      margin-left: 0;
      display: flex;
  }

  .auth-btn {
    width: 100%;
  }
  .fd-container h1{
    width: 100%;
    font-size: 2rem;
  }
  .index-welcome{
    width: 295px;
    padding: 4rem 2rem;
  }
  .index-welcome h1{
    font-size: 1em;
  }
  .index-welcome p{
    font-size: 1rem;
  }
  .user-info{
    display: flex;
    justify-content: end;
  }
}
