/*
Theme Name: Masscult 2025 Theme
Theme URI: https://masscult.co
Author: Masscult    
Author URI: https://masscult.co
Description: Get Shit Done.
Version: 1.01
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: masscult-theme
*/

:root {
  /* Footer spacing & sizing vars */
  --footer-logo-social-gap: 1.5rem;
  --footer-social-icon-gap: 1rem;
  --footer-socials-bottom-gap: 2rem;
  --footer-legal-gap: 1.5rem;
  --footer-legal-item-gap: 1rem;
  --footer-legal-size: 0.75rem;
}

h1 {
    font-family: 'TitlingGothicFBNo', sans-serif;  /* Ensure this matches your @font-face name */
    font-weight: 700;   /* Use the weight that corresponds to your desired heavy version */
    font-size: 7.5rem;  /* Adjust the size as needed */
    line-height: 1.2;
    margin-bottom: 20px;
}

body {
    background-color: black; /* Replace with your desired color */
    color: #fff; /* Ensure text is readable on a dark background */
    font-family: 'TitlingGothicFBNo', sans-serif; /* Use your custom font with a fallback */
    font-weight: 400; /* Adjust the weight as needed */
    font-size: 1rem; /* Set a base font size */
    line-height: 1.6; /* Improve readability with proper line spacing */
    margin: 0;
    padding-top: 60px; /* Adjust this value to match the height of the header */
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
  min-height: 100%;
}
  
  body {
    margin: 0;
    padding: 0;
    position: relative;
  }
  
.brand-purple {
  color: #9863EF;
}

.brand-neon-green {
  color: #D1FD38; 
}

.footer-social-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-social-links li a img {
    max-width: 40px;
    transition: filter 0.3s ease;
}

.footer-social-links li a:hover img {
    filter: brightness(0.8); /* Example hover effect */
}


@font-face {
    font-family: 'TitlingGothicFBNo';
    src: url('assets/fonts/TitlingGothicFBNor-Reg.woff2') format('woff2'),
         url('assets/fonts/TitlingGothicFBNor-Reg.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TitlingGothicFBNo';
    src: url('assets/fonts/TitlingGothicFBNor-Stand.woff2') format('woff2'),
         url('assets/fonts/TitlingGothicFBNor-Stand.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TitlingGothicFBNo';
    src: url('assets/fonts/TitlingGothicFBNor-Med.woff2') format('woff2'),
         url('assets/fonts/TitlingGothicFBNor-Med.woff') format('woff');
    font-weight: 500;
    font-style: normal; /* Fixed invalid value */
}

/* GLOBAL RESET */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
  min-height: 100%;
}


/* ========================================
LANDING / MARQUEE
========================================*/
.landing-wrapper {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden
}

/* VIDEO CONTAINER */
.landing-marquee {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  top: 0;
}


/* NATIVE VIDEO */
.landing-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* YOUTUBE EMBED */
.youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.youtube-embed {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  object-fit: cover;
}

/* ========================================
NAVIGATION
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
  padding: 1rem;
  background: transparent;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: top 0.6s ease, opacity 0.4s ease; /* Add opacity and make top transition slightly slower */
}

.site-header .main-nav {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.site-header .main-nav.nav-hidden {
  opacity: 0;
  pointer-events: none;
}

/* NAV LOGO & LINKS */
.site-header .logo {
  font-size: 1.25rem;
  font-weight: bold;
}

.site-header .main-nav {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
/* ========================================
ABOUT BLOCK 
======================================== */

/* Ensure the block name (H1) appears in all uppercase */
.block-name {
    text-transform: uppercase; /* Make the title uppercase */
    font-size: 7.15rem; /* Adjust the size of the title for responsiveness */
    font-family: 'TitlingGothicFBNo', sans-serif; /* Use your custom font */
    color: #D1FD38; /* Title color */
    margin-top: 5rem;
    margin-bottom: -2rem;
    text-align: center; /* Center-align the title */
}

.container {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;  /* ensure any child text is centered */
}

/* Paragraph styling within the About block */
.block-copy {
    font-size: 2.5rem; /* Adjust the size of the block copy for responsiveness */
    font-family: 'TitlingGothicFBNo', sans-serif; /* Use your custom font */
    color: #ffffff; /* Set a different color for the content */
    line-height: 1.8; /* Adjust line spacing for readability */
    margin-top: 0;
    margin-bottom: 0;
    padding: 0; /* Add horizontal padding for better readability */
    text-align: center; /* Center-align the content */
}

/* ========================================
Vibe Block #1 Styles
======================================== */

.vibe-block {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--background-color, #000);
}

.vibe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vibe-block video.vibe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

.vibe-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vibe-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-color, #D1FD38);
  padding: 0 20px;
}

.vibe-content h1,
.vibe-content h2 {
  margin: 0;
  font-weight: 700; /* Same weight for both headlines */
  text-transform: uppercase;
  font-size: clamp(24px, 6vw, 64px); /* Same size for both headlines */
  line-height: 1.5;
}
/* CTA Button */
.vibe-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: var(--button-bg-color, #D1FD38); /* Default button background color */
  color: var(--button-text-color, #000); /* Default button text color */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none; /* Removed the border */
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vibe-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backface-visibility: hidden; /* Prevent GPU rendering artifacts */
  background-color: var(--button-hover-bg-color, #FF007F); /* Brand pink on hover */
  color: var(--button-hover-text-color, #FFF); /* White text on hover */
}

.vibe-cta-button:focus {
  outline: 2px solid var(--primary-color, #D1FD38);
  outline-offset: 4px;
}

/* ========================================
Services Block Wrapper 
======================================== */
.services-block {
  background-color: #000;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1.25rem 2rem; /* top: 5rem, bottom: 2rem to match .block-name margin-bottom */
  box-sizing: border-box;
}

  
/* Services Block Title (h1) */
.services-block h1 {
    text-transform: uppercase;
    font-family: 'TitlingGothicFBNo', sans-serif;
    color: #D1FD38;
    font-size: 7.15rem;
    text-align: center;
    margin: 0 0 2rem;
}
  
/* Container to cap width at 1600px */
.services-container {
    max-width: 1600px;
    width: 100%;             /* Take full available width up to 1600px */
    margin: 0 auto;
}
  
/* Grid for 3 columns x 3 rows on desktop */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-bottom: 2rem;
}
  
/* Title styling */
.service-title {
    font-size: 1.25rem;  /* Adjust as needed */
    margin: 0;
    text-transform: lowercase; /* Force text to be lowercase */
    font-family: 'TitlingGothicFBNo', sans-serif; /* Use your custom font */
    color: #ffffff; /* White text color */
    text-align: center; /* Center-align the title */
}

/* Individual service item */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;       /* Center icon/title horizontally */
    text-align: center;
    background-color: transparent;    /* Slightly lighter black background for each item */
    padding: 20px;
    border-radius: 4px;        /* Rounded corners */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    background-color: transparent; /* Slightly lighter background */
}
  
/* Icon styling */
.service-icon img {
    display: block;
    width: 66px;   /* Lock the width */
    height: 66px;  /* Lock the height */
    margin-bottom: 10px;
}
  
/* Title styling */
.service-title {
    font-size: 1.25rem;  /* Adjust as needed */
    margin: 0;
}

/* ========================================
Vibe Block 2 Styles
======================================== */

.vibe-block,
.vibe-block-2 {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--background-color, #000); /* Fallback color */
}

.vibe-background,
.vibe-background-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--background-color, #000); /* Fallback color */
}

.vibe-background video,
.vibe-background img,
.vibe-background-2 video,
.vibe-background-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vibe-block-2 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.vibe-block-2 video.vibe-background-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

.vibe-background-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vibe-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-color, #D1FD38);
  padding: 0 20px;
}

.vibe-content h1,
.vibe-content h2 {
  margin: 0;
  font-weight: 700; /* Same weight for both headlines */
  text-transform: uppercase;
  font-size: clamp(24px, 6vw, 64px); /* Same size for both headlines */
  line-height: 1.5;
}
/* Responsive Typography */
.vibe-content h1 {
  margin-bottom: 20px; /* Adjust spacing below Headline 1 */
}

.vibe-content h2 {
  margin-top: 10px; /* Adjust spacing above Headline 2 */
}

/* CTA Button */
.vibe-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: var(--button-bg-color, #D1FD38); /* Default button background color */
  color: var(--button-text-color, #000); /* Default button text color */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vibe-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  background-color: var(--button-hover-bg-color, #FF007F);
  color: var(--button-hover-text-color, #FFF);
}

.vibe-cta-button:focus {
  outline: 2px solid var(--primary-color, #D1FD38);
  outline-offset: 4px;
}

/* ===============================
   Projects / Clients Section
================================= */

.projects-block {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  left: 0;
  overflow: hidden;
  background: #000;
  padding: 5rem 0;
  box-sizing: border-box;
}

.projects-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.projects-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.section-title {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 7.15rem);
  color: #D1FD38;
  text-align: center;
  margin: 0 0 2rem;
}

.projects-row {
  width: 100%;
  position: relative;
  margin: clamp(60px, 10vw, 80px) 0;
}

.marquee-wrapper {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.projects-marquee {
  display: flex;
  width: 200vw;
  min-width: 200vw;
  will-change: transform;
  transform: translateX(0);
}

.row-2 .marquee-wrapper,
.row-2 .projects-marquee {
  display: flex;
  justify-content: flex-end;
}

.project-item {
  flex: 0 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.project-icon {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  display: block;
}

/* Kill any inherited animations/transforms */
.projects-block,
.projects-container,
.projects-row {
  overflow: hidden;
  transform: none !important;
  animation: none !important;
  will-change: auto;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* ========================================
Contact
======================================== */
.contact-us-section {
  position: relative;
  width: 100%;        /* Full browser width */
  height: 500px;
  margin-left: calc(-50vw + 50%);
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-us-video,
.contact-us-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contact-us-content {
  position: relative;
  z-index: 2;
  color: #D1FD38;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us-button {
  margin-top: 24px;
  padding: 16px 40px;
  background-color: #D2FD37;
  color: black;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form Container (Animated) */
.contact-form-container {
  position: relative;
  overflow: visible;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  background: #000;
  padding: 60px 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  z-index: 5;
}

.contact-form-container .form-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}


.contact-form-container.is-hidden {
  display: none;
}

.contact-form-container.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  animation: slideInUp 0.4s ease forwards;
}

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

html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

/* Collapsed Toggle Button (yellow-green) */
.contact-us-button {
  margin-top: 24px;
  padding: 16px 40px;
  background-color: #D2FD37;
  color: black;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: lowercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* Contact Form Close Button */
.contact-form-close {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 9999;
  background-color: #D1FD38;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: none; /* hidden until JS toggles .show */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-close.show {
  display: flex;
}

.contact-form-close:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-form-close:focus {
  outline: 2px solid #9863EF;
  outline-offset: 4px;
}

/* Gravity Forms Input Fields */
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="url"],
body .gform_wrapper textarea {
  width: 100%;
  padding: 30px 24px;
  border: 2px solid white;
  border-radius: 15px;
  background-color: #000;
  color: #9863EF;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 32px;
  box-sizing: border-box;
  text-transform: lowercase;
}

/* Specific to textarea */
body .gform_wrapper textarea {
  resize: vertical;
  min-height: 188px;
}
/* Gravity Forms Labels */
body .gform_wrapper .gfield_label {
  color: #9863EF !important;
  font-family: 'TitlingGothicFBNo', sans-serif !important;
  font-size: 2rem !important;
  text-transform: lowercase !important;
  margin-bottom: 8px;
  display: block;
}

/* Textarea Specific Overrides */
body .gform_wrapper textarea {
  resize: vertical;
  min-height: 188px;
}

/*  Focus + Hover State */
body .gform_wrapper input[type="text"]:focus,
body .gform_wrapper input[type="text"]:hover,
body .gform_wrapper input[type="email"]:focus,
body .gform_wrapper input[type="email"]:hover,
body .gform_wrapper input[type="tel"]:focus,
body .gform_wrapper input[type="tel"]:hover,
body .gform_wrapper input[type="url"]:focus,
body .gform_wrapper input[type="url"]:hover,
body .gform_wrapper textarea:focus,
body .gform_wrapper textarea:hover {
  outline: none;
  border-color: #D1FD38;
  background-color: #000;
  color: #9863EF;
}

/* Gravity Forms Dropdown Styling */
body .gform_wrapper select {
  width: 100%;
  padding: 24px;
  background-color: #000;
  color: #9863EF;
  border: 2px solid white;
  border-radius: 15px;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 32px;
  text-transform: lowercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%239863EF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

body .gform_wrapper select {
  all: unset;
  display: block;
}

body .gform_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #000;
  color: #9863EF;
  border: 2px solid white;
  border-radius: 15px;
  padding: 24px;
  width: 100%;
  max-width: 1280px;
  margin-bottom: 32px;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: lowercase;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%239863EF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  box-sizing: border-box;
}

/* Focus + Hover */
body .gform_wrapper select:hover,
body .gform_wrapper select:focus {
  border-color: #D1FD38;
  color: #D1FD38;
  -webkit-text-fill-color: #D1FD38;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23D1FD38' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  border-color: #D1FD38;
  background-color: #000;
  color: #9863EF;
}


/* Required Field Asterisk Styling */
body .gform_wrapper .gfield_label .gfield_required {
  color: white !important;           
  font-size: .75rem !important;      
  vertical-align: top !important;     
  line-height: 1 !important;          
  padding-left: 2px;                  
}

/* Hide Required Field Note Legend  */
body .gform_wrapper .gform_required_legend,
body .gform_wrapper .gfield_required_legend,
body .gform_required_legend {
  display: none !important;
}

/* Gravity Form Submit Button (purple) */
body .gform_wrapper .gform_footer,
body .gform_wrapper .gform_page_footer {
  display: flex;
  justify-content: center;
}

body .gform_wrapper .gform_footer,
body .gform_wrapper .gform_page_footer {
  text-align: center;
}

body .gform_wrapper .gform_footer input[type="submit"].gform_button,
body .gform_wrapper .gform_page_footer input[type="submit"].gform_button {
  background-color: #9863EF !important;
  color: black !important;
  font-family: 'TitlingGothicFBNo', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  padding: 16px 40px !important;
  border: none !important;
  border-radius: 8px !important;
  text-transform: lowercase !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body .gform_wrapper .gform_footer input[type="submit"]:hover,
body .gform_wrapper .gform_page_footer input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Gravity Forms Validation Errors */

/* Top-level validation box override */
body .gform_wrapper .gform_validation_errors {
  background-color: #000 !important;
  color: red !important;
  font-family: 'TitlingGothicFBNo', sans-serif !important;
  font-size: 1.25rem !important;
  border: 2px solid red !important;
  border-radius: 8px !important;
  padding: 20px !important;
  margin-bottom: 30px !important;
  text-align: center !important;
  box-shadow: none !important;
}

/* Prevent double border on children */
body .gform_wrapper .gform_validation_errors * {
  outline: none !important;
  box-shadow: none !important;
}

/* Custom focus ring */
body .gform_wrapper .gform_validation_errors:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(209, 253, 56, 0.5);
  border: 2px solid red !important;
}

/* Inline field-level error messages */
body .gform_wrapper .gfield_validation_message {
  color:red;
  font-family: 'TitlingGothicFBNo', sans-serif;
  font-size: 0.875rem;
  margin-top: 8px;
}

/* Highlight fields with errors */
body .gform_wrapper .gfield.gfield_error input,
body .gform_wrapper .gfield.gfield_error textarea,
body .gform_wrapper .gfield.gfield_error select {
  border-color: #C02C0B;
}

/* Contact Form Close Button */
.form-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #9863EF;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease, transform 0.2s ease;
}

.form-close:hover,
.form-close:focus {
  color: #D1FD38; /* Neon green on hover */
  transform: scale(1.1);
  outline: none;
}


/* ========================================
FOOTER
 ======================================== */

:root {
  --footer-bg-color: #000;
  --footer-text-color: #d1fd38;
  --footer-link-hover-color: #fff;
  --footer-meta-color: #ccc;
}

.site-footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 40px 20px;
  font-size: clamp(14px, 1.5vw, 16px);
  text-transform: lowercase;
}

.site-footer a {
  color: var(--footer-text-color);
  text-decoration: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  width: 100%;
  text-align: center;
}

/* Address */
.footer-address {
  margin-bottom: 5px;
  line-height: 1.4;
}

/* Social Icons */
.footer-socials {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-socials img {
  width: 30px;
  height: 30px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Logo */
.footer-logo {
  max-width: 262px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Nav Links */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align right */
  gap: 0; /* Remove default spacing */
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0 0 4px 0; /* Same visual rhythm as footer-address */
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--footer-link-hover-color);
  text-decoration: underline;
}

/* Meta Text */
.footer-meta {
  margin-top: 0px; /* tighter spacing */
  font-size: 0.875rem;
  color: var(--footer-text-color); /* match footer links */
  line-height: 1.4;
}

.footer-meta-sub {
  display: block;
  font-size: 0.875rem;
  color: var(--footer-text-color); /* match footer links */
  margin-top: 0; /* remove extra spacing */
  text-transform: lowercase;
}

/* === Desktop Layout === */
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 33.333%;
    text-align: left;
  }

  .footer-center {
    text-align: center;
  }

  .footer-right {
    text-align: right;
  }
}

/* ====================
   MOBILE STYLES
   ==================== */

   /* === Navigation - Mobile === */

   .site-header {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  background: #000 !important;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  /* remove any slide‐up transition */
  transition: none !important;
}

.site-header .site-navigation,
.site-header .site-navigation .menu-primary {
  display: flex !important;
  flex-flow: row nowrap !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .site-navigation .menu-primary li {
  white-space: nowrap !important;
}

.site-navigation a {
  font-family: 'TitlingGothicFBNo', sans-serif !important;
  font-weight: 400 !important;
  /* Never smaller than 1rem, scale with viewport up to 1.5rem */
  font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
  color: #D1FD38 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: block !important;
  padding: 10px 0 !important;
  white-space: nowrap !important;
}

.site-navigation a:hover {
  color: #EC42AC !important;
}
   
/* Landing Marquee - Mobile */
@media (max-width: 768px) {
  .landing-wrapper,
  .landing-marquee,
  .landing-video,
  .youtube-container,
  .youtube-embed {
    height: 100vh;
    width: 100%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}
/* === About - Mobile === */

@media (max-width: 768px) {
  /* 1) Section padding remains as before */
  .about-block {
    padding: 3rem 1rem;
        box-sizing: border-box;
  }

  /* 2) Fluidly scale & center the title only */
  .about-block .block-name {
    display: block;                 /* ensure full-width */
    width: 100%;
    font-size: clamp(3rem, 8vw, 7.15rem) !important;
    margin: 0 0 1.5rem !important;
    text-align: center !important;
  }

  /* 3) Copy scales responsively but keeps its own alignment */
    .about-block .block-copy {
    font-size: clamp(1rem, 4vw, 2.5rem) !important;
    max-width: 32rem !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    line-height: 1.6;
  }

/* === Vibe Block 1 - Mobile === */
@media (max-width: 768px) {
  .vibe-content h1,
  .vibe-content h2 {
    font-size: 36px; 
  }
}

.vibe-content h1 {
  margin-bottom: 20px; 
}

.vibe-content h2 {
  margin-top: 10px;
}
  .vibe-block {
    min-height: 400px;
  }

  .vibe-content h1 {
    font-size: clamp(20px, 8vw, 40px);
  }

  .vibe-content h2 {
    font-size: clamp(16px, 6vw, 32px);
  }

/* === Services - Default (desktop): 3 columns === */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Tablet (<=1024px & >768px): keep 3 columns */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Mobile (<=768px): switch to 2 columns */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Scale the section title fluidly between 3rem and 7.15rem */
  .services-block h1 {
    font-size: clamp(3rem, 10vw, 7.15rem) !important;
    margin-bottom: 1.5rem !important;
  }

  /* Scale each service item’s title between 1rem and 1.25rem */
  .service-title {
    font-size: clamp(1rem, 3vw, 1.25rem) !important;
  }
}

/* Optional: further adjust on very small screens */
@media (max-width: 480px) {
  .services-grid {
    gap: 16px !important;
  }
  .services-block h1 {
    /* prevent bleeding off-screen if needed */
    font-size: clamp(2.5rem, 12vw, 7.15rem) !important;
  }
  .service-title {
    font-size: clamp(0.9rem, 4vw, 1.25rem) !important;
  }
}

@media (max-width: 768px) {
  /* When there’s an odd number of items, center the last one */
  .services-grid > .service-item:last-child {
    grid-column: 1 / -1;      /* span both columns */
    justify-self: center;     /* center itself in that span */
  }
}

@media (max-width: 768px) {
  .services-block {
    padding-bottom: 0rem !important;
  }
}

/* === Vibe Block #2 - Mobile === */

@media (max-width: 768px) {
  .vibe-content h1,
  .vibe-content h2 {
    font-size: 35px; /* or whatever you want */
  }
}

/* === Projects (“Trusted By”) Section – Mobile Tweaks === */

@media (max-width: 768px) {
  .projects-block {
    padding: 3rem 1rem;
  }

  .projects-container {
    padding: 0;
  }

  .section-title {
    display: block;
    width: 100%;
    font-size: clamp(3rem, 8vw, 7.15rem);
    margin: 0 0 1.5rem;
    text-align: center;
  }

 .projects-row {
  margin: clamp(40px, 6vw, 80px) 0;
}

  .project-item {
  padding: 0 0.5rem; /* consistent horizontal space between logos */
}

  .project-icon {
    height: 45px;
    width: auto;
  }

  .marquee-wrapper {
    overflow: hidden;
  }

  .projects-marquee {
  display: flex;
  width: 200vw;            /* always exactly 2× the viewport width */
  min-width: 200vw;            /* always exactly 2× the viewport width */
  will-change: transform;
  transform: translateX(0);
}

  .projects-marquee .project-item {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  /* 1) Even smaller vertical spacing between rows */
  .projects-row {
    margin: 40px 0 !important;
  }

  /* 3) Remove padding & fallback margin */
  .projects-marquee .project-item {
    padding: 0 0.5rem !important;
    margin: 0 !important;
  }

  /* 4) Scale logos down for small screens */
  .project-icon {
    height: 32px !important;
    width: auto !important;
  }

  .project-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  display: block;
}


  /* 5) Slightly smaller section title if needed */
  .section-title {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
  }
}


/* === Hit Us Up - Mobile === */

.contact-us-section {
  position: relative;
  width: 100%;                     /* fill viewport without 100vw overflow */
  margin-left: calc(-50vw + 50%);  /* full-bleed trick */
  padding: 2rem 1rem;           /* match vibe blocks */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: auto !important;
  overflow: hidden;
}

/* Fluid, centered “HIT US UP” title */
.contact-us-content h1 {
  font-size: clamp(3rem, 8vw, 7.15rem);
  margin: 0 0 2rem;
  line-height: 1.1;
  color: #D1FD38;
}

/* Ensure the Let’s Go button is visible and tappable */
  .contact-us-button {
    margin-top: 1rem !important;
  }
}

/* === Gravity Forms - Mobile Layout & Sizing === */

@media (max-width: 768px) {
  /* 1) Make the contact-form container match other blocks */
  .contact-form-container {
    padding: 2rem 1rem !important;
    box-sizing: border-box;
  }

  /* 2) Force the GF wrapper to fill its parent */
  .contact-form-container .gform_wrapper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important; 
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  /* 3) Tighter grouping between fields */
  .gform_wrapper .gfield {
    margin-bottom: -2rem !important;
  }

  /* 4) Responsive labels */
  .gform_wrapper .gfield_label {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;   
    margin-bottom: 0.5rem !important;
  }

  /* 5) Fluid input, textarea & select sizing */
  .gform_wrapper input[type="text"],
  .gform_wrapper input[type="email"],
  .gform_wrapper input[type="tel"],
  .gform_wrapper input[type="url"],
  .gform_wrapper textarea,
  .gform_wrapper select {
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
    padding: 1rem !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  /* 6) Ensure the close-button sits at the top-right */
  .contact-form-close {
    top: 15px !important;
    right: 25px !important;
  }
}

/* === Footer – Mobile Layout & Ordering (≤768px) === */
@media (max-width: 768px) {
  /* 1) Flatten the three wrapper divs */
  .footer-left,
  .footer-center,
  .footer-right {
    display: contents !important;
  }

  /* 2) Vertical stack */
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  /* 3) Explicit order */
  .footer-logo     { order: 1; }
  .footer-socials  { order: 2; }
  .footer-address  { order: 3; }
  .footer-links    { order: 4; }
  .footer-meta     { order: 5; }
  .footer-meta-sub { order: 6; }

  /* 4) Logo → Socials spacing & centering */
    .footer-socials {
    display: flex !important;
    justify-content: center !important;
    gap: var(--footer-social-icon-gap) !important;
    margin-top: var(--footer-logo-social-gap) !important;
    margin-bottom: var(--footer-socials-bottom-gap) !important;
    width: 100% !important;
  } 

  /* 5) Center address */
  .footer-address {
    width: 100% !important;
    text-align: center !important;
  }

  /* 6) Privacy & Terms row */
  .footer-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: var(--footer-legal-item-gap) !important;
    margin-top: var(--footer-legal-gap) !important;
    width: 100% !important;
  }

  .footer-links li a {
    font-size: var(--footer-legal-size) !important;
    text-align: center !important;
  }

  /* 7) Copyright lines */
  .footer-meta,
  .footer-meta-sub {
    width: 100% !important;
    text-align: center !important;
    font-size: var(--footer-legal-size) !important;
    margin: 0;
  }
}

/* === Footer – Very Small Mobile Stack (≤360px) === */
@media (max-width: 360px) {
  .footer-links {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .footer-links li a {
    font-size: calc(var(--footer-legal-size) - 0.125rem) !important;
  }
}

   /* === Chrome iOS Landscape Overflow Fix === */

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media screen and (max-width: 1024px) {
  .vibe-block,
  .vibe-block-2,
  .projects-block,
  .services-block,
  .marquee-wrapper,
  .contact-us-section {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .vibe-block,
  .vibe-block-2,
  .projects-block,
  .services-block,
  .contact-us-section,
  .marquee-wrapper {
    width: 100% !important;
    margin-left: 0 !important;
    overflow-x: hidden !important;
  }

  .projects-marquee {
    width: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .projects-block,
  .vibe-block,
  .vibe-block-2,
  .services-block,
  .contact-us-section {
    width: 100% !important;
    margin-left: 0 !important;
    overflow-x: hidden !important;
  }

  .projects-marquee {
    width: 200vw !important;
    min-width: 200vw !important;
  }

  .marquee-wrapper {
    overflow: hidden !important;
    width: 100% !important;
  }
}

