:root {
  --bg-color: #ede8e3;
  --accent-color: #e14e26;
  --text-color: #4d4d4f;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* ---------- Base ---------- */
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: scroll;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  min-height: 72px;
}
.logo img {
  height: 70px;
}

.intro h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.project img {
  aspect-ratio: 3 / 4;
}
.project-middle img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
  .project-overlay {
    display: none;
  }
}


/* ===============================
   SCROLL ANIMATION (SAFE)
================================ */

.scroll-animate {
  opacity: 1;
  transform: none;
}

.js .scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js .scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .js .scroll-animate {
    transform: translateY(16px);
  }
}

/* ===============================
   THREE INLINE / BACKGROUND SECTIONS
================================ */

.three-inline-section,
.azure-section,
.intel-section {
  position: relative;
  overflow: hidden;
}

.full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.three-inline-container,
.eight-images-container,
.intel-grid-container {
  position: relative;
  z-index: 1;
}


/* ---------- Header ---------- */
.site-header {
  width: 100%;
  background-color: #333;
  position: relative;
  z-index: 20;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.logo img {
  width: 200px;
  height: 70px;
}

@media (max-width: 768px) {
  .logo img {
    max-height: 38px;
  }
}

/* ---------- Hamburger Menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* ---------- Navigation ---------- */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ---------- Intro ---------- */
.intro {
  max-width: 700px;
  margin: 4rem auto;
  text-align: center;
}

.intro p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* -------- Button ------------ */
.connect-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-top: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.connect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #d23f1e;
}

.connect-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- Portfolio Grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 380px;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.portfolio-grid .project {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-grid .project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  aspect-ratio: 408 / 537;
}

.portfolio-grid .project-middle img {
  aspect-ratio: 822 / 623;
}

.portfolio-grid .project:hover img {
  transform: scale(1.05);
}

.project {
  position: relative;
}

.project-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 78, 38, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project:hover .project-overlay {
  opacity: 1;
}

.project-overlay h2 {
  color: #fff;
}

.portfolio-grid .project:nth-child(1),
.portfolio-grid .project:nth-child(2),
.portfolio-grid .project:nth-child(3) {
  grid-column: span 2;
}

.portfolio-grid .project-middle:nth-child(4),
.portfolio-grid .project-middle:nth-child(5) {
  grid-column: span 3;
}

.portfolio-grid .project:nth-child(6),
.portfolio-grid .project:nth-child(7),
.portfolio-grid .project:nth-child(8) {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
  }
  .portfolio-grid .project,
  .portfolio-grid .project-middle {
    grid-column: auto !important;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 25;
  }

  nav.active {
    max-height: 500px;
  }

  nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #444;
  }

  .header-inner {
    justify-content: space-between;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .intro {
    margin: 3rem auto;
    text-align: center;
  }

  .connect-btn {
    margin-top: 1.5rem;
  }
}

/* ===============================
   PROJECT FEATURE (SINGLE SOURCE)
================================ */

.project-feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
  z-index: 2;
}

.project-feature .feature-row {
  flex: 0 0 340px;
}

.project-feature .feature-row img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.project-feature .scroll-text {
  flex: 0 0 420px;
  max-width: 420px;
}

.project-feature .scroll-text p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.project-section.project-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem;
  margin-bottom: 0;
}

.project-feature .feature-row {
  width: 100%;
  max-width: 320px;
}

.project-feature .feature-row img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.project-feature .scroll-text {
  max-width: 520px;
  padding: 0 0.25rem;
  text-align: left;
}

.project-feature .scroll-text h2 {
  margin-bottom: 0.25rem;
}

.project-feature .scroll-text p {
  margin: 0;
}

.hp-header-section {
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.hp-header-section h2 {
  margin-bottom: 0.25rem;
}

.hp-header-section p {
  margin: 0;
}

@media (max-width: 768px) {
  .project-feature {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
  }

  .project-feature .feature-row img {
    max-width: 420px;
  }

  .project-feature .scroll-text {
    max-width: 520px;
  }

  .project-section.project-feature {
    padding-bottom: 0rem !important;
    margin-bottom: 0rem !important;
    margin-top: 0;
    padding-top: 0.5rem;
  }

  .project-feature .scroll-text {
    flex-basis: auto !important;
    padding-bottom: 1rem;
  }

  .project-title {
    margin-bottom: 0.25rem;
    padding-bottom: 0;
  }

  .hp-header-section {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* ---------- Image Group ---------- */
.image-group.even-spacing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.project-page h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-color);
}

.image-group.even-spacing img {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.image-group.even-spacing img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .image-group.even-spacing {
    justify-content: center;
    gap: 0.5rem;
  }

  .image-group.even-spacing img {
    flex: 1 1 calc(45% - 0.5rem);
    max-width: none;
    margin-bottom: 0.5rem;
  }
}

/* ---------- Pins Section ---------- */
.pins-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  padding: 0 10px;
  box-sizing: border-box;
}

.pins-section img {
  margin-right: 24px;
}

/* ---------- Full-width Imagery ---------- */
.project-imagery {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.imagery {
  width: 100%;
  display: block;
}

.imagery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 100vh;
}


/* -----------------------------------
        Apparel Feature Section 
-------------------------------------- */

.apparel-feature-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.apparel-feature-image {
  flex: 0 0 auto;
  max-width: 400px;
}

.apparel-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.apparel-feature-text {
  flex: 1;
}

@media (max-width: 768px) {
  .apparel-feature-section {
    flex-direction: column;
    text-align: center;
  }

  .apparel-feature-image {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}


/* ---------- Purple Box Section ---------- */
.purple-box-section {
  background-color: #422865;
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin: 0;
  box-sizing: border-box;
}

.purple-box-section img {
  width: 500px; /* adjust to taste */
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .purple-box-section {
    min-height: 400px;
    margin-top: 2rem !important;
    padding: 30px;
  }

  .purple-box-section img {
    max-height: 85%;
  }
}

/* ---------- Green Box Section ---------- */
.green-bg-section {
  background-color: #507a0d;
  width: 100%;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.green-bg-section img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .green-bg-section {
    margin-top: 1rem;
  }
}

/* ---------- Mardi Gras Mobile ---------- */
.mardigras-mobile-img {
  display: none !important;
}

@media (max-width: 768px) {
  .mardigras-mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
  }

  .gif-overlay-container .bg-image,
  .gif-overlay-container .football-image,
  .gif-overlay-container .logo-image {
    display: none;
  }
}

/* ---------- Jersey Animation ---------- */
.jersey-container {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.jersey-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.jersey-back {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 37.5%;
  height: auto;
  z-index: 2;
  transform: translate(-50%, -50%) translateX(-150%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.jersey-front {
  position: absolute;
  top: 50%;
  left: 58%;
  width: 37.5%;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%) translateX(150%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.jersey-container.animate .jersey-back {
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
}

.jersey-container.animate .jersey-front {
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .jersey-back {
    left: 45%;
    width: 52.5%;
  }

  .jersey-front {
    left: 62%;
    width: 52.5%;
  }
}

/* ---------- Hoodie Animation ---------- */
.hoodie-container {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.hoodie-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.hoodie-back {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 45%;
  height: auto;
  z-index: 2;
  transform: translate(-50%, -50%) translateX(150%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.hoodie-front {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 55%;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%) translateX(-150%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.hoodie-container.animate .hoodie-back {
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
}

.hoodie-container.animate .hoodie-front {
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .hoodie-back {
    left: 40%;
    width: 50%;
  }

  .hoodie-front {
    left: 65%;
    width: 50%;
  }
}

/* ---------- Color Swatches Section ---------- */
.color-swatches-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.color-swatches-section h2 {
  margin: 0 0 30px 0;
  font-size: 28px;
  text-align: center;
}

.swatches-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: nowrap;
}

.swatches-container img {
  width: 150px;
  height: auto;
  aspect-ratio: 300 / 345.73; /* add this */
  flex-shrink: 1;
  border: 2px solid #4d4d4f;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .color-swatches-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .swatches-container {
    gap: 20px;
  }

  .swatches-container img {
    width: auto;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .color-swatches-section {
    padding: 40px 20px;
  }

  .color-swatches-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .swatches-container {
    gap: 10px;
  }

  .swatches-container img {
    width: auto;
    max-width: none;
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .color-swatches-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .swatches-container {
    gap: 8px;
  }
}

/* ---------- Logo Comparison ---------- */
.logo-comparison-section {
  width: 100%;
  padding: 0;
}

.logo-comparison-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.logo-comparison-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .logo-comparison-container {
    grid-template-columns: 1fr;
  }

  .logo-comparison-container img {
    height: auto;
    object-fit: contain;
  }
}

/* ---------- Shirt Designs ---------- */
.shirt-designs {
  width: 100%;
  padding: 0px 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  max-width: 1400px;
}

.shirt-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shirt-default,
.shirt-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.shirt-default {
  opacity: 1;
  z-index: 1;
}

.shirt-hover {
  opacity: 0;
  z-index: 2;
}

.shirt-item:hover .shirt-default {
  opacity: 0;
}

.shirt-item:hover .shirt-hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .shirt-designs {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .shirt-designs {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 40px 20px;
  }

  .shirt-default,
  .shirt-hover {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .shirt-designs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Notebook Section ---------- */
.notebook-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.notebook-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.notebook-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.notebook-left,
.notebook-right {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.notebook-right {
  left: -5%;
  transition-delay: 0.1s;
}

.notebook-left.is-visible {
  opacity: 1;
  transform: translateY(-8px);
}

.notebook-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.notebook-text {
  position: relative;
  width: 35%;
  max-width: 350px;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
}

.notebook-text h2 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  color: #fff;
}

.notebook-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.notebook-mobile-img {
  display: none;
}

@media (max-width: 1024px) {
  .notebook-container {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 40px 20px;
  }

  .notebook-bg {
    display: none;
  }

  .notebook-left,
  .notebook-right {
    display: none;
  }

  .notebook-mobile-img {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px;
  }

  .notebook-text {
    width: 100%;
    max-width: none;
    padding: 20px;
  }

  .notebook-text h2,
  .notebook-text p {
    color: var(--text-color);
  }
}

@media (max-width: 768px) {
  .notebook-container {
    padding: 0 !important;
  }

  .notebook-mobile-img {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}

/* ---------- Contact Button & Modal ---------- */
.contact-btn-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #575757;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}

.contact-btn-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.contact-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

.contact-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.contact-modal-content {
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: var(--accent-color);
}

.contact-modal-content h2 {
  margin: 0 0 25px 0;
  font-size: 1.75rem;
  color: var(--text-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 78, 38, 0.3);
}

@media (max-width: 768px) {
  .contact-modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  .contact-btn-fixed {
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ===============================
        Instagram Grid
================================ */
.instagram-grid-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.instagram-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .instagram-grid-section {
    padding: 40px 20px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===============================
      Skateboard Feature Section
================================ */
.skateboard-feature-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.skateboard-feature-image {
  flex: 0 0 340px;
}

.skateboard-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .skateboard-feature-section {
    flex-direction: column;
    text-align: center;
  }

  .skateboard-feature-image {
    flex: 0 0 auto;
    width: 70%;
    max-width: 300px;
  }
}

/* ===============================
      Skateboard Section
================================ */
.skateboard-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.skateboard-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.skateboard-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 90%;
  max-width: 1400px;
  z-index: 1;
}

.skateboard-left {
  width: 30%;
  height: auto;
  object-fit: contain;
}

.skateboard-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.skateboard-middle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

.skateboard-right {
  width: 30%;
  height: auto;
  object-fit: contain;
}

.skateboard-grid img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.skateboard-grid img:hover {
  transform: scale(1.05);
}

.skateboard-left,
.skateboard-middle img,
.skateboard-right {
  border-radius: 12px !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .skateboard-left,
  .skateboard-middle,
  .skateboard-right {
    width: 32%;
  }

  .skateboard-grid {
    gap: 15px;
  }

  .skateboard-middle {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .skateboard-section {
    min-height: 1700px;
  }

  .skateboard-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  .skateboard-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .skateboard-left,
  .skateboard-right {
    width: 80%;
  }

  .skateboard-middle {
    width: 80%;
    flex-direction: column;
    gap: 20px;
  }

  .skateboard-middle img {
    width: 100%;
  }
}

/* ===============================
      Snowboard Section
================================ */
.snowboard-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.snowboard-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.snowboard-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 90%;
  max-width: 1400px;
  z-index: 1;
}

.snowboard-left {
  width: 30%;
  height: auto;
  object-fit: contain;
}

.snowboard-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.snowboard-middle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

.snowboard-right {
  width: 30%;
  height: auto;
  object-fit: contain;
}

.snowboard-grid img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.snowboard-grid img:hover {
  transform: scale(1.05);
}

.snowboard-left,
.snowboard-middle img,
.snowboard-right {
  border-radius: 12px !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .snowboard-left,
  .snowboard-middle,
  .snowboard-right {
    width: 32%;
  }

  .snowboard-grid {
    gap: 15px;
  }

  .snowboard-middle {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .snowboard-section {
    min-height: 1500px;
  }

  .snowboard-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  .snowboard-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }

  .snowboard-left,
  .snowboard-right {
    width: 80%;
  }

  .snowboard-middle {
    width: 80%;
    flex-direction: column;
    gap: 20px;
  }

  .snowboard-middle img {
    width: 100%;
  }
}

/* ===============================
          Pins Grid
================================ */
.pins-grid-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0 auto;
}

.pins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.pins-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.pins-grid img:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .pins-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 25px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .pins-grid-section {
    padding: 40px 20px;
  }

  .pins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .pins-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 300px;
  }
}


/* ===============================
      Handouts Page Text Sections
================================ */
.handouts-intro-text,
.handouts-whyjoin-text,
.handouts-thunderbolt-text,
.handouts-cisco-text {
  max-width: 520px;
  padding: 0 0.25rem;
  text-align: left;
}

.handouts-intro-text h2,
.handouts-whyjoin-text h2,
.handouts-thunderbolt-text h2,
.handouts-cisco-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.handouts-intro-text p,
.handouts-whyjoin-text p,
.handouts-thunderbolt-text p,
.handouts-cisco-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.handouts-whyjoin-text h2,
.handouts-whyjoin-text p {
  color: #ffffff;
}

@media (max-width: 768px) {
  .handouts-intro-text,
  .handouts-whyjoin-text,
  .handouts-thunderbolt-text,
  .handouts-azure-text,
  .handouts-cisco-text {
    max-width: 100%;
    text-align: center;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
  }

  .three-inline-container {
    padding: 10px 20px !important;
  }
}

@media (max-width: 768px) {
  .cisco-thunderbolt {
    padding: 40px 20px !important;
  }
}

.handouts-intel-text,
.handouts-azure-text {
  max-width: 680px;
  padding: 1rem 0.25rem 0;
  text-align: center;
  margin: 0 auto;
}

.handouts-intel-text h2,
.handouts-azure-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.handouts-intel-text p,
.handouts-azure-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .handouts-intel-text,
  .handouts-azure-text {
    max-width: 100%;
    text-align: center;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
  }
}

/* ===============================
          Patches Grid
================================ */
.patches-grid-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0 auto;
}

.patches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.patches-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .patches-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .patches-grid-section {
    padding: 40px 20px;
  }

  .patches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .patches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ===============================
      HP Signage Section
================================ */
.hp-signage-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1400px;
}

.signage-group {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  width: 100%;
}

.group-1,
.group-3 {
  transform: translateX(-100%);
}

.group-2,
.group-4 {
  transform: translateX(100%);
}

.signage-group.animate {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.hp-signage-section .signage-group img {
  position: absolute;
  width: 50%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hp-signage-section .signage-group .overlap-1 { transition-delay: 0s; }
.hp-signage-section .signage-group .overlap-2 { transition-delay: 0.5s; }
.hp-signage-section .signage-group .overlap-3 { transition-delay: 1s; }
.hp-signage-section .signage-group .overlap-4 { transition-delay: 1.5s; }

.hp-signage-section .signage-group.animate img {
  opacity: 1;
}

.hp-signage-section .group-1 img,
.hp-signage-section .group-3 img {
  transform: translateX(-50px);
}

.hp-signage-section .group-1.animate img,
.hp-signage-section .group-3.animate img {
  transform: translateX(0);
}

.hp-signage-section .group-2 img,
.hp-signage-section .group-4 img {
  transform: translateX(50px);
}

.hp-signage-section .group-2.animate img,
.hp-signage-section .group-4.animate img {
  transform: translateX(0);
}

.group-1 .overlap-1, .group-3 .overlap-1 { left: 10%; z-index: 1; }
.group-1 .overlap-2, .group-3 .overlap-2 { left: 22.5%; z-index: 2; }
.group-1 .overlap-3, .group-3 .overlap-3 { left: 35%; z-index: 3; }
.group-1 .overlap-4, .group-3 .overlap-4 { left: 47.5%; z-index: 4; }

.group-2 .overlap-1, .group-4 .overlap-1 { right: 47.5%; left: auto; z-index: 4; }
.group-2 .overlap-2, .group-4 .overlap-2 { right: 35%; left: auto; z-index: 3; }
.group-2 .overlap-3, .group-4 .overlap-3 { right: 22.5%; left: auto; z-index: 2; }
.group-2 .overlap-4, .group-4 .overlap-4 { right: 10%; left: auto; z-index: 1; }

.hp-signage-section .group-2 .overlap-4,
.hp-signage-section .group-4 .overlap-4 { transition-delay: 0s; }
.hp-signage-section .group-2 .overlap-3,
.hp-signage-section .group-4 .overlap-3 { transition-delay: 0.5s; }
.hp-signage-section .group-2 .overlap-2,
.hp-signage-section .group-4 .overlap-2 { transition-delay: 1s; }
.hp-signage-section .group-2 .overlap-1,
.hp-signage-section .group-4 .overlap-1 { transition-delay: 1.5s; }

@media (max-width: 1024px) {
  .hp-signage-section {
    gap: 60px;
    margin-top: 40px;
  }

  .signage-group {
    min-height: 300px;
  }

  .hp-signage-section .signage-group img {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .hp-signage-section {
    gap: 80px;
    padding: 40px 20px;
  }

  .signage-group {
    min-height: 250px;
    margin-bottom: 60px;
  }

  .hp-signage-section .signage-group img {
    width: 55%;
  }

  .group-1 .overlap-1, .group-2 .overlap-1,
  .group-3 .overlap-1, .group-4 .overlap-1 { left: 10%; z-index: 1; }
  .group-1 .overlap-2, .group-2 .overlap-2,
  .group-3 .overlap-2, .group-4 .overlap-2 { left: 20%; z-index: 2; }
  .group-1 .overlap-3, .group-2 .overlap-3,
  .group-3 .overlap-3, .group-4 .overlap-3 { left: 30%; z-index: 3; }
  .group-1 .overlap-4, .group-2 .overlap-4,
  .group-3 .overlap-4, .group-4 .overlap-4 { left: 40%; z-index: 4; }

  .group-1, .group-2, .group-3, .group-4 {
    transform: translateX(-100%);
  }
}

/* ===============================
      HP Swatches Section
================================ */
.hp-swatches-section {
  width: 100%;
  padding: 30px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  overflow: visible;
}

.hp-swatches-section h2 {
  margin: 0 0 30px 0;
  font-size: 28px;
  text-align: center;
}

.hp-swatches-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  flex-wrap: nowrap;
  overflow: visible;
  padding: 20px 0;
}

.hp-swatches-container img {
  width: auto;
  max-width: 10%;
  height: auto;
  flex-shrink: 1;
  min-width: 0;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hp-swatches-container img:hover {
  transform: scale(1.1);
  z-index: 10;
}

@media (max-width: 1024px) {
  .hp-swatches-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .hp-swatches-container {
    gap: 15px;
    padding: 15px 0;
  }

  .hp-swatches-container img {
    max-width: 10.5%;
  }
}

@media (max-width: 768px) {
  .hp-swatches-container {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .hp-swatches-container img {
    flex: 0 0 calc(20% - 10px);
    max-width: calc(20% - 10px);
  }
}

@media (max-width: 480px) {
  .hp-swatches-container {
    flex-wrap: wrap !important;
    gap: 8px;
  }

  .hp-swatches-container img {
    flex: 0 0 calc(20% - 8px);
    max-width: calc(20% - 8px);
  }
}

/* ===============================
      HP Header Section
================================ */
.hp-header-section {
  background-color: #04a1dd;
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

.hp-header-section h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.hp-header-section p {
  color: #fff;
  font-size: 1.0rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
}

@media (max-width: 1024px) {
  .hp-header-section {
    padding: 60px 30px;
    min-height: 350px;
  }

  .hp-header-section h2 {
    font-size: 1.5rem;
  }

  .hp-header-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hp-header-section {
    padding: 30px 20px;
    min-height: unset;
  }

  .hp-header-section h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .hp-header-section p {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ===============================
      HP Logo Section
================================ */
.hp-logo-section {
  background-color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hp-logo-section h2 {
  color: #4d4d4f;
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.hp-logo-section p {
  color: #4d4d4f;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
}

@media (max-width: 1024px) {
  .hp-logo-section {
    padding: 60px 30px;
    min-height: 600px;
  }

  .hp-logo-section h2 {
    font-size: 2rem;
  }

  .hp-logo-section p {
    font-size: 1.1rem;
  }
}

.hp-logo-imagery {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.hp-logo-imagery img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hp-logo-section {
    background-color: #fff;
    margin-top: 0;
    padding: 0;
  }

  .hp-logo-section h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .hp-logo-section p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hp-logo-imagery {
    padding: 0;
  }

  .hp-logo-imagery img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .hp-logo-section {
    min-height: unset !important;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hp-header-section {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* ===============================
      HP Description Sections
================================ */
.hp-color-desc,
.hp-logo-desc,
.hp-concept-desc,
.hp-signage-desc {
  background-color: #04a1dd;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hp-color-desc h2,
.hp-logo-desc h2,
.hp-concept-desc h2,
.hp-signage-desc h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 2px 0;
  font-weight: 700;
}

.hp-color-desc p,
.hp-logo-desc p,
.hp-concept-desc p,
.hp-signage-desc p {
  color: #fff;
  font-size: 1.0rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
}

.hp-color-desc { padding: 60px 40px; }
.hp-logo-desc { padding: 60px 40px; }
.hp-concept-desc { padding: 60px 40px; }
.hp-signage-desc { padding: 60px 40px; }

@media (max-width: 768px) {
  .hp-color-desc { padding: 30px 20px; }
  .hp-logo-desc { padding: 30px 20px; }
  .hp-concept-desc { padding: 30px 20px; }
  .hp-signage-desc { padding: 30px 20px; }
}
/* ===============================
      HP Final Section
================================ */
.hp-final-section {
  width: 100%;
  padding: 60px 40px;
  margin: 0 auto;
}

.hp-final-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.hp-final-grid img {
  grid-column: span 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hp-final-grid img:hover {
  transform: scale(1.02);
}

.hp-final-grid img:nth-child(7) {
  grid-column: 2 / 4;
}

.hp-final-grid img:nth-child(8) {
  grid-column: 4 / 6;
}

@media (max-width: 1024px) {
  .hp-final-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hp-final-grid img {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hp-final-section {
    padding: 40px 20px;
  }

  .hp-final-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hp-final-grid img {
    grid-column: span 1;
  }
}

/* ===============================
      HP Table Tent Section
================================ */
.hp-tabletent-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hp-banner-bg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.hp-banner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hp-banner-image {
  position: absolute;
  width: 50%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  z-index: 1;
  transform: translateX(-200%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.hp-tabletent-image {
  position: absolute;
  width: 18%;
  height: auto;
  max-height: 50%;
  object-fit: contain;
  left: 65%;
  z-index: 2;
  transform: translateY(200%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

.hp-banner-container.animate .hp-banner-image {
  transform: translateX(0);
  opacity: 1;
}

.hp-banner-container.animate .hp-tabletent-image {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .hp-banner-image {
    width: 55%;
  }

  .hp-tabletent-image {
    width: 21%;
    left: 45%;
  }
}

@media (max-width: 768px) {
  .hp-banner-container {
    width: 95%;
  }

  .hp-banner-image {
    width: 65%;
  }

  .hp-tabletent-image {
    width: 27%;
    left: 60%;
  }
}

/* ===============================
      Blue Box Section
================================ */
.blue-box-section {
  background-color: #04a1dd;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin: 0;
  box-sizing: border-box;
}

.blue-box-section img {
  max-height: 70%;
  max-width: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .blue-box-section {
    min-height: 350px;
    padding: 30px;
  }

  .blue-box-section img {
    max-height: 65%;
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .blue-box-section {
    min-height: 300px;
    padding: 20px;
  }

  .blue-box-section img {
    max-height: 60%;
    max-width: 80%;
  }
}

/* ===============================
      HP Shop Feature Section
================================ */
.hp-shop-feature-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hp-shop-feature-image {
  flex: 0 0 340px;
  max-width: 340px;
}

.hp-shop-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 470 / 514;
}

.hp-shop-feature-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.hp-shop-feature-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hp-shop-feature-text p {
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hp-shop-feature-section {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hp-shop-feature-image {
    flex: 0 0 auto !important;
    width: 60% !important;
    max-width: 240px !important;
    margin: 0 auto;
  }

  .hp-shop-feature-image img {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 470 / 514; 
  }

  .hp-shop-feature-text {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 1rem;
  }
}
/* ===============================
      Contact Page
================================ */
.contact-page {
  min-height: 70vh;
  padding: 4rem 0;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-content {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 0;
  }

  .contact-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-page-content {
    padding: 30px 20px;
    border-radius: 8px;
  }
}

/* ===============================
      Paddleboard Section
================================ */
.paddleboard-section {
  width: 100%;
  padding: 80px 40px;
  margin: 0 auto;
  background-color: var(--bg-color);
}

.paddleboard-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.paddleboard-image-left,
.paddleboard-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.paddleboard-image-left img,
.paddleboard-image-right img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.paddleboard-image-left img:hover,
.paddleboard-image-right img:hover {
  transform: scale(1.05);
}

.paddleboard-text {
  text-align: left;
  padding: 0 20px;
}

.paddleboard-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.paddleboard-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .paddleboard-container {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
  }

  .paddleboard-image-left img,
  .paddleboard-image-right img {
    max-width: 250px;
  }

  .paddleboard-text h2 {
    font-size: 1.5rem;
  }

  .paddleboard-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .paddleboard-section {
    padding: 60px 20px;
  }

  .paddleboard-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .paddleboard-image-left img,
  .paddleboard-image-right img {
    max-width: 80%;
  }

  .paddleboard-text {
    text-align: center;
    padding: 0;
  }

  .paddleboard-text h2 {
    font-size: 1.5rem;
  }

  .paddleboard-text p {
    font-size: 0.95rem;
  }
}

/* ===============================
      Three Column Section
================================ */
.three-column-section {
  width: 100%;
  padding: 80px 40px;
  margin: 0;
}

.three-column-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  min-height: 500px;
}

.column-left,
.column-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-left img,
.column-right img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.column-center {
  text-align: left;
  padding: 0 20px;
}

.column-center h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.column-center p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .three-column-section {
    padding: 0px 20px;
  }

  .three-column-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column-left img,
  .column-right img {
    max-width: 70%;
  }

  .column-center {
    text-align: center;
    padding: 0;
  }
}

/* ===============================
      HP Thunderbolt Section
================================ */
.hp-thunderbolt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
}

.thunderbolt-images {
  position: relative;
  flex: 0 0 340px;
  min-height: 450px;
}

.thunderbolt-back,
.thunderbolt-front {
  position: absolute;
  width: 80%;
  height: auto;
  opacity: 0;
  transform: translateY(200px);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

.thunderbolt-back {
  left: 0;
  top: 15%;
  z-index: 1;
  transition-delay: 0s;
}

.thunderbolt-front {
  left: 25%;
  top: 0;
  z-index: 2;
  transition-delay: 0.8s;
}

.thunderbolt-images.animate .thunderbolt-back,
.thunderbolt-images.animate .thunderbolt-front {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hp-thunderbolt {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0 !important;
    padding-bottom: 1rem;
  }

  .thunderbolt-images {
    flex: 0 0 auto;
    min-height: 350px;
  }

  .thunderbolt-back,
  .thunderbolt-front {
    width: 70%;
  }
}

/* ===============================
      HP Side by Side Section
================================ */
.hp-side-by-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
}

.hp-side-by-side .scroll-text {
  flex: 0 0 420px;
  max-width: 420px;
}

.hp-side-by-side .scroll-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hp-side-by-side .scroll-text p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.side-by-side-images {
  display: flex;
  gap: 20px;
  flex: 0 0 340px;
}

.side-by-side-images img {
  width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hp-side-by-side {
    flex-direction: column;
    text-align: center;
  }

  .hp-side-by-side .scroll-text {
    max-width: 520px;
  }

  .side-by-side-images {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .side-by-side-images img {
    width: 45%;
    max-width: 200px;
  }
}

/* ===============================
      Four Images Section
================================ */
.four-images-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.four-images-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.four-images-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .four-images-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .four-images-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===============================
      Three Inline Section
================================ */
.three-inline-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-inline-container {
  position: relative;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.three-inline-section .full-bg {
  width: 100%;
  height: auto;
  display: block;
}

.three-inline-container img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  justify-self: center;
}

.inline-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.inline-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}

.three-inline-section .mobile-swap {
  display: none;
}

@media (max-width: 768px) {
  .three-inline-container {
    flex-direction: column;
    gap: 30px;
    padding: 10px 60px;
  }

  .three-inline-container .hide-on-mobile {
    display: none !important;
  }

  .three-inline-section .mobile-swap {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }

  .three-inline-section .full-bg {
    display: none;
  }

  .inline-text h2,
  .inline-text p {
    color: var(--text-color);
  }
}

/* ===============================
      Azure Section
================================ */
.azure-section {
  position: relative;
  min-height: 300px;
}

.azure-section .full-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.eight-images-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
  padding: 20px;
  overflow: visible;
}

.eight-images-container img.fade-in-image {
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in;
  margin-left: -5%;
}

.eight-images-container img.fade-in-image:first-child {
  margin-left: 0;
}

.eight-images-container img.fade-in-image.visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .eight-images-container {
    flex-wrap: wrap;
  }

  .eight-images-container img.fade-in-image {
    flex: 0 0 calc(50% - 10px);
    margin-left: 0 !important;
  }
}

/* ===============================
      Intel Section
================================ */
.intel-section {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.intel-section .full-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.intel-grid-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  overflow: visible;
}

.intel-grid-image {
  width: 100%;
  height: auto;
  display: block;
}

.intel-grid-container img:nth-child(2) { transform: scale(1.15); }
.intel-grid-container img:nth-child(3) { transform: scale(0.85); }
.intel-grid-container img:nth-child(4) { transform: scale(1.15); }

@media (max-width: 480px) {
  .intel-grid-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
      Cisco Thunderbolt
================================ */
.cisco-thunderbolt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  box-sizing: border-box;
}

.cisco-thunderbolt .scroll-text {
  flex: 1 1 33%;
  max-width: 33%;
}

.cisco-thunderbolt .cisco-images {
  flex: 2 1 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.cisco-thunderbolt .cisco-images img {
  width: 50%;
  max-width: 50%;
  height: auto;
  flex-shrink: 1;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cisco-thunderbolt {
    flex-direction: column;
  }

  .cisco-thunderbolt .scroll-text,
  .cisco-thunderbolt .cisco-images {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cisco-thunderbolt .cisco-images {
    flex-direction: column;
  }

  .cisco-thunderbolt .cisco-images img {
    width: 100%;
  }
}

/* ===============================
      Social Section
================================ */
.social-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  box-sizing: border-box;
}

.social-text {
  flex: 1 1 35%;
  max-width: 35%;
}

.social-images {
  flex: 1 1 65%;
  max-width: 65%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.social-images img {
  flex: 1 1 0;
  min-width: 0;
  width: 25%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .social-section {
    flex-direction: column;
  }

  .social-text,
  .social-images {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .social-images {
    flex-wrap: wrap;
  }

  .social-images img {
    width: calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
  }
}

/* ===============================
      Coins Grid Section
================================ */
.coins-grid-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  overflow: hidden;
}

.coins-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coins-grid img:nth-child(1) {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
  transform: translateX(-150px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  margin-right: -15%;
}

.coins-grid img:nth-child(2) {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 3;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  bottom: 15px;
}

.coins-grid img:nth-child(2).visible {
  transform: translateY(-15px);
  opacity: 1;
}

.coins-grid img:nth-child(3) {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
  transform: translateX(150px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  margin-left: -15%;
}

.coins-grid img:nth-child(1).visible,
.coins-grid img:nth-child(3).visible {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .coins-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .coins-grid img:nth-child(1),
  .coins-grid img:nth-child(2),
  .coins-grid img:nth-child(3) {
    width: 70%;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ===============================
      Poker Grid Section
================================ */
.poker-grid-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.poker-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.poker-grid img {
  flex: 0 0 auto;
  width: 200px;
  max-width: 200px;
  height: auto;
  position: relative;
  transform: translateX(-200px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.poker-grid img:nth-child(1) { z-index: 1; }
.poker-grid img:nth-child(2) { z-index: 2; margin-left: -65px; }
.poker-grid img:nth-child(3) { z-index: 3; margin-left: -65px; }
.poker-grid img:nth-child(4) { z-index: 4; margin-left: -65px; }

.poker-grid img.visible {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .poker-grid img {
    width: 160px;
    max-width: 140px;
    margin-left: -30px;
  }

  .poker-grid img:nth-child(1) {
    margin-left: 0;
  }
}

/* ===============================
      Patriot Section
================================ */
.patriot-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.patriot-image {
  flex: 0 0 340px;
}

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

@media (max-width: 768px) {
  .patriot-section {
    flex-direction: column;
    text-align: center;
  }

  .patriot-image {
    flex: 0 0 auto;
    width: 70%;
    max-width: 300px;
  }
}

/* ===============================
      About Section
================================ */
.about-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 0 40px;
  box-sizing: border-box;
  gap: 40px;
}

.about-text {
  flex: 1 1 50%;
  max-width: 50%;
  align-self: center;
}

.about-text h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-text p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

.about-image {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
  margin-bottom: -70px;
}

.about-section .about-image .chris-portrait {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(200px);
  opacity: 0;
  transition: none;
}

.about-section .about-image .chris-portrait.ready {
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

.about-section .about-image .chris-portrait.visible {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
    align-self: auto;
  }

  .about-image {
    justify-content: center;
  }

  .about-section .about-image .chris-portrait {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .about-section {
    min-height: auto;
  }

  .about-section .about-image .chris-portrait {
    max-width: 90%;
  }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
}

/* ===============================
      Project End Navigation
================================ */
.project-end-nav {
  width: 100%;
  background-color: #333;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.project-end-prev,
.project-end-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
  text-decoration: none;
  color: #fff;
  flex: 1;
  transition: background-color 0.2s ease;
  gap: 6px;
}

.project-end-prev:hover,
.project-end-next:hover {
  background-color: var(--accent-color);
}

.project-end-prev {
  text-align: left;
}

.project-end-next {
  text-align: right;
}

.project-end-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  text-decoration: none;
  color: #fff;
  gap: 6px;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.2s ease;
}

.project-end-home:hover {
  background-color: var(--accent-color);
}

.project-end-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
}

.project-end-name {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Merriweather', serif;
}

@media (max-width: 768px) {
  .project-end-prev,
  .project-end-next {
    padding: 20px;
  }

  .project-end-home {
    padding: 20px;
  }

  .project-end-name {
    font-size: 0.85rem;
  }
}

main.container {
  min-height: 100vh;
}

/* ---------- Footer ---------- */
footer.container {
  padding: 2rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  color: #fff !important;
  background-color: #4d4d4f !important;
}

footer.container span {
  color: #fff !important;
}

footer.container a {
  text-decoration: none !important;
  color: #fff !important;
}

footer.container img {
  display: inline !important;
  border: 0 !important;
}

@media (max-width: 768px) {
  .project-section.hp-thunderbolt {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .thunderbolt-images {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .thunderbolt-images img {
    position: static;
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

.mardigras-mobile-img {
  display: none !important;
}

@media (max-width: 768px) {
  .mardigras-mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
  }
}