/*
Theme Name: Câlin Yoga
Theme URI: https://kalinyoga.com
Author: Câlin Yoga
Description: Custom WordPress theme for Câlin Yoga.
Version: 1.0
Text Domain: calin-yoga
*/

:root {
  --navy: #18324a;
  --camel: #c7a06a;
  --cream: #f7f2ea;
  --white: #ffffff;
  --text: #24313b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.hero-inner {
  width: min(760px, 100%);
}

.logo {
  width: 160px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0 0 32px;
  color: var(--camel);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
}

.intro {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.coming-soon {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid var(--camel);
  border-radius: 999px;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-note {
  margin-top: 42px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  opacity: 0.7;
}