@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');


/* =========================================================
   BON VOYAGE STUDIOS
   BLACK / RED / WHITE NEON THEME
========================================================= */

:root {
  --bg: #020202;
  --bg-soft: #070707;
  --bg-card: #090909;
  --bg-card-hover: #0d0d0d;

  --red: #ff1616;
  --red-light: #ff3434;
  --red-dark: #830000;

  --red-glow: rgba(255, 20, 20, 0.35);
  --red-glow-soft: rgba(255, 20, 20, 0.08);

  --white: #f7f7f7;
  --white-soft: #d9d9d9;

  --grey: #969696;
  --grey-dark: #555555;

  --border: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 25, 25, 0.28);

  --max-width: 1450px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 0, 0, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 50%,
      rgba(255, 0, 0, 0.03),
      transparent 25%
    ),
    #020202;

  color: var(--white);

  font-family: 'Inter', sans-serif;

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.012) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.012) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent
    );

  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  width: 100%;
  height: 92px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;

  z-index: 1000;

  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.96),
      rgba(2, 2, 2, 0.88)
    );

  backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);
}

.site-header::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -1px;

  transform: translateX(-50%);

  width: 28%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red),
      transparent
    );

  box-shadow:
    0 0 10px var(--red),
    0 0 22px rgba(255, 0, 0, 0.4);
}


/* BRAND */

.brand {
  display: flex;
  align-items: center;

  gap: 15px;
}

.brand img {
  width: 61px;
  height: 61px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 5px rgba(255, 0, 0, 0.45))
    drop-shadow(0 0 12px rgba(255, 0, 0, 0.18));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.brand:hover img {
  transform: scale(1.04);

  filter:
    drop-shadow(0 0 7px rgba(255, 0, 0, 0.7))
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.3));
}

.brand-name {
  font-family: 'Cinzel', serif;

  color: white;

  font-size: 18px;
  font-weight: 700;

  letter-spacing: 1.3px;
}

.brand-name span {
  color: var(--red);

  text-shadow:
    0 0 6px rgba(255, 20, 20, 0.45),
    0 0 14px rgba(255, 20, 20, 0.16);
}


/* NAVIGATION */

nav {
  display: flex;
  align-items: center;

  gap: 36px;
}

nav a {
  position: relative;

  color: #a4a4a4;

  font-size: 13px;
  font-weight: 500;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

nav a:not(.nav-discord)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -11px;

  width: 0%;
  height: 1px;

  background: var(--red);

  box-shadow:
    0 0 6px var(--red),
    0 0 15px var(--red);

  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: white;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}


/* DISCORD NAV BUTTON */

.nav-discord {
  padding: 11px 19px;

  color: white;

  border:
    1px solid rgba(255, 25, 25, 0.55);

  background:
    rgba(255, 0, 0, 0.055);

  box-shadow:
    inset 0 0 14px rgba(255, 0, 0, 0.025),
    0 0 12px rgba(255, 0, 0, 0.05);

  transition: 0.3s ease;
}

.nav-discord:hover {
  background: var(--red);

  border-color: var(--red);

  color: white;

  box-shadow:
    0 0 8px rgba(255, 0, 0, 0.45),
    0 0 25px rgba(255, 0, 0, 0.2);

  transform: translateY(-1px);
}


/* =========================================================
   MAIN
========================================================= */

main {
  width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  max-width: var(--max-width);

  min-height: calc(100vh - 92px);

  margin: 0 auto;

  padding: 90px 6% 115px;

  display: grid;
  grid-template-columns: 1fr 0.95fr;

  gap: 80px;

  align-items: center;

  overflow: hidden;
}


/* HERO GLOWS */

.hero-glow {
  position: absolute;

  pointer-events: none;

  border-radius: 50%;

  filter: blur(130px);
}

.hero-glow-one {
  width: 560px;
  height: 560px;

  right: -170px;
  top: 30px;

  background:
    rgba(255, 0, 0, 0.13);
}

.hero-glow-two {
  width: 340px;
  height: 340px;

  left: -180px;
  bottom: -50px;

  background:
    rgba(255, 255, 255, 0.035);
}


/* HERO CONTENT */

.hero-content {
  position: relative;

  z-index: 5;

  max-width: 700px;
}

.eyebrow {
  width: fit-content;

  margin-bottom: 24px;

  color: var(--red);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 0 7px rgba(255, 0, 0, 0.4);
}

.eyebrow::before {
  content: "";

  display: inline-block;

  width: 30px;
  height: 1px;

  margin-right: 13px;
  margin-bottom: 3px;

  background: var(--red);

  box-shadow:
    0 0 8px var(--red);
}

.hero h1 {
  max-width: 720px;

  font-family: 'Cinzel', serif;

  font-size: clamp(52px, 5vw, 80px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -2px;
}

.hero h1 span {
  display: block;

  color: var(--red);

  text-shadow:
    0 0 9px rgba(255, 0, 0, 0.4),
    0 0 28px rgba(255, 0, 0, 0.12);
}

.hero-text {
  max-width: 625px;

  margin-top: 27px;

  color: #999;

  font-size: 15px;

  line-height: 1.85;
}


/* HERO BUTTONS */

.hero-buttons {
  display: flex;

  gap: 14px;

  margin-top: 36px;
}

.button {
  position: relative;

  min-height: 53px;

  padding: 0 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 17px;

  font-size: 13px;
  font-weight: 600;

  border: 1px solid transparent;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button-primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      #ff2020,
      #c90000
    );

  border-color: #ff2727;

  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.18),
    0 0 28px rgba(255, 0, 0, 0.08);
}

.button-primary::before {
  content: "";

  position: absolute;

  width: 60px;
  height: 170%;

  left: -90px;
  top: -30%;

  background:
    rgba(255,255,255,0.18);

  transform:
    rotate(25deg);

  transition:
    left 0.5s ease;
}

.button-primary:hover::before {
  left: 115%;
}

.button-primary:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.42),
    0 0 30px rgba(255, 0, 0, 0.22);
}

.button-secondary {
  color: #dedede;

  background:
    rgba(255,255,255,0.018);

  border-color:
    rgba(255,255,255,0.12);
}

.button-secondary:hover {
  color: white;

  border-color:
    rgba(255, 30, 30, 0.45);

  background:
    rgba(255, 0, 0, 0.035);

  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.07);

  transform:
    translateY(-2px);
}

.arrow {
  font-size: 18px;

  transition:
    transform 0.25s ease;
}

.button:hover .arrow {
  transform:
    translateX(4px);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;

  min-height: 580px;

  display: flex;
  align-items: center;
  justify-content: center;
}


/*
   LARGE FAINT LOGO BEHIND THE CARD
*/

.hero-visual::before {
  content: "";

  position: absolute;

  width: 570px;
  height: 570px;

  max-width: 110%;

  background:
    url("/assets/logo.png")
    center / contain
    no-repeat;

  opacity: 0.12;

  filter:
    drop-shadow(0 0 18px rgba(255,0,0,0.6))
    drop-shadow(0 0 55px rgba(255,0,0,0.2));

  transform:
    translateY(-17px);

  pointer-events: none;
}

.hero-visual::after {
  content: "";

  position: absolute;

  width: 410px;
  height: 410px;

  border-radius: 50%;

  border:
    1px solid rgba(255,0,0,0.08);

  box-shadow:
    0 0 40px rgba(255,0,0,0.03),
    inset 0 0 40px rgba(255,0,0,0.025);

  pointer-events: none;
}


/* MAIN CARD */

.visual-card {
  position: relative;

  width: 100%;
  max-width: 530px;

  padding: 35px;

  z-index: 4;

  background:
    linear-gradient(
      140deg,
      rgba(255,255,255,0.047),
      rgba(255,255,255,0.01)
    ),
    rgba(5,5,5,0.9);

  backdrop-filter: blur(13px);

  border:
    1px solid rgba(255,255,255,0.11);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(255,255,255,0.01);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.visual-card::before {
  content: "";

  position: absolute;

  left: -1px;
  top: -1px;

  width: 70px;
  height: 70px;

  border-left:
    1px solid var(--red);

  border-top:
    1px solid var(--red);

  box-shadow:
    -2px -2px 10px rgba(255,0,0,0.08);

  pointer-events: none;
}

.visual-card::after {
  content: "";

  position: absolute;

  right: -1px;
  bottom: -1px;

  width: 70px;
  height: 70px;

  border-right:
    1px solid rgba(255,0,0,0.65);

  border-bottom:
    1px solid rgba(255,0,0,0.65);

  pointer-events: none;
}

.visual-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(255,0,0,0.22);

  box-shadow:
    0 34px 85px rgba(0,0,0,0.7),
    0 0 28px rgba(255,0,0,0.055);
}

.visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 25px;
}

.visual-label {
  color: var(--red);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  text-shadow:
    0 0 7px rgba(255,0,0,0.4);
}

.visual-top h3 {
  margin-top: 8px;

  font-family: 'Cinzel', serif;

  font-size: 24px;

  line-height: 1.25;
}


/* STATUS */

.status {
  padding: 8px 11px;

  display: flex;
  align-items: center;

  gap: 8px;

  color: #c7c7c7;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.025);
}

.status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--red);

  box-shadow:
    0 0 5px var(--red),
    0 0 10px var(--red);

  animation:
    statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}


/* VISUAL CARD CONTENT */

.visual-divider {
  height: 1px;

  margin: 30px 0;

  background:
    linear-gradient(
      90deg,
      rgba(255,0,0,0.7),
      rgba(255,255,255,0.07),
      transparent
    );
}

.visual-services {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

.mini-service {
  min-height: 76px;

  padding: 16px;

  display: grid;
  grid-template-columns: 48px 1fr;

  gap: 15px;

  align-items: center;

  border:
    1px solid rgba(255,255,255,0.055);

  background:
    rgba(255,255,255,0.017);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.mini-service:hover {
  background:
    rgba(255,0,0,0.025);

  border-color:
    rgba(255,0,0,0.16);

  transform:
    translateX(4px);
}

.mini-number {
  color: var(--red);

  font-family: 'Cinzel', serif;

  font-size: 13px;

  text-shadow:
    0 0 7px rgba(255,0,0,0.45);
}

.mini-service strong {
  display: block;

  color: white;

  font-family: 'Cinzel', serif;

  font-size: 14px;

  font-weight: 600;
}

.mini-service p {
  margin-top: 5px;

  color: #686868;

  font-size: 11px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 140px 6% 160px;
}

.section-heading {
  margin-bottom: 55px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 80px;
}

.section-label {
  color: var(--red);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;

  text-shadow:
    0 0 6px rgba(255,0,0,0.35);
}

.section-heading h2,
.featured-content h2,
.cta-content h2 {
  margin-top: 14px;

  font-family: 'Cinzel', serif;

  font-weight: 600;

  line-height: 1.1;

  font-size: clamp(38px, 4vw, 59px);
}

.section-heading > p {
  max-width: 370px;

  color: #777;

  font-size: 14px;

  line-height: 1.7;
}


/* SERVICE GRID */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 385px;

  padding: 33px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 55%
    ),
    var(--bg-card);

  border:
    1px solid var(--border);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--red);

  box-shadow:
    0 0 8px var(--red),
    0 0 18px var(--red);

  transition:
    width 0.45s ease;
}

.service-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -60px;
  top: -60px;

  border-radius: 50%;

  background:
    rgba(255,0,0,0.05);

  filter:
    blur(35px);

  opacity: 0;

  transition:
    opacity 0.35s ease;
}

.service-card:hover {
  transform:
    translateY(-7px);

  background:
    linear-gradient(
      145deg,
      rgba(255,0,0,0.035),
      transparent 55%
    ),
    var(--bg-card-hover);

  border-color:
    rgba(255,0,0,0.19);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.42),
    0 0 25px rgba(255,0,0,0.025);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover::after {
  opacity: 1;
}

.card-number {
  position: absolute;

  top: 29px;
  right: 31px;

  color: #3f3f3f;

  font-family: 'Cinzel', serif;

  font-size: 13px;

  letter-spacing: 2px;
}

.service-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  color: var(--red);

  font-size: 19px;

  border:
    1px solid rgba(255,0,0,0.25);

  background:
    rgba(255,0,0,0.03);

  box-shadow:
    inset 0 0 14px rgba(255,0,0,0.025);
}

.service-card h3 {
  margin-top: 68px;

  font-family: 'Cinzel', serif;

  font-size: 24px;
  font-weight: 600;
}

.service-card > p {
  margin-top: 16px;

  color: #7a7a7a;

  font-size: 13px;

  line-height: 1.75;
}

.service-link {
  margin-top: auto;

  padding-top: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #c8c8c8;

  font-size: 12px;

  border-top:
    1px solid rgba(255,255,255,0.055);

  transition:
    color 0.25s ease;
}

.service-link span {
  color: var(--red);

  font-size: 17px;

  transition:
    transform 0.25s ease;
}

.service-card:hover .service-link {
  color: white;
}

.service-card:hover .service-link span {
  transform:
    translateX(4px);
}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.featured {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 90px 6% 160px;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  align-items: center;
}

.featured-content p {
  max-width: 480px;

  margin-top: 23px;

  color: #858585;

  font-size: 14px;

  line-height: 1.8;
}

.featured-content h2 span {
  display: block;

  color: var(--red);

  text-shadow:
    0 0 14px rgba(255,0,0,0.13);
}

.text-link {
  width: fit-content;

  margin-top: 29px;

  padding-bottom: 7px;

  display: inline-flex;
  align-items: center;

  gap: 18px;

  color: white;

  font-size: 13px;

  border-bottom:
    1px solid rgba(255,0,0,0.65);
}

.text-link span {
  color: var(--red);

  font-size: 17px;

  transition:
    transform 0.25s ease;
}

.text-link:hover span {
  transform:
    translateX(5px);
}


/* FEATURED PREVIEW */

.featured-preview {
  position: relative;

  padding: 8px;

  border:
    1px solid rgba(255,255,255,0.07);

  background:
    #070707;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.45);
}

.featured-preview::before {
  content: "";

  position: absolute;

  left: -1px;
  top: -1px;

  width: 25%;
  height: 1px;

  background: var(--red);

  box-shadow:
    0 0 10px var(--red);
}

.preview-image {
  position: relative;

  min-height: 425px;

  overflow: hidden;

  background:
    #050505;
}

.preview-image img {
  width: 100%;
  height: 100%;

  min-height: 425px;

  object-fit: cover;

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.featured-preview:hover img {
  transform:
    scale(1.035);

  filter:
    brightness(0.85);
}

.preview-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 31px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,0.92)
    );
}

.preview-overlay span {
  color: var(--red);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;

  text-shadow:
    0 0 5px rgba(255,0,0,0.4);
}

.preview-overlay h3 {
  margin-top: 8px;

  font-family: 'Cinzel', serif;

  font-size: 24px;
  font-weight: 600;
}

.preview-arrow {
  flex-shrink: 0;

  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  color: var(--red);

  font-size: 20px;

  border:
    1px solid rgba(255,0,0,0.26);

  background:
    rgba(255,0,0,0.035);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.featured-preview:hover .preview-arrow {
  color: white;

  background: var(--red);

  box-shadow:
    0 0 15px rgba(255,0,0,0.3);
}


/* =========================================================
   DISCORD CTA
========================================================= */

.discord-cta {
  position: relative;

  max-width: calc(var(--max-width) - 12%);

  min-height: 330px;

  margin:
    0 auto 115px;

  padding:
    65px 65px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      rgba(255,0,0,0.055),
      transparent 55%
    ),
    #070707;

  border:
    1px solid rgba(255,0,0,0.15);
}

.discord-cta::before {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  right: -180px;
  top: -180px;

  background:
    url("/assets/logo.png")
    center / contain
    no-repeat;

  opacity: 0.035;

  filter:
    drop-shadow(0 0 30px red);
}

.discord-cta::after {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  height: 1px;
  width: 37%;

  background:
    linear-gradient(
      90deg,
      var(--red),
      transparent
    );

  box-shadow:
    0 0 11px rgba(255,0,0,0.7);
}

.discord-glow {
  position: absolute;

  left: -170px;
  top: -160px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    rgba(255,0,0,0.12);

  filter:
    blur(120px);

  pointer-events: none;
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 680px;
}

.cta-content p {
  max-width: 600px;

  margin-top: 20px;

  color: #858585;

  font-size: 14px;

  line-height: 1.75;
}

.discord-cta > .button {
  position: relative;

  z-index: 3;

  flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  padding:
    60px 6% 27px;

  background:
    #010101;

  border-top:
    1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);

  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 60px;
}

.footer-brand p {
  max-width: 340px;

  margin-top: 20px;

  color: #595959;

  font-size: 12px;

  line-height: 1.65;
}

.footer-links {
  display: flex;
  align-items: center;

  gap: 33px;

  padding-top: 19px;
}

.footer-links a {
  color: #6f6f6f;

  font-size: 12px;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.footer-links a:hover {
  color: var(--red);

  text-shadow:
    0 0 7px rgba(255,0,0,0.3);
}

.footer-bottom {
  max-width: var(--max-width);

  margin:
    50px auto 0;

  padding-top: 24px;

  color: #3d3d3d;

  font-size: 10px;

  border-top:
    1px solid rgba(255,255,255,0.045);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background:
    #020202;
}

::-webkit-scrollbar-thumb {
  background:
    #191919;

  border:
    2px solid #020202;
}

::-webkit-scrollbar-thumb:hover {
  background:
    #7e0d0d;
}

::selection {
  color: white;

  background:
    rgba(255,0,0,0.55);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

  .site-header {
    padding:
      0 4%;
  }

  nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns:
      1fr;

    gap: 30px;

    text-align: center;

    padding-top: 85px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-visual::before {
    width: 530px;
    height: 530px;
  }

  .visual-card {
    text-align: left;
  }

  .service-grid {
    grid-template-columns:
      1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .service-card h3 {
    margin-top: 52px;
  }

  .featured {
    grid-template-columns:
      1fr;

    gap: 55px;
  }

  .featured-content {
    max-width: 650px;
  }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 760px) {

  .site-header {
    height: auto;

    padding:
      14px 5%;

    flex-direction: column;

    gap: 16px;
  }

  .brand img {
    width: 51px;
    height: 51px;
  }

  .brand-name {
    font-size: 15px;
  }

  nav {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap:
      12px 20px;
  }

  nav a {
    font-size: 11px;
  }

  .nav-discord {
    padding:
      8px 14px;
  }

  nav a:not(.nav-discord)::after {
    bottom: -5px;
  }


  /* HERO MOBILE */

  .hero {
    min-height: auto;

    padding:
      75px 5% 90px;
  }

  .hero h1 {
    font-size:
      clamp(40px, 12vw, 56px);

    letter-spacing:
      -1px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 450px;

    margin-top: 20px;
  }

  .hero-visual::before {
    width: 420px;
    height: 420px;

    max-width: 115%;
  }

  .hero-visual::after {
    width: 310px;
    height: 310px;
  }

  .visual-card {
    padding: 25px;
  }

  .visual-top {
    flex-direction: column;
  }

  .status {
    align-self: flex-start;
  }


  /* SECTIONS */

  .services {
    padding:
      100px 5% 115px;
  }

  .section-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 23px;
  }

  .section-heading h2,
  .featured-content h2,
  .cta-content h2 {
    font-size:
      clamp(34px, 10vw, 48px);
  }

  .service-card {
    padding:
      28px;

    min-height:
      320px;
  }


  /* FEATURED */

  .featured {
    padding:
      65px 5% 115px;
  }

  .preview-image,
  .preview-image img {
    min-height:
      330px;
  }

  .preview-overlay {
    padding:
      23px;
  }

  .preview-overlay h3 {
    font-size:
      19px;
  }

  .preview-arrow {
    width:
      43px;

    height:
      43px;
  }


  /* CTA */

  .discord-cta {
    max-width:
      calc(100% - 10%);

    margin-bottom:
      80px;

    padding:
      50px 30px;

    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      35px;
  }

  .discord-cta > .button {
    width:
      100%;
  }


  /* FOOTER */

  footer {
    padding:
      50px 5% 25px;
  }

  .footer-inner {
    flex-direction:
      column;
  }

  .footer-links {
    flex-wrap:
      wrap;

    gap:
      18px 25px;

    padding-top:
      0;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 460px) {

  .brand-name {
    font-size:
      13px;
  }

  nav {
    gap:
      11px 14px;
  }

  .hero {
    padding-top:
      58px;
  }

  .hero h1 {
    font-size:
      39px;
  }

  .hero-visual {
    min-height:
      420px;
  }

  .visual-card {
    padding:
      21px;
  }

  .visual-top h3 {
    font-size:
      20px;
  }

  .mini-service {
    grid-template-columns:
      35px 1fr;
  }

  .service-card {
    padding:
      25px;
  }

  .preview-image,
  .preview-image img {
    min-height:
      290px;
  }

}