/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --dark:          #111A19;
  --dark-green:    #284239;
  --sage:          #809076;
  --sand:          #A99170;
  --light-sand:    #c7b18f;
  --light:         #EAECE9;

  --bg-dark:       #111A19;
  --bg-section:    #111A19;
  --bg-card:       #284239;
  --accent:        #A99170;
  --accent-hover:  #c0a882;
  --text-primary:  #EAECE9;
  --text-muted:    #809076;
  --border:        #284239;

  --font-heading:  'Protest Guerrilla', cursive;
  --font-body:     'Inter', sans-serif;
}

/* ─── Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  margin: 0;
}

h1 {
  font-family: var(--font-heading);
}

h2 {
  font-family: var(--font-heading);
  font-size: 35px;
}

h4 {
  font-size: 20px;
  font-weight: 900;
}

h5 {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.section-subhead-sand {
  color: var(--sand);
}

.section-subhead-sage {
  color: var(--sage);
}

p { 
  color: var(--light);
  font-size: 15px;
}


a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ════════════════════════════════════════════════════
   ACCENT BUTTON
════════════════════════════════════════════════════ */
.btn-accent {
  background: transparent;
  border: none;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  padding: 12px 28px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
  isolation: isolate;
}

.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sand);
  clip-path: polygon(0% 0%, calc(100% - 15px) 0%, 100% 15px, 100% 100%, 15px 100%, 0% calc(100% - 15px));
  z-index: -1;
  transition: background 0.2s;
}

.btn-accent::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--dark);
  clip-path: polygon(0% 0%, calc(100% - 15px) 0%, 100% 15px, 100% 100%, 15px 100%, 0% calc(100% - 15px));
  z-index: -1;
  mix-blend-mode: destination-out;
  transition: opacity 0.2s;
}

.btn-accent:hover { color: var(--dark); }
.btn-accent:hover::after { opacity: 0; }

.btn-accent-2 { color: var(--dark); }
.btn-accent-2::before { background: var(--sage); }
.btn-accent-2::after { opacity: 0; }
.btn-accent-2:hover { color: var(--light); }
.btn-accent-2:hover::before { background: var(--dark-green); }

.btn-accent-3 { color: var(--dark); }
.btn-accent-3::before { background: var(--sand); }
.btn-accent-3::after { opacity: 0; }
.btn-accent-3:hover::before { background: var(--light-sand); }

/* Sage filled → sage outline on hover */
.btn-accent-4 { color: var(--dark); }
.btn-accent-4::before { background: var(--sage); }
.btn-accent-4::after { opacity: 0; }
.btn-accent-4:hover { color: var(--sage); }
.btn-accent-4:hover::after { opacity: 1; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.gvfx-nav {
  background: rgba(17, 26, 25, 0.40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 14px 0;
}

.gvfx-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--sage) !important;
  letter-spacing: 0.04em;
  padding: 6px 14px !important;
  transition: color 0.2s;
}
.gvfx-nav .nav-link:hover,
.gvfx-nav .nav-link.active { color: var(--light) !important; }

.gvfx-nav .navbar-toggler:focus,
.gvfx-nav .navbar-toggler:active { outline: none; box-shadow: none; }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

#vimeohero {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

#vimeohero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 26, 25, 0.2) 0%,
    rgba(17, 26, 25, 0.65) 100%
  );
  z-index: 1;
}

iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-title {
  font-size: 4.1rem;
  padding-bottom: 0;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 7px;

}

/* ════════════════════════════════════════════════════
   GVFX INTRO
════════════════════════════════════════════════════ */
.strike-section {
  background: var(--bg-section);
  padding: 90px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.5);
}

.about-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--text-muted);
  font-size: 48px;
}

.about-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════
   WHY GUERRILLA
════════════════════════════════════════════════════ */
.why-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../images/GVFX-Logo-Icon-Dark-Cutout.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92%;
  pointer-events: none;
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  border-radius: 4px;
  padding: 36px 28px;
  height: 100%;
  text-align: left;
  transition: border-color 0.25s;
}

.feature-icon {
  font-size: 35px;
  color: var(--light);
  margin-bottom: 16px;
  display: block;
}

/* ════════════════════════════════════════════════════
   RECENT WORK
════════════════════════════════════════════════════ */
.work-section {
  background: var(--bg-section);
  padding: 90px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 1);
}

.work-section h2 {
  margin-bottom: 50px;
}

.work-card-cta {
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.work-cta-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
}

.work-cta-label i {
  font-size: 30px;
  line-height: 3px;
  transition: transform 0.2s ease;
  transform-origin: bottom center;
}

.work-card-cta:hover .work-cta-text {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.work-card {
  overflow: hidden;
}

.work-poster {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.work-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card-body {
  padding: 10px 4px;
}

/* Carousel */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 3rem;
}

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-track .work-card {
  flex: 0 0 calc(25% - 15px);
}

.carousel-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 52px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.carousel-btn:hover { transform: scale(1.2); }

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
.testimonials-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-image: url('../images/dog-tag-shape.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 5% 10% 5% 15%;
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: relative;
  text-align: left;
}

.testimonial-card h4 {
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 100;
  line-height: 18px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--light);
  font-weight: 300;
  text-align: right;
}

.testimonial-author strong {
  color: var(--light);
  display: block;
  font-weight: 600;
  font-size: 16px;
}

/* ════════════════════════════════════════════════════
   CLIENTS
════════════════════════════════════════════════════ */
.clients-section {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 1);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.client-logo img {
  max-width: 70%;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.client-logo:hover img {
  transform: scale(1.08);
}


/* ════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--dark-green);
  padding: 52px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.gvfx-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}

.footer-brand-logo {
  display: block;
  max-width: 250px;
  height: auto;
}

.footer-copyright {
  font-size: 12px;
  color: var(--light);
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 5px; }

.footer-links a {
  font-family: var(--font-heading);
  color: var(--sage);
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--light); }

.footer-contact-item {
  font-size: 13.5px;
  color: var(--light);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-item i { color: var(--light); margin-top: 3px; flex-shrink: 0; }

.social-links { display: flex; gap: 14px; margin-top: 6px; }
.social-links a {
  font-size: 16px;
  color: var(--light);
}

/* ─── Media Queries ─────────────────────────────── */
@media (max-width: 1199px) {
  .testimonial-card {
    padding: 5% 8% 5% 12%;
    min-height: 0;
  }
  .testimonial-card p { margin-bottom: 0; }
}

@media (max-width: 991px) {
  .gvfx-nav .navbar-nav {
    text-align: right;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .testimonial-card {
    padding: 5% 15% 5% 20%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; padding-bottom: 60px; }
  .strike-section, .why-section, .work-section,
  .clients-section, .testimonials-section { padding: 64px 0; }

  .feature-card { padding: 16px 28px; }

  .testimonial-card {
    padding: 5% 10% 5% 13%;
  }
}