*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Urbanist';
  src: url('/static/fonts/Urbanist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}



body {
  font-family: Urbanist, serif;
  margin: 0;
  padding: 0;
  background-color: #1E1B2E; /* dark background */
  color: #e0e0e0; /* light text */
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: fit-content;
}

.fade-me-out.htmx-swapping {
  opacity: 0;
  transition: opacity 1s ease-out;
}

nav {
  top: 0;
  background-color: #121212	;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

nav li a:hover {
  color: #f6faff;
}

.footer {
  bottom: 0;
  background-color: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  max-height: 14px;
}
/* START Home Page */ 

/* END Home Page */ 

/* START Contact Page */ 

.flex-container {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* makes both items the same height */
}

.contact-form {
  padding: 1rem;
  background: #1E1B2E	;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.side-image {
  display: none;
  max-height: 756px;
}

@media (min-width: 1024px) {
  /* .contact-form {
    width: 50%;
  } */
  .side-image {
    display: block;
  }
}

.side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.contact-form .hero {
  margin-bottom: 2rem;
}

.contact-form h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #5B21B6;
  background-color: #1E1B2E; /* change this to your chosen shade */
  color: white;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

/* BUDGED FIELDS */
.budget-fieldset {
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #5B21B6;
}

.budget-legend {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.budget-options {
  width: 100%;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1rem;
  flex-wrap: wrap;
}

/*SUBMIT BUTTON */
button {
  background: #7C3AED	;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

/* END Contact Page */


/* START Platform Page */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #083b0d;
}

.card p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #ffffff;
}

/* END Platform Page */
