/* Font Styles */
* {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  }
  
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1.0); /* Semi-transparent background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end; 
}

header a {
  font-size: medium;
  margin: 0 0px; /* Space between links */
  color: black; /* Link color */
  text-decoration: none; /* No underline */
  font-weight: 300;
}

header a:hover {
    text-decoration: underline; /* Underline on hover */
}

body {
    padding-top: 60px; /* Space for the fixed header */
}

  /* Page Layout */
  html, body {
    margin: 0;
    height: 100%;
    overflow: scroll;
  }
  a, button {
    padding: 12px;
    min-width: 24px;
    min-height: 24px;
  }
  
  #root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    padding-top: 0; /* Remove padding since we removed the header */
    height: 100vh;
    overflow: hidden;
  }
  
  /* Navigation Styles */
  #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
  }
  
  .logo {
    max-width: 90px;
    height: auto;
  }
  
  #nav {
    padding-right: 80px;
  }
  
  a {
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #666;
  }
  
  /* Main Container Styles */
  .container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  
  /* Text Section Styles */
  .text-section {
    background-color: black;
    color:white;
    width: 30%;
    height: 100vh;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position:fixed;
    left: 0;
    top: 0;
    animation: fadeInLeft 0.8s ease;
    overflow-y: auto;
    overflow: scroll;
  }
  
  .text-section h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  
  .text-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-right: 30px;
  }
  
  /* Form Section Styles */
  .form-section {
    width: 70%;
    padding: 60px;
    padding-top: 60px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 100vh;
    overflow-y: auto; 
    margin-left: 30%; 
    overflow: scroll;
}
  
#results{
    min-height: 300px;
}

  .budget-form {
    padding-top: 10px;
    font-size: 1.2em;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
  }
  
  .form-group {
    margin-bottom: 30px;
  }
  
button {
    padding: 15px 15px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    justify-content: right;
    margin-bottom: 10px;

}
  /* Input Styles */
  input {
    padding: 15px;
    margin: 8px 0 20px;
    font-size: 1.2em;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  /* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    position: relative; 
    background-color: rgba(255, 255, 255, 1.0); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.footer-content p {
    margin: 5px 0;
}


  /* Animation */
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translate3d(-100%, 0, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .text-section, .form-section {
      padding: 40px;
    }
    .text-section h1 {
      font-size: 48px;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      height: auto;
    }
    .text-section {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 300px;
    }
    .form-section {
      width: 100%;
      margin-left: 0;
      height: auto;
    }
    .text-section h1 {
      font-size: 36px;
      text-align: center;
    }
    .text-section p {
      text-align: center;
    }
    .budget-form {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .text-section, .form-section {
      padding: 20px;
    }
    .text-section h1 {
      font-size: 28px;
    }
  }
  