/* === LUCIO — Rock Band — Dark Industrial Style === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
}

/* Homepage: no scroll (full-screen carousel) */
body:not(.page-body) {
  overflow: hidden;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,0,0,0.3);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #cc0000;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff3333;
  text-shadow: 0 0 20px rgba(255,0,0,0.6), 0 0 40px rgba(255,0,0,0.3);
}

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

/* === HERO TITLE === */
.hero-title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 60;
  text-align: center;
  pointer-events: none;
}

.hero-title h1 {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 
    0 0 10px rgba(255,0,0,0.5),
    0 0 40px rgba(255,0,0,0.3),
    0 0 80px rgba(0,0,0,0.8),
    0 4px 8px rgba(0,0,0,0.9);
  letter-spacing: 12px;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.hero-title h1 .accent {
  color: #cc0000;
  text-shadow: 
    0 0 15px rgba(204,0,0,0.8),
    0 0 50px rgba(204,0,0,0.5),
    0 0 100px rgba(204,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.9);
}

.hero-subtitle {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.9);
  text-transform: uppercase;
}

/* === CAROUSEL === */
.carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2) saturate(0.7);
}

/* Dark grunge overlay on all slides */
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
  pointer-events: none;
  z-index: 5;
}

/* === CAROUSEL BUTTONS === */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  width: 55px;
  height: 90px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(6px);
  border-radius: 3px;
}

.carousel-btn:hover {
  background: rgba(204, 0, 0, 0.4);
  border-color: rgba(204, 0, 0, 0.6);
}

.carousel-btn.prev {
  left: 25px;
}

.carousel-btn.next {
  right: 25px;
}

/* === CAROUSEL DOTS === */
.carousel-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dot.active {
  background: #cc0000;
  border-color: #ff3333;
  box-shadow: 0 0 10px rgba(204, 0, 0, 0.7), 0 0 20px rgba(204, 0, 0, 0.4);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

/* === BACKGROUND MUSIC TOGGLE === */
.bg-music-btn {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 150;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
}

.bg-music-btn:hover {
  background: rgba(204, 0, 0, 0.5);
  border-color: rgba(204, 0, 0, 0.6);
  color: #fff;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.4);
}

.bg-music-btn.muted {
  color: #555;
  border-color: rgba(255, 255, 255, 0.05);
}

.bg-music-btn.muted:hover {
  color: #fff;
}

/* === SOCIAL / CONTACT BAR === */
.social-bar {
  position: fixed;
  bottom: 35px;
  right: 30px;
  z-index: 100;
  display: flex;
  gap: 1rem;
}

.social-bar a {
  text-decoration: none;
  color: #ccc;
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.social-bar a:hover {
  background: rgba(204, 0, 0, 0.5);
  border-color: rgba(204, 0, 0, 0.6);
  color: #fff;
  text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(15px);
  border-top: 2px solid #cc0000;
  padding: 1rem 2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content p {
  color: #999;
  font-size: 0.8rem;
  line-height: 1.4;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background: #cc0000;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #ff2222;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}

/* ============================================ */
/* === SUB PAGES (CONTENT WINDOWS) ============ */
/* ============================================ */
html:has(body.page-body) {
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
}

.page-body {
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  min-height: 100vh;
  background: #0a0a0a;
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(40,0,0,0.3) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
}

.page-body .navbar {
  position: sticky;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #222;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  color: #ccc;
  line-height: 1.8;
}

.page-content h1 {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0.3rem;
  text-align: center;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(204,0,0,0.3);
}

.page-content .section-divider {
  width: 80px;
  height: 3px;
  background: #cc0000;
  margin: 0.5rem auto 2rem;
  box-shadow: 0 0 10px rgba(204,0,0,0.5);
}

.page-content h2 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.4rem;
  color: #ddd;
  margin: 2.5rem 0 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-left: 3px solid #cc0000;
  padding-left: 1rem;
}

/* === MUSIC / DISCOGRAPHY === */
.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.album-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.album-card:hover {
  transform: translateY(-5px);
  border-color: #cc0000;
  box-shadow: 0 10px 30px rgba(204,0,0,0.2);
}

.album-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #1a1a1a;
  display: block;
}

.album-card-body {
  padding: 1.2rem;
}

.album-card-body h4 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.album-card-body .year {
  font-size: 0.8rem;
  color: #cc0000;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.album-card-body p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.album-card-body .tracks {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.6;
}

/* === TOUR DATES === */
.tour-list {
  list-style: none;
}

.tour-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.3s;
  gap: 1rem;
  flex-wrap: wrap;
}

.tour-item:hover {
  background: rgba(204,0,0,0.08);
}

.tour-date {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1rem;
  color: #cc0000;
  letter-spacing: 2px;
  min-width: 100px;
  font-weight: 600;
}

.tour-venue {
  flex: 1;
  color: #ddd;
  font-size: 0.95rem;
}

.tour-city {
  color: #888;
  font-size: 0.85rem;
  min-width: 120px;
  text-align: right;
}

.tour-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
}

.tour-badge.sold-out {
  background: #cc0000;
  color: #fff;
}

.tour-badge.available {
  background: #1a3a1a;
  color: #4caf50;
  border: 1px solid #4caf50;
}

/* === ABOUT MOTO === */
.about-motto {
  text-align: center;
  font-size: 1.1rem;
  color: #cc0000;
  margin-top: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Oswald', 'Impact', sans-serif;
}

/* === ABOUT === */
.about-text p {
  margin-bottom: 1.2rem;
  color: #bbb;
  font-size: 0.95rem;
}

.about-text strong {
  color: #fff;
}

.band-photo {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 4px;
  border: 1px solid #333;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  filter: contrast(1.1) brightness(0.9);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.member-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 1.2rem;
  text-align: center;
}

.member-card h4 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.member-card .role {
  font-size: 0.8rem;
  color: #cc0000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0.3rem 0 0.6rem;
}

.member-card p {
  font-size: 0.8rem;
  color: #888;
}

/* === MUSIC PAGE — TRACK LIST === */
.music-intro {
  text-align: center;
  color: #888;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.music-intro a {
  color: #cc0000;
  text-decoration: none;
  transition: color 0.3s;
}

.music-intro a:hover {
  color: #ff3333;
}

/* === MUSIC PAGE — YOUTUBE VIDEO === */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 0.5rem;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #222;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === MUSIC PAGE — YOUTUBE THUMBNAIL CARDS === */
.video-thumb {
  display: block;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #222;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.video-thumb:hover {
  transform: scale(1.02);
  border-color: #cc0000;
  box-shadow: 0 4px 25px rgba(204, 0, 0, 0.3);
}

.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-thumb:hover .video-thumb-overlay {
  background: rgba(204, 0, 0, 0.25);
}

.video-play-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: color 0.3s, transform 0.3s;
}

.video-thumb:hover .video-play-icon {
  color: #cc0000;
  transform: scale(1.15);
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.track-item {
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.track-item:hover {
  border-color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.track-info {
  margin-bottom: 1rem;
}

.track-title {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.track-player {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: #0a0a0a;
}

.track-player::-webkit-media-controls-panel {
  background: #1a1a1a;
}

.track-player::-webkit-media-controls-current-time-display,
.track-player::-webkit-media-controls-time-remaining-display {
  color: #ccc;
}

/* === TOUR — NO DATES === */
.no-dates {
  text-align: center;
  padding: 3rem 2rem;
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
}

.no-dates-icon {
  font-size: 3rem;
  color: #cc0000;
  margin-bottom: 1rem;
}

.no-dates h2 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 1.4rem;
  color: #ddd;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.no-dates p {
  color: #888;
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 0.5rem;
}

.no-dates-sub {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(204, 0, 0, 0.1);
  padding: 1rem 2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.5rem;
}

.cookie-content p {
  color: #aaa;
  font-size: 0.8rem;
  line-height: 1.4;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background: #cc0000;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #ff2222;
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

/* === CONTACT === */
.contact-info {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #aaa;
  font-size: 0.9rem;
}

.contact-info a {
  color: #cc0000;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ff3333;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', 'Impact', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: #111;
  border: 1px solid #333;
  border-radius: 3px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #cc0000;
  box-shadow: 0 0 10px rgba(204,0,0,0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #cc0000;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn:hover {
  background: #ff2222;
  box-shadow: 0 0 20px rgba(204,0,0,0.4);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .hero-title h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
  }

  .carousel-btn {
    width: 40px;
    height: 60px;
    font-size: 1.5rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .social-bar {
    bottom: 20px;
    right: 10px;
    gap: 0.5rem;
  }

  .social-bar a {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
  }

  .cookie-banner {
    padding: 0.8rem 1rem;
  }

  .cookie-content p {
    font-size: 0.7rem;
  }

  .cookie-btn {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .tour-city {
    text-align: left;
  }

  .page-content h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .hero-title h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
}