/* === ROOT COLORS & TYPOGRAPHY === */
:root {
  --bg-primary: #fff5f0;
  --bg-secondary: #ffede3;
  --text-primary: #0d0d0d;
  --text-secondary: #2d2d2d;
  --accent: #ff5500;
  --accent-hover: #ff3a00;
  --border: #ffcc99;
  --success: #52b788;

  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, #cc6633 0%, #ff9955 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

h1 {
  font-size: 3.8rem;
  margin-bottom: 0.3em;
  font-weight: 900;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 0.4em;
  font-weight: 800;
}

h3 {
  font-size: 1.7rem;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1em;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* === HEADER & NAV === */
header {
  display: none;
}

/* === SECTIONS & CONTAINERS === */
section {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero {
  padding: 2rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 0.5rem;
  font-size: 3rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-weight: 600;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.video-container iframe {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.08);
}

/* === CONTENT SECTIONS === */
.content-section {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.08);
}

.content-section h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* === TIDYCAL EMBED CUSTOMIZATION === */
.tidycal-embed {
  background: var(--bg-primary) !important;
  border-radius: 8px;
  padding: 1rem;
}

/* === FORM STYLES === */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  line-height: 1.4;
  font-weight: 500;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 85, 0, 0.02);
  box-shadow: 0 0 0 4px rgba(255, 85, 0, 0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-sans);
}

input[type="submit"] {
  background-color: rgb(238, 137, 55);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(255, 85, 0, 0.4);
}

input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.5);
}

input[type="submit"]:active {
  transform: translateY(-1px);
}



/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 1.5rem;
  }

  .hero {
    padding: 1.5rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  input[type="submit"] {
    width: 100%;
    align-self: auto;
  }

  .video-container iframe {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  section {
    padding: 1rem;
  }

  .hero {
    padding: 1rem;
  }

  .content-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  label {
    font-size: 0.85rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

/* === PRINT STYLES === */
@media print {
  section {
    page-break-inside: avoid;
  }
}
