/* ============================================
   JOHNSON OUTDOORS - Custom Dark Theme
   ============================================ */

:root {
  --color-bg: #101010;
  --color-bg-light: #1a1a1a;
  --color-bg-card: #151515;
  --color-cyan: rgb(137, 235, 243);
  --color-cyan-dark: rgb(100, 200, 210);
  --color-white: #ffffff;
  --color-gray: #888888;
  --color-gray-light: #cccccc;

  --font-primary: 'Poppins', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --border-radius: 6px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(16, 16, 16, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav__logo img {
  height: 120px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-cyan);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-cyan);
}

.nav__cta {
  background: var(--color-cyan);
  color: var(--color-bg) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav__cta:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  margin: 6px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(16, 16, 16, 1) 100%
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-cyan);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__title span {
  color: var(--color-cyan);
}

.hero__subtitle {
  font-size: 2.5rem;
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.hero__cta {
  display: inline-block;
  background: var(--color-cyan);
  color: var(--color-bg);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--border-radius);
  border: 3px solid var(--color-cyan);
  transition: var(--transition);
}

.hero__cta:hover {
  background: transparent;
  color: var(--color-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(137, 235, 243, 0.3);
}

/* Promotional Banner */
.hero__promo {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(16, 16, 16, 0.9);
  border: 3px solid var(--color-cyan);
  border-radius: var(--border-radius);
  padding: 3rem 4rem;
  max-width: 500px;
  backdrop-filter: blur(10px);
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.promo__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.promo__label {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.promo__details {
  font-size: 1.5rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}

.promo__details strong {
  color: var(--color-white);
}

.promo__cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--color-cyan);
  color: var(--color-bg);
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.promo__cta:hover {
  background: var(--color-white);
  color: var(--color-bg);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .hero__promo {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 2rem auto 0;
    max-width: 90%;
  }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
  padding: 6rem 2rem;
}

.section--dark {
  background: var(--color-bg);
}

.section--darker {
  background: var(--color-bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__tagline {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-cyan);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section__subtitle {
  color: var(--color-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(137, 235, 243, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-card__description {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card__features {
  list-style: none;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray-light);
}

.service-card__feature::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-card__cta {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.service-card__cta:hover {
  color: var(--color-white);
}

/* ============================================
   PORTFOLIO / GALLERY
   ============================================ */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 16, 0.9), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__caption {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Pagination */
.gallery__pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery__page-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-cyan);
  background: transparent;
  color: var(--color-cyan);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__page-btn:hover,
.gallery__page-btn.active {
  background: var(--color-cyan);
  color: var(--color-bg);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, background 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox__frame {
  position: relative;
  background: linear-gradient(145deg, #222, #111);
  border-radius: 24px;
  padding: 16px;
  border: 3px solid rgba(137, 235, 243, 0.5);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(137, 235, 243, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  cursor: pointer;
}

.lightbox.active .lightbox__frame {
  transform: scale(1.2);
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  background: var(--color-cyan);
  border: none;
  border-radius: 50%;
  color: var(--color-bg);
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(137, 235, 243, 0.5);
  z-index: 10;
}

.lightbox__close:hover {
  background: var(--color-white);
  transform: rotate(90deg) scale(1.1);
}

.lightbox__nav {
  width: 70px;
  height: 70px;
  background: rgba(137, 235, 243, 0.15);
  border: 2px solid rgba(137, 235, 243, 0.4);
  border-radius: 50%;
  color: var(--color-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
}

.lightbox.active .lightbox__nav {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.lightbox__nav svg {
  width: 32px;
  height: 32px;
}

.lightbox__nav:hover {
  background: var(--color-cyan);
  color: var(--color-bg);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(137, 235, 243, 0.5);
}

.lightbox__nav--prev {
  order: -1;
}

.lightbox__nav--next {
  order: 1;
}

.lightbox__img {
  max-width: 70vw;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  text-align: center;
  white-space: nowrap;
}

.lightbox.active .lightbox__caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .lightbox__nav {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox.active .lightbox__nav {
    transform: translateY(-50%);
  }

  .lightbox__nav--prev {
    left: 1rem;
  }

  .lightbox__nav--next {
    right: 1rem;
  }

  .lightbox__nav svg {
    width: 24px;
    height: 24px;
  }

  .lightbox.active .lightbox__frame {
    transform: scale(1);
  }

  .lightbox__img {
    max-width: 85vw;
    max-height: 60vh;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  padding: 2rem;
}

.contact__info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact__details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-gray-light);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(137, 235, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  font-size: 1.1rem;
}

.contact__form {
  background: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(137, 235, 243, 0.2);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-light);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid rgba(137, 235, 243, 0.3);
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(137, 235, 243, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.form__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-cyan);
  color: var(--color-bg);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.form__submit:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

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

.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(137, 235, 243, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo img {
  height: 50px;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__link {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer__link:hover {
  color: var(--color-cyan);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(137, 235, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--color-cyan);
  color: var(--color-bg);
}

.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--color-gray);
  font-size: 0.85rem;
}

.footer__bottom p {
  margin: 0.5rem 0;
}

.footer__legal-link {
  color: var(--color-gray);
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--color-cyan);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: -1;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner__subtitle {
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav__logo img {
    height: 80px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__toggle {
    display: block;
    z-index: 1001;
  }

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

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

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

  /* Hero section */
  .hero__tagline {
    font-size: 1.5rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero__cta {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  /* Promo banner */
  .hero__promo {
    max-width: 95%;
    padding: 1rem;
  }

  .promo__content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .promo__label {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }

  .promo__details {
    font-size: 0.85rem;
  }

  .promo__cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }

  /* Sections */
  .section__title {
    font-size: 2rem;
  }

  .section__tagline {
    font-size: 1rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Contact */
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  .nav__logo img {
    height: 60px;
  }

  .hero__tagline {
    font-size: 1.2rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__pagination {
    gap: 0.5rem;
  }

  .gallery__page-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .promo__label {
    font-size: 0.9rem;
  }

  .promo__details {
    font-size: 0.75rem;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding-top: 150px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-gray-light);
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--color-white);
}

.legal-content em {
  color: var(--color-gray);
}

.legal-back {
  text-align: center;
  margin-top: 3rem;
}

.btn--outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-cyan);
  color: var(--color-cyan);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: var(--color-cyan);
  color: var(--color-bg);
}
