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

body {
  background: #fff;
  color: #111;
  font-family: "Baskerville", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

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

/* ================================
   VARIABLES
================================ */
:root {
  --bg: #ffffff;
  --text: #111;
  --black: #111;
  --white: #fff;
  --accent: #CCCC33; /* green accent for site */
  --accent-retro: #00A0FF; /* blue accent for retro site */
  --muted: #666;
}

/* ================================
   FONTS
================================ */
@font-face {
  font-family: "FuturaPTBold";
  src: url("../font/FuturaPTBold/font.woff2") format("woff2"),
       url("../font/FuturaPTBold/font.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ================================
   HEADER
================================ */
.retro-page .intro-h1 {
    font-family: "FuturaPTBold", sans-serif;
    font-size: 96px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.site-header {
  width: 100%;
  background: var(--white);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title a {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 20px;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-family: "FuturaPTBold", sans-serif;
}

.site-nav a {
  font-size: 20px;
  transition: color 0.2s ease;
}

/* ================================
   HOVER COLORS — GREEN ACCENT
================================= */

/* Navigation links */
.site-nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Site title hover */
.site-title a:hover {
  color: var(--accent);
}

/* Work items hover */
.work-item:hover .work-logo {
  background-color: var(--accent);
  transform: translateY(-4px);
}

.work-item:hover .work-name {
  color: var(--accent);
}

/* Footer links hover */
.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer big text hover */
.footer-content-left h1:hover {
  color: var(--accent);
}

/* Back to Top button hover */
#back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--black);
}

/* ================================
   BACK TO TOP
================================= */
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: block; 
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "FuturaPTBold", sans-serif;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#back-to-top.show {
  opacity: 1;
}

/* ================================
   HERO
================================ */
.hero {
  display: flex;
  justify-content: flex-start;
  padding: 120px 0 0px 0;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1.hero-h1 {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 96px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content p.hero-subheading {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--text);
}

.hero-content .cta-button {
  padding: 12px 30px;
  font-family: "FuturaPTBold", sans-serif;
  font-size: 18px;
  background-color: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
  background-color: var(--accent); /* green */
  color: #111; /* black text */
  transform: translateY(-3px);
}

.hero-content img.hero-image {
  width: 100%;
  max-width: 820px;
  margin-top: 40px;
  display: block;
  border-radius: 4px;
}

/* ================================
   FEATURED WORK / THUMBNAILS
================================= */
.featured-work {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px ;
}

.featured-work-title {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
	margin-top: 60px;
  text-align: left;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-logo {
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.work-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.work-name {
  margin-top: 12px;
  font-family: "FuturaPTBold", sans-serif;
  font-size: 18px;
  color: var(--text);
  transition: color 0.3s ease;
}

/* Mini Testimonials Section */
.home-testimonials {
  max-width: 1200px;
  margin: 80px auto 80px;
  padding: 0 20px;
}

.testimonial-title {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: left;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonial {
  background: #f9f9f9;
  padding: 24px 32px;
  border-radius: 8px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-family: "FuturaPTBold", sans-serif;
  color: #555;
}

/* Mini Testimonials Section */
.home-testimonials {
  max-width: 1200px;
  margin: 0px auto 80px;
  padding: 0 20px;
}

.testimonial-title {
  font-family: "FuturaPTBold", sans-serif;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: left;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonial {
  background: #f9f9f9;
  padding: 24px 32px;
  border-radius: 8px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-family: "FuturaPTBold", sans-serif;
  color: #555;
}

/* ================================
   COLUMNS GRID
================================ */
.columns-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 24px;
  margin-bottom: 48px;
}

.columns-grid .column p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.columns-grid .column:first-child {
  white-space: nowrap;
}


/* Initial state — hidden and slightly down */
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state — visible and in place */
.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  font-family: "FuturaPTBold", sans-serif;
  padding: 120px 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-columns,
.footer-columns-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 24px;
}

.footer-col {
  font-size: 18px;
}

.footer-content-left h1 {
  font-size: 120px;
  padding: 100px 0 50px;
  cursor: pointer;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-image {
  width: 50%;
  max-width: 520px;
  margin: 0 0 120px 0;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.9s;
}

/* ================================
   RESPONSIVE VIDEO
================================ */
.intro-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  object-fit: contain;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .columns-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1.hero-h1 { font-size: 60px; }
  .hero-content p.hero-subheading { font-size: 20px; }
  .hero-content p.hero-quote { font-size: 28px; }
  .hero-content img.hero-image { max-width: 90%; margin-bottom: 5rem; }
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .columns-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1.hero-h1 { font-size: 42px; }
  .hero-content p.hero-subheading { font-size: 18px; }
  .hero-content .cta-button { font-size: 16px; padding: 10px 24px; }
  .hero-content img.hero-image { max-width: 100%; margin-bottom: 4rem; }
  .footer-content-left h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .columns-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1.hero-h1 { font-size: 42px; }
  .hero-content p.hero-subheading { font-size: 18px; }
  .hero-content .cta-button { font-size: 16px; padding: 10px 24px; }
  .hero-content img.hero-image { max-width: 100%; margin-bottom: 4rem; }
  .footer-content-left h1 { font-size: 48px; }

@media (max-width: 768px) {
  /* STACK NAV FOR MOBILE */
  .site-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
  }

	
	@media (max-width: 768px) {
  /* STACK FOOTER BOTTOM BUTTONS ON MOBILE */
  .footer-columns-bottom {
    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 16px; /* space between buttons */
  }
}
	
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* HERO / CASE STUDY IMAGES */
  .intro-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem auto;
  }
}
	
	.footer-buttons {
  display: flex;
  flex-direction: column; /* stacks children vertically */
  gap: 16px; /* optional spacing between buttons */
}

	/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}
