@font-face {
  src: url(../Spoof-Regular.woff);
  font-family: 'spoof';
}

body {
  margin: 0;
  /* font-family: 'Helvetica Neue', sans-serif; */
  font-family: 'spoof', Arial, Helvetica, sans-serif;
  background-color: #0c0c0c;
  color: #f0f0f0;
  scroll-behavior: smooth;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: 3rem 0;
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.logo a {
  color: white;
  text-decoration: none;
}

.logo a:hover {
  color: #007aff;
  transform: scale(1.1);
  transition: transform 300ms ease-in;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #007aff;
}

.contact-btn {
    cursor: pointer;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #007aff;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 5px;
    color: white;
}

.contact-btn:hover {
  background-color: #007aff;
  border: 2px solid #007aff;
  color: white;
}

.slogan-section h1 {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* CAROUSEL WRAPPER */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

/* Fade overlays */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #0c0c0c 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #0c0c0c 0%, transparent 100%);
}

.carousel {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: scroll;
  animation-duration: 30s;
  will-change: transform;
}

.left-carousel {
  animation-direction: normal;
}

.right-carousel {
  animation-direction: reverse;
}

/* Each carousel item width fixed */
.carousel img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #2c2c2c;
  padding: 0.5rem;
  flex-shrink: 0;
}

/* Add margin between the two rows in works carousel */
.work-carousel-wrapper .carousel {
  margin-bottom: 1.5rem;
}

/* Pause animation on hover */
/* .carousel:hover {
  animation-play-state: paused;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 3 - 1rem * 3)); /* 3 items width + gaps */
  }
}

.process-boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-box {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 12px;
  width: 250px;
  text-align: left;
}

.process-box .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.left-box, .right-box {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.left-box h2 {
  margin-top: 0;
}

.cta-btn {
  cursor: pointer;
  padding: 10px 20px;
  background-color: #0f62fe;
  border: 2px solid #007aff;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 5px;
  color: white;

  /* margin-top: 1rem;
  background: #0f62fe;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer; */
}

.cta-btn a {
    text-decoration: none;
    color: white;
}

.bar, .faq-item {
  background-color: #2c2c2c;
  margin-bottom: 1rem;
  padding: 0rem 1.5rem;
  border-radius: 8px;
  text-align: left;
}

.bar-header, .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.bar-content, .faq-answer {
  /* display: none; */
  padding-bottom: 0.5rem;
  color: #ccc;
  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: 0;
}

.bar-content.active, .faq-answer.active {
  max-height: 500px; /* or dynamically from JS */
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  transform-origin: center;
  line-height: 1;
}

.toggle-icon.rotated {
  transform: rotate(45deg);
}

.selected-work-section .work-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.work-card {
  flex: 1 1 calc(50% - 2rem);
  text-decoration: none;
  color: inherit;
  max-width: 600px;
  transition: transform 0.3s ease;
  min-width: 300px;
}

.work-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.image-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.work-info {
  padding: 0.5rem 0;
  text-align: left;
}

.work-info h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  opacity: 0;
  margin-left: 0.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
}

.work-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.labels {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.5rem;
}

.label {
  font-size: 0.8rem;
  background: #2c2c2c;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  color: #ccc;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
}

#testimonials {
  padding: 4rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  box-sizing: border-box;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 1rem;
  margin: 0 1rem;
  width: 60%;
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-index {
  min-width: 96%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

.testimonial-quote {
  margin-top: 1rem;
  font-style: italic;
  color: #ccc;
  line-height: 1.6;
}

.carousel-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-indicators button {
  width: 10px;
  height: 12px;
  background-color: #666;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicators button.active {
  background-color: #fff;
}

.footer {
  background-color: #111;
  color: #bbb;
  padding: 3rem 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.footer-links {
  display: flex;
  gap: 6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-column a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #666;
}


/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

.material-symbols-outlined {
  /* font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40, */
  padding: 0;
  margin-top: 1rem;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  /* backdrop-filter: blur(12px); */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}
.contact-overlay.active {
  display: flex;
}

.overlay-content {
  max-width: 400px;
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  color: #111;
}

.overlay-content h2 {
  margin-top: 0;
  font-weight: 600;
  font-size: 2rem;
}

.overlay-content p {
  margin: 1rem 0;
  color: #333;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-links a {
  text-decoration: none;
  font-weight: 600;
  color: #0071e3;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-links a:hover,
.contact-links a:focus {
  border-bottom-color: #0071e3;
  outline: none;
}

.close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
  outline: none;
}


.header-work {
display: flex;
flex-direction: column;
gap: 1rem;
}

.header-img {
  width: 100%;
  border-radius: 1rem;
}

.text {
  margin: 0;
}

.work-info {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.work-info img {
  width: 60%;
}

.work-info-text {
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: left;
}

.work-info-text h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.work-info-text p,
.work-info-text ul li {
color: lightgray;
}

.split-section-about {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  background-color: #1e1e1e; /* dark grey - close to Apple's dark backgrounds */
  color: #f2f2f7; /* light text on dark bg */
  gap: 4rem;
  border-radius: 1rem;
}

ul li {
  padding: .1rem;
}

.testimonial-img {
  height: 50px;
  width: auto;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    right: 0;
    background-color: #1a1a1a;
    height: calc(100% - 60px);
    width: 250px;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.7);
  }

  nav ul.active {
    transform: translateX(0);
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .carousel-slide {
    min-width: 93%;
  }

    .work-info-text,
    .work-info img {
    width: 100%;
    }

    .split-section-about {
      flex-direction: column;
      padding: 2rem;
      gap: 2rem;
    }
    .footer-links {
      gap: 2rem;
    }

    .header-img {
      border-radius: .5rem;
    }
}

/* Show contact button on bigger screens */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}



