/* ============================
   KORA SAYS — BRAND STYLESHEET
   ============================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@500;700&display=swap');

/* --- COLORS (Brand Palette) --- */
:root {
  --cream: #FFF8E7;
  --cream-light: #FFF9E8;
  --teal: #005052;
  --coral: #FF8270;
  --text-dark: #003D3E;
  --shadow: rgba(0, 80, 82, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- HEADER --- */
header {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}

header img {
  height: 80px;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

p.subtitle {
  font-size: 1.15rem;
  color: var(--teal);
  opacity: 0.8;
}

/* --- CONTAINER --- */
.container {
  max-width: 720px;
  margin: 2rem auto;
  text-align: center;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px var(--shadow);
}

.container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.container p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 2rem;
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 12px;
}

/* --- BUTTONS (optional future use) --- */
button, .cta-btn {
  background-color: var(--coral);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover, .cta-btn:hover {
  background-color: #ff6a5d;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--teal);
  opacity: 0.8;
  padding: 2rem 1rem;
  margin-top: auto;
  background-color: var(--cream-light);
  border-top: 1px solid rgba(0, 80, 82, 0.08);
}
