/* css/variables.css */
:root {
  --card-border-radius: 8px;
  --card-border: 1px solid #ddd;
  --shadow-elevation-medium:
    0px 1.2px 1.8px rgba(0,0,0,0.11),
    0px 2.6px 2.3px -2px rgba(0,0,0,0.08),
    0.1px 12px 10.8px -4px rgba(0,0,0,0.06);
  --colors-chlorine: #94e1e8;
  --colors-chlorine-dark: #0b5b63;
  --colors-sand: #ffd78e;
  --colors-sand-dark: #845500;
  --colors-sand-light: #fff2dd;
  --colors-blush: #e68394;
  --colors-blush-dark: #882435;
  --colors-purpur: #7867bb;
}

/* css/fonts.css */
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("./ibm-plex-sans-v13-latin-regular-ZSRYUOWF.woff2") format("woff2"), url("./ibm-plex-sans-v13-latin-regular-GIUVENNE.woff") format("woff");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: url("./ibm-plex-sans-v13-latin-italic-ZXYIXT47.woff2") format("woff2"), url("./ibm-plex-sans-v13-latin-italic-KMNCB43I.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("./inter-v8-latin-regular-54EXAHDU.woff2") format("woff2"), url("./inter-v8-latin-regular-SAHLIBPD.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("./inter-v8-latin-500-TQHYS2AO.woff2") format("woff2"), url("./inter-v8-latin-500-4CNBKBIT.woff") format("woff");
}

/* css/card.css */
.card--sand {
  border-radius: var(--card-border-radius);
}
.card--sand > a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card--sand > a img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  max-width: 100%;
  height: auto;
}
.card--sand > a .card-content {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.card--sand > a .card-content .card-title {
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.card--sand > a .card-content .card-body {
  margin-top: 0.5rem;
  flex-grow: 1;
}
.card--sand > a .card-link-indicator {
  color: #79523b;
  font-weight: 500;
  margin-top: 20px;
  text-align: right;
}
.card--sand > a:hover .card-link-indicator {
  color: #79523b;
}
.card--sand {
  background: var(--colors-sand-light);
  color: black;
}

/* css/typography.css */
html {
  font-size: 18px;
  line-height: 1.5;
  font-family: "IBM Plex Sans", sans-serif;
  color: #282828;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: Inter, sans-serif;
}
h1 {
  font-weight: 500;
  font-size: 2.75rem;
}
h2 {
  font-weight: 500;
  font-size: 1.25rem;
}
h3 {
  font-weight: 400;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* css/article.css */
.article {
  max-width: 880px;
  margin: 0 auto 200px;
  border-radius: var(--card-border-radius);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: #fff;
  padding: 60px;
}
.article h1 {
  margin-top: 0;
}
.article h2 {
  margin-top: 36px;
}
.article img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .article {
    padding: 40px 20px;
    border-radius: 0;
  }
}
.article--hero-image {
  max-width: 1280px;
  margin: auto;
}
.article--hero-image img {
  width: 100%;
  height: auto;
}

/* css/table.css */
table {
  border-spacing: 0;
  width: 100%;
  border: var(--card-border);
  border-radius: var(--card-border-radius);
  font-size: 14px;
  margin-bottom: 3rem;
}
table th {
  font-weight: 500;
}
table td,
table th {
  border-bottom: var(--card-border);
  padding: 12px 15px;
}
table thead tr {
  text-align: left;
}
table tbody tr:last-of-type td {
  border: 0;
}

/* css/navbar.css */
.navbar {
  background: #fff;
  padding: 30px 0;
  font-family: Inter, sans-serif;
}
.navbar a {
  color: black;
  text-decoration: none;
  font-size: 36px;
}
.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* css/button.css */
.button--chlorine,
.button--sand,
.button--blush,
.button--purpur {
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--card-border-radius);
  border: 0;
}
.button--chlorine {
  background: var(--colors-chlorine);
  color: var(--colors-chlorine-dark);
}
.button--sand {
  background: var(--colors-sand);
  color: var(--colors-sand-dark);
}
.button--blush {
  background: var(--colors-blush);
  color: var(--colors-blush-dark);
}
.button--purpur {
  background: var(--colors-purpur);
  color: white;
}

/* css/hero.css */
.hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  margin-bottom: 200px;
}
.hero .image-column {
  position: relative;
}
.hero .image-column .blush-block {
  height: 80px;
  width: 80px;
  background: var(--colors-blush);
  position: absolute;
  border-radius: 50%;
  top: -40px;
  left: -20px;
}
.hero .image-column .sand-block {
  height: 120px;
  width: 120px;
  background: var(--colors-sand);
  position: absolute;
  top: -20px;
  left: 20px;
  border-radius: 50%;
}
.hero .image-column .purpur-block {
  height: 170px;
  width: 170px;
  border-radius: 50%;
  background: var(--colors-purpur);
  position: absolute;
  bottom: -90px;
  left: 50px;
}
.hero h1 {
  font-size: 72px;
  margin: 0;
  line-height: 1;
  margin-bottom: 18px;
}
.hero .text-column {
  margin-top: 32px;
}
.hero .intro {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }
}

/* css/swatch.css */
.swatch-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.swatch--chlorine,
.swatch--blush,
.swatch--purpur,
.swatch--sand {
  width: 100%;
  height: 200px;
  border-radius: var(--card-border-radius);
  padding: 20px;
  font-size: 2rem;
  color: white;
}
.swatch--chlorine {
  background: var(--colors-chlorine);
}
.swatch--blush {
  background: var(--colors-blush);
}
.swatch--purpur {
  background: var(--colors-purpur);
}
.swatch--sand {
  background: var(--colors-sand);
}

/* css/grid.css */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* css/lists.css */
.list--pros,
.list--cons,
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 5px;
}
.list--pros li,
.list--cons li,
.list--check li {
  padding-left: 30px;
  margin-bottom: 15px;
}
.list--pros li {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%235bbc9b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>%0A') top left no-repeat;
}
.list--cons li {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23e68394" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line></svg>%0A') top left no-repeat;
}
.list--check li {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%235bbc9b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>%0A') top left no-repeat;
}

/* css/info-box.css */
.info-box::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="%2306f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-info"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>%0A');
  position: absolute;
  top: -27px;
  left: -27px;
  border: 8px solid #fff;
  display: block;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #fff;
}
.info-box {
  position: relative;
  margin-top: 40px;
  padding: 40px;
  background: #e4f1ff;
  border-left: 3px solid #0066ff;
}
.info-box h3 {
  margin-top: 0;
}
.info-box p:last-child {
  margin-bottom: 0;
}

/* css/style.css */
* {
  box-sizing: border-box;
}
img {
  display: block;
}
body {
  margin: 0 0 60px;
}
.index {
  max-width: 1200px;
  margin: 60px auto 400px;
  padding: 0 30px;
}
.index h2 {
  font-size: 32px;
}
.playground {
  max-width: 1200px;
  margin: 60px auto 200px;
  padding: 0 30px;
}
