/* ==========================================================
   ITKEN GLOBAL STYLESHEET
   Colors, Typography, Layout, Responsive Rules
   ========================================================== */

/* ------------------------------
   Color Variables
------------------------------ */
:root {
  --clay-red: #C2644F;
  --sand-beige: #D8C8A0;
  --deep-mocha: #5B3920;
  --ivory: #F3EBDD;
  --teal-accent: #3FA7A0;
}

/* ------------------------------
   Base Styles
------------------------------ */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--deep-mocha);
  background-color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin: 0;
  padding: 0 20px;
  min-height: 100vh;
  text-align: center;
}

/* ------------------------------
   Typography
------------------------------ */

/* Headings: Strong and expressive */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--deep-mocha);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--deep-mocha);
}

.subheading {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--teal-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ------------------------------
   Layout & Components
------------------------------ */
.container {
  max-width: 90%;
  width: 600px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: var(--clay-red);
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-buttons a:hover {
  background-color: var(--teal-accent);
}

/* ------------------------------
   Responsive Typography & Layout
------------------------------ */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 10px;
  }
}