@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Megrim&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* ===================================================================================
    GENERAL
   =================================================================================== */

:root {
  --text: #F1F1F1;
  --accent: #CC0B0D;
  --bg-color: #111111;
  --text-light: #BABABA;
  --card-bg: #1A1A1A;
  --grid-color: rgba(255, 255, 255, 0.05);
  --glow-color: rgba(204, 11, 13, 0.6);
  --title-font: 'Montserrat', sans-serif;
  --text-font: 'Inter', sans-serif;
  --footer-font : 'Lato', sans-serif;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
}

html {
  line-height: 1.165 !important;
}



body {
  height: 100vh;
  width: 100vw;
  position: relative;
  font-size: 1.2em;
  font-family: var(--text-font);
  background-color: var(--bg-color);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
.subhead,
.tagline {
  font-family: var(--title-font);
  text-align: center;
}

@media (min-width: 768px) {

  h1,
  h2,
  .tagline {
    text-align: left;
  }
}

h1 {  
    text-transform: uppercase;
}

h2 {  
  display: inline-block;
}


h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  text-align: left;
}

h2 .accent,
.subhead .accent,
h3 .accent,
.tagline .accent {
  color: var(--accent);
}

h2,
.subhead {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  Letter-spacing: -0.025em;
  margin: 2rem 0 4rem;
  position: relative;
}

h2::after {
  display: none;
}

@media (min-width: 768px) {
  h2::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 0.125rem;
  }
}

.subhead {
  text-align: left;
}

h3,
.tagline {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h2 span,
.subhead span,
h3 span,
.tagline span {
  color: var(--accent);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

:where(h1){ font-size: 2rem; margin-block: .67em; }
:where(h2){ font-size: 1.5rem; margin-block: .75em; }
:where(h3){ font-size: 1.25rem; margin-block: .8em; }
:where(h4){ font-size: 1.125rem; margin-block: .85em; }
:where(h5){ font-size: 1rem; margin-block: .9em; }
:where(h6){ font-size: .875rem; margin-block: 1em; }

p {
  font-family: var(--text-font);
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin: 0 auto;
}

footer {
  font-family: var(--footer-font);
}

.accent {
  color: var(--accent);
}

.svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =================================================== 
    CUSTOM CURSOR
   =================================================== */

.custom-cursor {
  position: fixed;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

@media (min-width: 1200px) {
  .custom-cursor,
  .cursor-follower {
    display: block;
  }
}


/* =================================================== 
    BOUTONS
   =================================================== */

.cta-section {
  padding-bottom: 10rem;
}

.cta-buttons {
  margin: 4rem 0 2rem;
}

.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 30rem;
  margin: 10rem auto 2rem;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .cta-section .cta-buttons {

    max-width: 60rem !important;
    flex-direction: row;
    max-width: none;
  }
}

.cta-section .cta-buttons>* {
  text-align: center;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 1024px) {
  .cta-section .cta-buttons>* {
    flex: 1 1 0;
  }

}

.btn {
  font-family: var(--title-font);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* align-items:flex; */
  align-items: center;
  /* margin-right: 1rem; */
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .btn {
    padding: 1rem 2rem;
  }
}

@media (min-width: 640px) {
  .btn {
    font-size: 1.25rem;
  }
}

.btn svg {
  margin-left: 0.75rem;
  width: 18px;
  height: 18px;
}


/* BTN PRIMARY */

.btn-primary {
  background-color: var(--accent);
  color: var(--text);
  border: none;
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  /* point de départ hors du bouton */
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after {
  animation: shineVertical 0.6s ease-in 0.4s forwards;
}

@keyframes shineVertical {
  0% {
    left: -40%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


/* BTN SECONDARY */

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 2px solid rgba(240, 240, 240, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  z-index: -1;
}

.btn-secondary:hover {
  border-color: rgba(240, 240, 240, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 240, 240, 0.1);
}


/* BTN TERTIARY */

.btn-tertiary {
  background-color: var(--accent);
  color: var(--text);
  border: 1px solid var(--accent);
}

.btn-tertiary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  /* point de départ hors du bouton */
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
}

.btn-tertiary:hover {
  background-color: transparent;
  transform: translateY(-2px);
  border-color: var(--text);
  box-shadow: 10px 10px 20px -10px rgba(255, 255, 255, 0.15);
}

.btn-tertiary:hover::after {
  animation: shineVertical 0.6s ease-in 0.4s forwards;
}

@keyframes shineVertical {
  0% {
    left: -40%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


/* BTN QUATERNARY */

.btn-quaternary {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  font-family: var(--title-font);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 1rem;
  /* Push to bottom of flex container */
}

.btn-quaternary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-quaternary:hover {
  color: var(--text);
}

.btn-quaternary:hover::before {
  left: 0;
}



/* ===========================================================
REVEAL
==============================================================*/

[class*="reveal-"] {
  opacity: 0;
  transform: translateY(50px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0px);
  transition: 1s cubic-bezier(.5, 0, 0, 1);
}

.reveal-1 {
  transition-delay: .04s;
}

.reveal-2 {
  transition-delay: .08s;
}

.reveal-3 {
  transition-delay: .12s;
}

.reveal-4 {
  transition-delay: .16s;
}

.reveal-5 {
  transition-delay: .2s;
}

.reveal-6 {
  transition-delay: .24s;
}

.reveal-7 {
  transition-delay: .28s;
}

.reveal-8 {
  transition-delay: .32s;
}

.reveal-9 {
  transition-delay: .36s;
}

.reveal-10 {
  transition-delay: .4s;
}

.reveal-11 {
  transition-delay: .44s;
}

.reveal-12 {
  transition-delay: .48s;
}

.reveal-13 {
  transition-delay: .52s;
}

/* ===================================================================
    HEADER
   =================================================================== */

#header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(to bottom, #000000, transparent);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-bottom: 1px solid var(--accent);
}



/* Logo */

.logo-name .logo-title,
.logo-www {
  font-size: 26px;
  font-family: Megrim;
}

.logo-name {
  position: relative;
  width: 12vw;
  height: 30px;
}

.logo-name .logo-title {
  position: absolute;
  top: 0;
  left: 0;
}

.logo-www {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wB,
.logo-w0,
.logo-wA {
  position: absolute;
  margin-bottom: -25px;
}

.logo-wB {
  transform: rotate(120deg);
  transform-origin: center -1px;
}

.logo-wA {
  transform: rotate(-120deg);
  transform-origin: center -1px;
}

/* Hamburger */

.nav-toggler {
  position: relative;
  z-index: 100;
  width: 12vw;
  height: 35px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.line {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  right: 0;
  background: var(--text);
  pointer-events: none;
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}



.l1,
.l2,
.l3 {
  transition: transform 0.3s ease-in-out;
}

.l1 {
  transform: translateY(-10px);
}

.l3 {
  transform: translateY(10px);
}

.nav-toggler.active .l1 {
  transform: translate(0) rotate(135deg);
}

.nav-toggler.active .l2 {
  width: 650%;
  transform: translate(-150vw);
}

.nav-toggler.active .l3 {
  transform: translate(0) rotate(-135deg);
}

/* Menu */

.nav-primary {
  position: fixed;
  z-index: 98;
  width: 100vw;
  min-height: 100vh;
  right: -100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--title-font);
  background-color: var(--bg-color);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.73, 0.11, 0.67, 0.84);
}

.nav-primary.active {
  transform: translate(-100%);
}

.nav-primary .background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.nav-primary .animated-square {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 0.25rem;
  opacity: 0.15;
  animation: moveAndRotate var(--duration) linear infinite;
}

@keyframes moveAndRotate {
  0% {
    transform: translate(var(--x), var(--y)) rotate(0deg);
  }

  25% {
    transform: translate(var(--x2), var(--y)) rotate(90deg);
  }

  50% {
    transform: translate(var(--x2), var(--y2)) rotate(180deg);
  }

  75% {
    transform: translate(var(--x), var(--y2)) rotate(270deg);
  }

  100% {
    transform: translate(var(--x), var(--y)) rotate(360deg);
  }
}

.nav-primary .menu-overlay {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.nav-primary .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.nav-primary .menu-container {
  padding: 5vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.nav-primary .menu-items {
  list-style: none;
  margin-bottom: 5vh;
}

.nav-primary .menu-item {
  margin-bottom: 2vh;
  transform: translateX(-20px);
  opacity: 0;
  animation: fadeInRight 0.5s ease forwards;
}

.nav-primary .menu-item:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-primary .menu-item:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-primary .menu-item:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-primary .menu-item:nth-child(4) {
  animation-delay: 0.4s;
}

.nav-primary .menu-item:nth-child(5) {
  animation-delay: 0.5s;
}

.nav-primary .menu-item:nth-child(6) {
  animation-delay: 0.6s;
}

.nav-primary .menu-item:nth-child(7) {
  animation-delay: 0.7s;
}

.nav-primary .menu-link {
  color: var(--text);
  text-decoration: none;
  font-size: 4vh;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-primary .menu-link:hover {
  color: var(--accent);
}

.nav-primary .menu-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-primary .menu-link:hover::after {
  width: 100%;
}

.nav-primary .menu-link.hovered::after {
  animation: lineDisappear 0.3s ease forwards;
}

@keyframes lineDisappear {
  0% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

.nav-primary .separator {
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  opacity: 0.3;
  margin: 3vh 0;
  position: relative;
  overflow: hidden;
}

.nav-primary .separator::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 50%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(204, 11, 13, 1), transparent);
  animation: scanHorizontal 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(204, 11, 13, 0.8);
}

@keyframes scanHorizontal {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

.nav-primary .cta-container {
  margin-top: 2vh;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 0.8s;
}

.nav-primary .cta-button {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
  padding: 0.5rem 3rem;
  font-size: 2vh;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  outline: none;
  margin-top: 10px;
  z-index: 1;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  line-height: 1.4;
}

.nav-primary .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-primary .cta-button:hover::before {
  left: 0;
}

.nav-primary .cta-button.exit::before {
  left: 0;
  animation: exitRight 0.3s ease forwards;
}

@keyframes exitRight {
  0% {
    left: 0;
    width: 100%;
  }

  100% {
    left: 100%;
    width: 0;
  }
}

.nav-primary .cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.02),
      transparent);
  animation: slowReflect 4.5s ease-in-out infinite;
}

@keyframes slowReflect {

  0%,
  70% {
    left: -120%;
  }

  85%,
  100% {
    left: 100%;
  }
}

.nav-primary .social-icons {
  position: absolute;
  bottom: 5vh;
  right: 8vw;
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 1s;
}

.nav-primary .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(204, 11, 13, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-primary .social-icon:hover {
  transform: translateY(-5px);
  background-color: rgba(204, 11, 13, 0.2);
}

.nav-primary .social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.nav-primary .logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: Megrim;
  white-space: nowrap;
}

.nav-primary .nav-www {
  transform: translateY(10%);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;

}

.nav-primary .nav-wA,
.nav-primary .nav-w0,
.nav-primary .nav-wB {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  padding: 0.25vw;
  z-index: 5;
}

.nav-primary .nav-wB {
  transform: translateX(-50%) translateY(-50%) rotate(120deg);
  transform-origin: center 1px;
}

.nav-primary .nav-wA {
  transform: translateX(-50%) translateY(-50%) rotate(-120deg);
  transform-origin: center 1px;
}

.nav-red-line-logo {
  position: absolute;
  width: 23.5%;
  height: 2px;
  border-bottom: 2px solid var(--accent);
  z-index: 1;
}

.nav-red-line1 {
  transform: translateX(0) translateY(-11.85vw);
}

.nav-red-line2 {
  transform: translateX(3.1vw) translateY(-6.6vw) rotate(120deg);
}

.nav-red-line3 {
  transform: translateX(-3.1vw) translateY(-6.6vw) rotate(-120deg);
}

.nav-primary .mobile-logo {
  display: none;
}

.nav-primary .vertical-separator {
  position: absolute;
  left: 50%;
  top: 10%;
  height: 80%;
  width: 2px;
  background-color: var(--accent);
  opacity: 0.3;
  z-index: 1;
  display: none;
  overflow: hidden;
}

.nav-primary .vertical-separator::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: scanVertical 4s ease-in-out infinite;
}

@keyframes scanVertical {

  0%,
  20% {
    top: -30%;
  }

  80%,
  100% {
    top: 100%;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
    RESPONSIVE
   ========================================================================== */


@media (min-width: 992px) {
  .nav-primary .menu-overlay {
    flex-direction: row;
  }

  .nav-primary .logo-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-primary .logo {
    font-size: 14vw;
  }

  .nav-primary .desktop-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .nav-primary .mobile-logo {
    display: none;
  }

  .nav-primary .content-wrapper {
    width: 50%;
  }

  .nav-primary .menu-container {
    padding: 0 8vw;
  }

  .nav-primary .vertical-separator {
    display: block;
  }
}

@media (max-width: 991px) {
  .nav-primary .menu-overlay {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .nav-primary .desktop-logo {
    display: none;
  }

  .nav-primary .mobile-logo {
    display: block;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    font-size: 20vw;
    transform: translate(-50%, -65%);
    z-index: 0;
  }

  .nav-primary .nav-wA,
  .nav-primary .nav-w0,
  .nav-primary .nav-wB {
    opacity: 0.01;
  }

  .nav-red-line-logo {
    position: absolute;
    width: 20.5%;
    height: 2px;
    border-bottom: 2px solid var(--accent);
    opacity: 0.1;
    z-index: 1;
  }

  .nav-red-line1 {
    transform: translateX(0) translateY(-16.85vw);
  }

  .nav-red-line2 {
    transform: translateX(4.4vw) translateY(-9.25vw) rotate(120deg);
  }

  .nav-red-line3 {
    transform: translateX(-4.4vw) translateY(-9.25vw) rotate(-120deg);
  }

  nav .vertical-separator {
    display: none;
  }

  nav .menu-items {
    text-align: center;
  }

  nav .cta-container {
    display: flex;
    justify-content: center;
  }

  nav .social-icons {
    position: relative;
    right: 0;
    margin: 2rem auto;
  }
}


/* ============================================================================
    MAIN
   ============================================================================ */

main {
  width: 100vw;
  position: relative;
}

body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
  padding: 0 1rem 4rem;
  max-width: 1200px;
  margin: 0 auto;

  /* padding: 1rem; */
}

.tech-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 11, 13, 0.5), transparent);
  width: 8rem;
  margin: 0 auto 2rem;
}

.section-header {
  margin-bottom: 4rem;
}


.description {
  position: relative;
  font-size: 1.125rem;
  color: var(--text);
  margin: 0 auto;
}

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

footer {
  background: linear-gradient(to bottom, #050505, var(--bg-color));
  border-top: 1px solid var(--accent);
  color: var(--text);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer .container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1400px) {
  footer .container {
    max-width: 1800px;
  }
}

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

@media (min-width: 640px) {
  footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  footer .grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

footer .first-column {
  margin-right: 0;
}

@media (min-width: 1194px) {
  footer .first-column {
    margin-right: 5vw;
  }
}

footer .logo {
  font-family: 'Megrim', cursive;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

footer .description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

footer .social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(204, 11, 13, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .social-icon:hover {
  background-color: rgba(204, 11, 13, 0.3);
  transform: translateY(-5px);
}

footer .social-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

footer .heading {
  font-family: var(--title-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer .heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

footer .links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .links li {
  margin-bottom: 0.75rem;
}

footer .links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

footer .links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

footer .links a:hover::after {
  width: 100%;
}

footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

footer .contact-icon {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--accent);
}

footer .contact-text,
footer .contact-text a {
  color: var(--text-light);
  line-height: 1.5;
}

footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  footer .bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

footer .copyright {
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  footer .copyright {
    margin-bottom: 0;
  }
}

footer .bottom-links {
  display: flex;
  gap: 1.5rem;
}

footer .bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .bottom-links a:hover {
  color: var(--text);
}

footer .newsletter {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

footer .newsletter-title {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer .newsletter-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

footer .newsletter-form {
  display: flex;
  margin-top: 1rem;
}

footer .newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.75rem 1rem;
  color: var(--text);
  border-radius: 0.25rem 0 0 0.25rem;
  outline: none;
  transition: background-color 0.3s ease;
}

footer .newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

footer .newsletter-button {
  background-color: var(--accent);
  color: var(--text);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer .newsletter-button:hover {
  background-color: #a00a0c;
}

footer .newsletter-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

footer .newsletter-message {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  display: none;
}

footer .newsletter-message.success {
  color: #10b981;
}

footer .newsletter-message.error {
  color: #ef4444;
}

footer .hours {
  margin-top: 1.5rem;
}

footer .hours-list {
  color: var(--text-light);
  font-size: 0.9rem;
}

footer .hours-day {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0.50rem;
}

footer .hours-day span {
  margin-bottom: 0.25rem;
}

footer .contact-link {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

footer .contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

footer .contact-link:hover {
  color: var(--text);
}

footer .contact-link:hover::after {
  width: 100%;
}