/*
Theme Name: Morph Your Ride
Theme URI: https://morphyourride.com
Author: Scott Astle
Author URI: https://scottastle.com
Description: Single-page landing theme with inquiry form, SMTP email, Google Sheets & SMS integration, redirect to Vapi voice agent.
Version: 1.0
Text Domain: morph-your-ride
Domain Path: /languages
*/

/* 1. Black gutters around our 9:16 “screen” */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Tahoma, sans-serif;
}

/* 2. Locked 9:16 viewport */
.landing-aspect {
  height: 100vh;
  width: calc(100vh * 9 / 16);
  max-width: 100vw;
  background: url('images/bkg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Form & Voice cards */
.form-container,
.voice-container {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-height: 90%;
  overflow-y: auto;
  box-sizing: border-box;
}

/* 4. Vertical rhythm & bold labels */
.form-step label,
.form-step input,
.form-step select,
.form-step .checkbox-group {
  display: block;
  margin-bottom: 1rem;
}
/* .form-step label {
  font-weight: bold;
} */
/* 5. Inline-block checkboxes */
.checkbox-group label {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* 6. Hero text */
.hero-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.hero-intro {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* 7. Navigation buttons */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.form-navigation button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  cursor: pointer;
}
.form-navigation button:hover {
  background: #005177;
}
