/* General Body */
body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
}

/* Logo Link Styles */
.logo {
  font-size: 1.2rem;
  color: #fff;
}

.logo a:hover {
  color: #9e9e9e; /* optional hover color */
}

/* Header */
header {
  background-color: #000;
  color: #fff;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Main Form Container */
main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

p {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  height: 10px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #000;
  border-radius: 5px;
  transition: width 0.3s;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Fieldsets */
fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Inputs & Textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  outline: none;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #444;
}

/* Option Cards */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-card {
  flex: 1 1 100%;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.option-card input {
  display: none;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 7px rgba(0,0,0,0.1);
}

.option-card input:checked + .option-label {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  display: block;
  padding: 0.5rem;
}

.option-label {
  display: block;
  font-weight: bold;
  margin: 0;
  padding: 0.25rem;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: space-between;
}

/* Mobile First */
@media(min-width: 600px){
  .option-card {
    flex: 1 1 45%;
  }
}
