/* === Global Background FX (edge-to-edge pan + small zoom) === */
:root{
  /* Asset and tuning knobs */
  --bgfx-image: url("/assets/img/backgrounds/site-bg.gif"); /* use WebP if you can */
  --bgfx-start-scale: 1.25;  /* zoom at top (keep modest) */
  --bgfx-end-scale: 1.02;    /* tiny overscan so bottom never shows edge */

  /* Optional (wired in JS) */
  --bgfx-blur-max: 0;        /* e.g., 8 for blur-on-scroll; 0 disables */
  --bgfx-fade-max: 0.50;        /* e.g., .25 to fade 25% at bottom; 0 disables */

  /* Short-page damping (so small pages don't over-move) */
  --bgfx-motion-min: 0.35;   /* min fraction of full sweep on very short pages */
  --bgfx-motion-baseline-vh: 6; /* full sweep once page ≈ 6× viewport height */

  /* Runtime (JS updates these) */
  --bgfx-scale: 1.25;
  --bgfx-posY: 0px;          /* 0 = top aligned; negative = slide up */



:root { --bgfx-gray: 0; }
body.mfp-open { --bgfx-gray: 1; }   /* Magnific adds this class */
}

#bgfx{
  position: fixed;
  inset: 0;
  z-index: -1000;
  pointer-events: none;
  background: var(--bgfx-image) center / calc(var(--bgfx-scale) * 100%) no-repeat;
  background-position: 50% var(--bgfx-posY); /* TOP-aligned pixel offset */
  filter: blur(0);
  opacity: 1;
  will-change: background-size, background-position, filter, opacity;
    filter: grayscale(var(--bgfx-gray, 0)) blur(0); /* defaults to 0 (no grayscale) */
}






/* --- Optional intro animation (subtle zoom/fade-in) --- */
#bgfx.intro { animation: bgfxIntro 3000ms ease-out both; }

@keyframes bgfxIntro {
  from {
    background-size: calc(1 * 100%); /* start a touch larger */
    background-position: 50% 0;         /* start at the very top */
    opacity: 0;
  }
  to {
    background-size: calc(var(--bgfx-scale) * 100%);
    background-position: 50% var(--bgfx-posY);
    opacity: 1;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  #bgfx{ background-size: 100%; background-position: 50% 0; filter:none; opacity:1; }
  #bgfx.intro { animation: none; }
}



/* === End of Global Background FX (edge-to-edge pan + small zoom) === */





/* Repeater Arrow */
:root{
  --icon-size: 16px;  /* height of the icon row */
  --divider-margin: 2rem;
  --divider-image: url("/assets/ico/cmc-arrow.png");
}

/* Base divider */
.section-divider{
  display:block;
  width:100%;
  height:var(--icon-size);
  margin:var(--divider-margin) 0;
  background-repeat: repeat-x;       /* tile horizontally */
  background-position: 47.5% 50%;      /* center vertically */
  background-size: auto var(--icon-size); /* scale icon to desired height */
  border: 0.5px;
}

/* Make it edge-to-edge even inside a centered container
.section-divider--bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
} */



.triangles1 {
        background-image: url('/assets/img/triangles.gif');
        background-repeat: repeat-x;

         display: block;            /* makes the span behave like a divider */
         height: 24px;              /* match the height */


    }



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}





/* global image fade in onload */

img {
  filter: brightness(100%) contrast(100%) saturate(100%);
}

/* Main Logo */

.cmc-logo-menu {width: 50%; margin-left: 48px; margin-bottom:24px;}


.logo-container {
  text-align: left;
}


/* === CMC Logo Drip Animation (iOS-safe) === */

/* Wrapper */
.logo-link{
  position: relative;
  display: inline-block;
  width: 33%;
  max-width: 400px;
  margin: 0 0 8px -51px;
  line-height: 0;
  background: none !important;
  border: none;
}
.logo-link:hover,
.logo-link:focus { filter: brightness(120%); }

/* Shared image rules */
.cmc-logo{
  display:block;
  width:75%;
  height:auto;
  margin:0;
  border: none;
}

/* Outline layer */
.cmc-logo.base{
  position:relative;
  z-index:0;
}

/* Filled layer revealed by mask */
.cmc-logo.filled {
    position: absolute;
    margin-top: 2px;
    margin-left: 4px;
    opacity: 0.8;
    inset: 0;
    z-index: 1;
    width: 73.5%;
    height: auto;
    -webkit-mask-image: url(/assets/mask/drips-mask.svg);
    mask-image: url(/assets/mask/drips-mask.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 300%;
    mask-size: 100% 300%;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
    animation: cmcDrip 3s cubic-bezier(0, 0, 0.58, 1) forwards;
    animation-delay: .4s;
    will-change: -webkit-mask-position, mask-position;
}


/* Animate BOTH the WebKit prop and the standard one */
@keyframes cmcDrip{
  from{
    -webkit-mask-position: 0 100%;
            mask-position:  0 100%;
  }
  to{
    -webkit-mask-position: 0 0%;
            mask-position:  0 0%;
  }
}

/* iOS is picky: offering a vendor keyframes alias is extra-safe */
@-webkit-keyframes cmcDrip{
  from{ -webkit-mask-position: 0 100%; }
  to  { -webkit-mask-position: 0 10%; }
}

/* Reduced motion: jump to final state */
@media (prefers-reduced-motion: reduce){
  .cmc-logo.filled{
    animation: none !important;
    -webkit-mask-position: 0 10%;
            mask-position:  0 10%;
  }
}






.label {
  all: unset;
}

.full-width-image-wrapper {
  width: 100%;
  max-width: 100%;
}

.full-width-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.img-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
  background-color: #14331e; /* fallback for slow image load */
  display: block;
  width: 100%;
  height: auto;
}
.img-fade-in.loaded {
  opacity: 1;
}
#main-image {
  opacity: 0;
  filter: brightness(100%) saturate(100%) contrast(100%);
  transition: opacity 5s ease;
  width: 100%;
  height: auto;
  max-width: 5000px;
  display: block;
}

#main-image.visible {
  opacity: 1;
}

.image-description {
  margin: 0;
}

.image-title {
  margin-top: 0;
}

.aboutmainphoto {
  margin-top: 244px;
}

@keyframes wipeIn {
  to {
    width: 100%;
  }
}

.visually-hidden {
  position: absolute !important;
  background-color: #14331e;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.preloader,
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background-color:#347e4d;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  pointer-events: all;
}

.preloader.hidden,
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* TEXT */

html,
body {
  font-family: "Vollkorn", serif;
}

html {
  margin: 0;
background-color:#347e4d;
  scroll-behavior: smooth;
}

body {
  font-size: 40px;
  font-style: normal;
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0.0025em;
  color: #a6bfb3;
  margin: 48px;
  text-align: left;
  background-color: transparent;

  min-height: 100%; /* Use min-height to ensure body covers the full height */
}

/* Animated H1 */
/* Animated H1 */
.heading {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.4;
  margin: 0 0 24px 0;
  color: #a7beb4;
}

.heading-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-decoration: none;
  background: none !important;
  color: inherit;
}

/* Outline layer: allow wrapping */
h1.outline {
  font-family: "Pirata One", system-ui;
  font-weight: 400;
  line-height: 1.6;
  font-size: 40px;
  letter-spacing: 0.025em;
  color: transparent;
  -webkit-text-stroke: 1px #a7beb4;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Fill overlay: reveal via clip-path (no width animation) */
.fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;

  /* start fully clipped from the right; animate open */
  clip-path: inset(0 100% 0 0);
  animation: sweep 3.25s ease forwards;
  animation-delay: 0.75s;
}

/* Fill content: static text that wraps exactly like the outline */
.fill-content {
  font-family: "Pirata One", system-ui;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: #a7beb4;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  border-right: 0;     /* no blinking caret */
  display: block;      /* matches the outline’s multi-line box */
}

/* Smooth, layout-stable reveal */
@keyframes sweep {
  to { clip-path: inset(0 0 0 0); }
}

/* End of Animated H1 */





@keyframes revealText {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

/* End of Animated H1 */

section h1,
article h1,
nav h1,
aside h1 {
  font-size: 40px !important;
}

h1 {
  font-size: 40px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.025em;
}

h4,
.menu__text {
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.025em;
}
h2 {
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.025em;
}
h3 {
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.025em;
}
body,
p,
h6,
.image-description {
  line-height: 2.1;
  font-weight: 500;
  letter-spacing: 0.025em;
}

h1,
h4,
h5 {
  text-decoration: none;
}

h1,
h4,
.menu__text {
  font-family: "Pirata One", system-ui;
  font-size: 40px;
  font-style: normal;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding: 0;
  border: none;
  color: transparent;
  text-transform: none;
  z-index: 9999;
}

h5,
h6 {
  margin-top: 14px !important;
  margin-bottom: 12px !important;
  font-style: normal;
}

.image-container h5 {
  font-family: "Pirata One", system-ui;
  line-height: 1.8;
  color: #a7beb4;
  margin-top: 24px !important;
  margin-bottom: 0;
  text-align: right;
}

/* h2 ANIMATION start */

.subtle-reveal {
  opacity: 0;
  transform: translateY(3px);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 24px;
  line-height: 1.8;
  animation: fadeSlideUp 1.2s ease forwards;
  animation-delay: 1.6s; /* sync with h1 fill delay */
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.blur-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(0);
  animation: blurIn 1.2s ease forwards;
  animation-delay: 1.5s;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* h2 animation end */

h2 {
  font-family: "Vollkorn", serif;
  font-style: normal;
  color: #0e2516;
  font-size: 30px;
  text-transform: none;
  text-align: left;
margin-left: 6px;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.h2link {
  font-size: 25px;
  line-height: 1.8;
  text-transform: none;

  text-align: left;
}

h3 {
  font-family: "Vollkorn", serif;
  font-style: normal;
  font-size: 22px;
  text-transform: none;
  color: #a6bfb4;
  text-align: left;
  margin-left: 6px;
  margin-top: 8px;
  margin-bottom: 24px;
}

h5 {
  font-family: "Vollkorn", serif;
  font-size: 32px;
  text-transform: none;
  color: #a6bfb3;
  text-align: left;
}

h6 {
  font-family: "Vollkorn", serif;
  font-size: 22px;
  text-transform: none;
  color: #a6bfb3;
  text-align: left;
}

.titlecaps {
  font-family: "Pirata One", system-ui;
  text-transform: none;
  color: #a7beb4 !important;
  font-size: 32px;
  margin-top: -6px;
  margin-bottom: 12px;
}

.portfoliotitle {
  font-family: "Pirata One", system-ui;
  font-size: 28px;
  margin-left: 15px;
  margin-bottom: 18px;
  margin-top: 0;
  color: #14331e;
}

.portfolio-box-text h4 {
  font-size: 28px;
  margin-bottom: 0; /* gap below the heading */
  margin-top: 16px !important;
}

.portfolio-box-text h2 {
  font-size: 28px;
  margin-bottom: 0; /* gap below the heading */
  margin-top: 16px !important;
}

/* P ANIMATION start */
.typewriter-reveal {
  opacity: 1;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typeIn 2.2s steps(40, end) forwards;
  animation-delay: 2.8s; /* after h1 and h2 */
}

@keyframes typeIn {
  to {
    opacity: 1;
    width: 100%;
  }
}

/* P ANIMATION end */

p.compact + p.compact + p.compact + p.compact {
  padding-bottom: 24px !important; /* gap after Year, before the description */
}

p.compact {
  margin-bottom: 18px !important;
  /* padding: 0; not sure if this does anyhitng */
  line-height: 1.8; /*effects the description text line spacing - working */
}

/* Add gap only after the last metadata line - working */
p.last-meta {
  margin-bottom: 12px; /*doesnt appear to be working */
}

p.description {
  margin-top: 0;
  line-height: 1.8;
}

p, h3.p-heading {

  padding-left: 12px;
  padding-right: 12px;
  font-family: "Vollkorn", serif;
  font-size: 22px;
  font-style: normal;
  text-transform: none;
  color: #14311e;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  text-align: left;
}





p.smalltext {
  font-size: 19px;
  line-height: 1.8;
}

.fa {
  font-weight: 600;
  margin-top: 18px;
}

a {
  font-family: "Pirata One", system-ui;

  color: #14331e;
  letter-spacing: 0.025em;
  text-decoration: underline;
  padding: 2px 4px;
  background-color: #a7beb4;
  border: none;
  font-style: normal;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #14331e;
  text-decoration: none;
  padding: 2px 4px;
  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
a:focus {
  color: #14331e;
  text-decoration: none;
  padding: 2px 4px;
  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

a:active {
  color: #14331e;
  text-decoration: none;
  padding: 2px 4px;
  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-filters {
  font-family: "Pirata One", system-ui;
  margin-bottom: 12px;
  text-align: center;
}
.portfolio-filters a {
  color: #14331e;
  font-size: 25px;
 text-decoration: underline;

   margin-right: 6px;
  background-color: #a7beb4;
  border: none;

  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-filters a:hover {
  color: #14331e;
  font-size: 25px;
  text-decoration: none;

  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-filters a:focus {
  color: #14331e;
  font-size: 25px;
  text-decoration: none;

  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio-filters a:active {
  color: #14331e;
  font-size: 25px;
  text-decoration: none;

  background-color: #bcd0c7;
  border: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.scroll-to-top1 {
  font-size: 32px;

  text-align: center;
  margin-top: 48px;
}
.scroll-to-top1 a {
  font-size: 32px;

  color: #14331e;
  background-color: #a7beb4;
}
.scroll-to-top1 a:hover {
  outline: 0;

  opacity: 1;
  color: #14331e;
  background-color: #bcd0c7;
}
.scroll-to-top1 a:focus {
  outline: 0;

  opacity: 1;
  color: #14331e;
  background-color: #bcd0c7;
}

/* ETC */

.image-container img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

#st-1 .st-btn > img {
  height: 48px !important;
  width: 48px !important;
}

#st-1 .st-btn {
  margin-top: 15px;
  padding-bottom: 62px !important;
}

#st-1 .st-btn:last-child {
  margin-left: 5px;
}

#st-3 .st-toggle {
  display: none;
}

.st-btn {
  font-size: inherit;
}

.break {
  display: block;
}

.hamburger-menu {
  height: 0;
}

.about {margin-top: 24px;}
.aboutgap {
  margin-top: -48px !important;
  margin-bottom: 48px !important;
}

.section-description {
  margin-top: 0;
  margin-bottom: 0;
}

.menu-description {
  margin-bottom: 48px;
}

.gapLRG {
  margin-top: 48px;
}
.gapSML {
  margin-top: 21px;
}

.flyers {margin-top: 32px !important; margin-bottom: 24px;}

.right-align {
  text-align: right;
  width: 100%;
}

.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 74%;
  margin: 48px;
}

/* CSS code for styling the image container, h5, and p elements */

/* Style the image container */
.image-container {
  text-align: right; /* Align content to the right */
  margin-top: 24px;
}

/* Optional: style the p element */
.image-container p {
  text-align: right; /* Add any additional styles for the p element here */
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.col-sm-7 {
  padding-left: 42px;
}
.no-hover-focus,
.no-hover-focus:focus,
.no-hover-focus:hover {
  border: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.abouttext3 {
  margin-top: 96px !important;
  margin-bottom: unset !important;
  padding-top: 0;
}

.aboutphoto {
  margin-top: -24px;
}
.abouttext {
  margin-top: 21px !important;
  margin-bottom: unset !important;
  padding-top: 0;
}

.abouttext1 {
  margin-top: 0 !important;
  margin-bottom: unset !important;
  padding-top: 0;
}



.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #eceae4;
}

img.mfp-img {
  border: none;
  padding: 0;
  max-width: 80% !important;
}

.mfp-figure figure {
  margin-top: -100px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.mfp-figure:after {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.mfp-counter {
  color: #14331e;
  display: none;
}

.mfp-container {
  margin:0;
  padding-left: 0;
  padding-right: 0;

  background-image: url("/assets/img/backgrounds/site-bg-neg-1.gif");
  background-size: auto;
  position: fixed;
  overflow: hidden;
}

.mfp-figure:after {
  background: transparent;}


.mfp-title {
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  background-color: #bcd0c7;
  color: #14331e;
  width: auto;
  padding-right: 21px; /* Add padding to prevent content from touching scrollbar */
  padding-left: 21px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: 48px;
  margin-right: 48px;
  margin-top: 61px;
  overflow-y: scroll;
  height: 90px;
}

.embed-responsive {
  border: 1px;
  border-color: #a6bfb3;
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
}

::-moz-selection {
  background: transparent;
  text-shadow: none;
}
::selection {
  background: transparent;
  text-shadow: none;
}

.section-container {
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: -16px;
  margin-right: -16px;
}

.section-container-about {
  margin-top: -51px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: -16px;
  margin-right: -16px;
}

.block-2-container {
  padding-top: 0;
}

.portfolio-minor {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row on default */
  gap: 12px;
  margin: auto;
}

.video-box {
  background: #bcd0c7;
}

.videoblock {
  padding-top: 48px;
  margin: inherit;
}
.block-2-box-video {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 42px;
  text-align: left;
}

.portfolio-masonry {
  margin-top: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.portfolio-container {
  padding-bottom: 0;
}
.portfolio-box {
  position: relative;
  width: 100%;
  margin: 8px;
  overflow: hidden;
}

.portfolio-box img {
  display: block; /* remove inline gaps */
  width: 100%;
  height: auto;
}

.portfolio-box-text-container {
  position: absolute;
  top: 0; /* pin to top */
  left: 0;
  right: 0;
  bottom: 0; /* pin to bottom — this makes it always cover the whole area */
  background-color: #bcd0c7;
  opacity: 0;
  padding: 12px;
  transition: opacity 0.125s ease-in-out;
  overflow-y: auto; /* allow scroll if needed */
}

.portfolio-box:hover .portfolio-box-text-container {
  opacity: 1;
}

.portfolio-box-text {
  font-size: 16px;
  height: 100%;
}

.portfolio-box-text p {

  margin: 16px;
  line-height: 1.8;
  margin-top: 8px !important;
margin-bottom: 18px !important;
  color: #14331e;
}

/*-- FOOTER STYLES. --*/

.footer {
  background-color: transparent;
  padding: 48px;
  text-align: center;
}

.footer-container {
  max-width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
 text-decoration: underline;
  transition: color 0.3s;
}

.footer-info a:hover {
  transition: color 0.3s;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  padding: 0 6px;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  transition: color 0.3s;
}

/* ANIMATIONS */
/* Enhanced Micro Lift Animation */
.micro-lift {
  opacity: 1;
  animation: liftUp 0.6s forwards;
}

/* Optional Delay Utilities (Non-conflicting) */
.delay-1 {
  animation-delay: 0;
}
.delay-2 {
  animation-delay: 0.5s;
}
.delay-3 {
  animation-delay: 1s;
}

/* Keyframes with More Movement & Subtle Scale */
@keyframes liftUp {
  from {
    transform: translateX(-3px);
    opacity: 1;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#skateboard-drawings {
  padding: 2rem 1rem;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.drawings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
