/* =========================
   Global Variables
========================= */
:root {
  /* Colors */
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-accent: #c87d4f;
  --color-muted: #666;
  --white: #fff;

  /* Typography */
  --font-base: "Inter", "Helvetica Neue", sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;

  /* Layout */
  --max-width: 2000px;
  --radius: 12px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;

  /* Transitions */
  --transition: all 0.3s ease-in-out;
}

/* =========================
   Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  padding: 50px;
}

/* =========================
   Layout
========================= */
header,
main,
footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-sm);
  text-align: center;
}
section{width: 100%;}
section img {max-width: 926px; display: inline; margin-top: 60px; width: 100%;}
section p {font-family: "Zalando Sans Expanded", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgba(0, 0, 0, 0.8); text-transform: uppercase;}
section button {    display: block;
    width: auto;
    margin: auto;
    font-family: "Zalando Sans Expanded", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    background-color: #151515;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: 100px;

}

header {
  text-align: center;
  padding-top: 0px;
  padding-bottom: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  
}

/* =========================
   Typography
========================= */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.8rem;
  font-family: "Instrument Serif", serif;
  font-size: 74px;
  letter-spacing: -2px;
  font-weight: 500;
  line-height: 100%;
}

h2 {
  font-size: 1.8rem;
  margin-top: var(--spacing-md);
}

h3{ font-weight: 800;
    font-family: "Zalando Sans Expanded", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-muted);
}

/* =========================
   Links & Buttons
========================= */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

button {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

button:hover {
  opacity: 0.9;
}

/* =========================
   Images
========================= */
img {
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* =========================
   Responsive Design
========================= */

/* -------- Desktop (≥1024px) -------- */
@media (min-width: 1024px) {
  h1 {
    font-size: 4.6rem;
  }
  main {
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: var(--spacing-lg);
    background-color: #DED9D1;
    border-radius: 36px;
  }
}

/* -------- Tablet (768–1023px) -------- */
@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  header, main, footer {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  main {
    background-color: #DED9D1;
    border-radius: 36px;
}
}

/* -------- Mobile (≤767px) -------- */
@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  header h3 {
    font-size: 1rem;
    margin-bottom: 0px;
  }
  body {
    font-size: 15px;
    padding: 8px;
  }
  header, main, footer {
    padding: var(--spacing-md) var(--spacing-xs);
  }
  section button{
    font-size: .8rem; 
    padding: 12px 18px;
}
section img {
    margin-top: 40px;
}
  main {
    display: block;
    background-color: #DED9D1;
    border-radius: 16px;
    transition: var(--transition);
  }
  p {font-size: .8rem;}
}
