:root {
  /*Base Font Scaling */
  --font-base: clamp(12px, 2vw, 18px);

  /*Font-families */
  --font-headings: Antonio;
  --font-departure: departure;
  --font-body: Antonio;

  /* Headings */
  --font-xxxxl: clamp(64px, 9vw, 120px);
  --font-xxxl: clamp(48px, 8vw, 104px);
  --font-xxl: clamp(40px, 7vw, 88px);
  --font-xl: clamp(32px, 6vw, 72px);
  --font-h1: clamp(24px, 5vw, 64px);
  --font-h2: clamp(20px, 4vw, 48px);
  --font-h3: clamp(16px, 3vw, 36px);
  --font-h4: clamp(14px, 2.5vw, 28px);
  --font-h5: clamp(12px, 2vw, 24px);
  --font-h6: clamp(10px, 1.5vw, 20px);
  --font-med: clamp(8px, 1.25vw, 16px);
  --font-small: clamp(6px, 1vw, 12px);

  /* Line Heights */
  --line-height-base: 1.5;

  /* Spacing (Margins & Padding) */
  --marg-std: clamp(8px, 2vw, 24px);
  --marg-small: clamp(6px, 1.5vw, 16px);
  --marg-med: clamp(12px, 3vw, 32px);
  --marg-lrg: clamp(16px, 4vw, 40px);

  --padd-std: clamp(8px, 2vw, 24px);
  --padd-small: clamp(6px, 1.5vw, 16px);
  --padd-med: clamp(12px, 3vw, 32px);
  --padd-lrg: clamp(16px, 4vw, 40px);

  --gap-std: clamp(8px, 2vw, 24px);
  --gap-small: clamp(6px, 1.5vw, 16px);
  --gap-med: clamp(12px, 3vw, 32px);
  --gap-lrg: clamp(16px, 4vw, 40px);

  /* links */
  --link-color: inherit;
  --link-hover-color: inherit;
  --link-dec-none: none;
  --link-dec-underline: underline;

  /* Image Sizes (Fluid Scaling) */
  --img-small: clamp(120px, 20vw, 320px);
  --img-medium: clamp(240px, 30vw, 480px);
  --img-large: clamp(360px, 40vw, 640px);
  --img-full: clamp(480px, 60vw, 960px);

  /* Object Fit Defaults */
  --img-fit-cover: cover;
  --img-fit-contain: contain;

  /* Border Radius */
  --radius: clamp(4px, 1vw, 16px);
}

/* General Typography */


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: var(--marg-std);
  line-height: calc(var(--font-base) * 1.75);
}
.hxxxxl {
  font-size: var(--font-xxxxl);
  margin-bottom: var(--marg-lrg);
  line-height: calc(var(--font-base) * 4.5);
}
.hxxxl {
  font-size: var(--font-xxxl);
  margin-bottom: var(--marg-lrg);
  line-height: calc(var(--font-base) * 4.5);
}
.hxxl {
  font-size: var(--font-xxl);
  margin-bottom: var(--marg-std);
  line-height: calc(var(--font-base) * 4);
}
.hxl {
  font-size: var(--font-xl);
  margin-bottom: var(--marg-std);
  line-height: calc(var(--font-base) * 3);
}

h1 {
  font-size: var(--font-h1);
}
h2 {
  font-size: var(--font-h2);
}
h3 {
  font-size: var(--font-h3);
}
h4 {
  font-size: var(--font-h4);
}
h5 {
  font-size: var(--font-h5);
}
h6 {
  font-size: var(--font-h6);
}

/* Paragraphs */
p {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--marg-med);
}

/*Content Containers */

article {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--marg-med);
  padding: var(--padd-med);
  max-width: 80ch;
}

aside {
  font-size: calc(var(--font-base) * 0.9); /* Slightly smaller */
  padding: var(--padd-std);
  margin-bottom: var(--marg-med);
}

section {
  padding: var(--padd-lrg);
  margin-bottom: var(--marg-lrg);
}

/* Lists & Blockquotes */
ul,
ol {
  margin: var(--marg-std);

}

blockquote {
  font-size: var(--font-h3);
  line-height: var(--line-height-base);
  margin: var(--marg-med);
  padding-left: var(--padd-med);
  border-left: 4px solid #999;
}
/* G R I D S */

.grid-min-max {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: var(--padd-std);
  gap: var(--gap-std);
  border: 4px solid gold;
  background-color: orange;
}
.grid-closed-over {
  display: grid;
  grid-template-columns: 1fr 400px 300px 400px 1fr;
  justify-content: center;
  width: 100%;
  border: 4px solid gold;
  background-color: orange;
}

.grid-auto-flow-col {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  overflow-x: scroll;
  width: 100%;
  height: auto;
  margin: var(--marg-std) auto;
  padding: var(--padd-std);
  gap: var(--gap-std);

  border: 4px solid gold;
  background-color: #222;
}
.grid-auto-flow-row {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  overflow-y: scroll;
  width: auto;
  height: 260px;
  margin: var(--marg-std) auto;
  padding: var(--padd-std);
  gap: var(--gap-std);

  border: 4px solid gold;
  background-color: #222;
}
.test-item {
  margin: var(--marg-std);
  padding: var(--padd-std);
  text-align: center;

  color: #fff;
  border: 2px solid red;
  background-color: #333;
}

.grid-stacked {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 300px;
  height: 300px;
  /* margin: var(--marg-std);
  padding: var(--padd-std); */
  border: 2px solid gold;
}

.layer1 {
  z-index: 2;
  grid-column: 1/1;
  grid-row: 1/1;
  display: grid;
  grid-template-columns: 3fr;
  grid-template-rows: 2fr;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.5);
  border: 2px solid #999;
}
.layer1-text {
  grid-column: 1/2;
  max-width: 100px;
  padding: var(--padd-small);

  border: 2px solid #111;
}

.layer2 {
  z-index: 1;
  grid-column: 1/1;
  grid-row: 1/1;
  text-align: end;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* border: 2px solid #999; */
}

.layer2 img {
  width: 300px;
  height: auto;
  /* padding: var(--padd-std); */
  object-fit: var(--img-fit-cover);
  border-radius: var(--radius);
}

/* Image Container Standard */
.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: 100%;
  height: auto;
  /* padding: var(--padd-std); */
  object-fit: var(--img-fit-cover);
  border-radius: var(--radius);
}

/* Image Specific Sizes */
.img-small {
  width: var(--img-small);
  height: auto;
}

.img-medium {
  width: var(--img-medium);
  height: auto;
}

.img-large {
  width: var(--img-large);
  height: auto;
}

.img-full {
  width: var(--img-full);
  height: auto;
}
.typography-xxxl {
  font-size: var(--font-xxxl);
}
.typography-xxl {
  font-size: var(--font-xxl);
}
.typography-xl {
  font-size: var(--font-xl);
}
