@font-face {
  font-family: 'UnifrakturCook';
  src: url('fonts/UnifrakturCook.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Elsie';
  src: url('./fonts/Elsie.ttf') format('opentype');
}

header, footer {
  background: linear-gradient(
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.85)
    ),
    url('images/gothic-texture.png') center center / cover no-repeat;
  color: white;
  padding: 2rem 1rem;
}

.video-widget-wrapper {
  background-color: #120000;
  border: 2px solid #8b0000; /* vampy red border */
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 90%;
  box-shadow: inset 0 0 40px #1a0000;
  transition: all 0.3s ease-in-out;
}

.video-widget-wrapper:hover {
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4); /* glowing on hover */
}


.gothic-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(60, 0, 0, 0.7)),
              url("images/gothic-texture.png") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 2rem 1rem;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  z-index: 10;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100%;
}

body {
  position: relative;
  background: none;
  background-color: #120000; /* deep goth fallback if image fails */
  overflow-x: hidden;
}

.logo {
  display: block;
  margin-top: 1rem;
  margin-left: auto;
  margin-bottom: 1rem;
  margin-right: auto;
  width: 200px;
  filter: drop-shadow(0 0 8px red);
}

h1, h2 {
  font-family: 'UnifrakturCook', cursive;
}

.tagline {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2.5rem; /* You can go bigger like 2.5rem if you want */
  text-align: center;
  margin: 1rem auto;
  max-width: 90%;
  color: #8b0000;
}

.footer-tagline {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2rem; /* You can go bigger like 2.5rem if you want */
  text-align: center;
  margin: 1rem auto;
  max-width: 90%;
}

.nav-menu a,
.link-slider a,
.message-form button {
  font-family: 'Elsie', serif;
}

.nav-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 3rem;
  margin-bottom: 1rem;
  gap: 15px;
}

.stars i {
  color: gold;
  margin-right: 3px;
  font-size: 1.4rem;
}

.nav-menu li a {
  background-color: #8b0000;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Elsie', serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2); /* subtle shadow */
  border: 1px solid rgba(255, 0, 0, 0.4);     /* soft base border */
  transition: all 0.3s ease-in-out;
}

.nav-menu li a:hover {
  background-color: #b30000; /* deep vampy red */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(179, 0, 0, 0.4); /* subtle glow */
  border: 1px solid rgba(179, 0, 0, 0.6);
}

.scroll-links {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  margin: 1rem auto;
  max-width: 90%;
}

.link-slider {
  display: inline-flex;
  gap: 12px;
}

.link-slider a {
  display: inline-block;
  background-color: #120000;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Elsie', serif;
  transition: background 0.3s, transform 0.2s;
}

.link-slider a:hover {
  background-color: #120000;
  transform: translateY(-2px);
}

.floating-age-banner {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 300px;
  z-index: 999;
  background: rgba(139, 0, 0, 0.85);
  color: #ffe6eb;
  font-family: 'Elsie', serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid #ff0044;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  animation: floatPulse 4s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.6);
  }
}

.close-floating {
  float: right;
  cursor: pointer;
  font-weight: bold;
  color: #ffb3c6;
  margin-left: 10px;
}

.close-floating:hover {
  color: white;
}

.intro-video-section {
  text-align: center;
  padding-top: 2rem;
  position: relative;
  z-index: 2;
  background-color: #120000;
}

.video-wrapper video {
  width: 80%;
  max-width: 720px;
  border: 4px solid #990000;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.intro-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro-btn {
  background-color: #8b0000;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Elsie', serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2); /* subtle shadow */
  border: 1px solid rgba(255, 0, 0, 0.4);     /* soft base border */
  transition: all 0.3s ease-in-out;
}

.intro-btn:hover {
  background-color: #b30000; /* deep vampy red */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(179, 0, 0, 0.4); /* subtle glow */
  border: 1px solid rgba(179, 0, 0, 0.6);
}

.scroll-arrow {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  background-color: #8b0000;
  color: white;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-family: 'Elsie', serif;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  position: static; /* Let them stay in the flex layout */
  box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow:hover {
  background-color: #b30000;
  /* apply scale separately to avoid overriding translate */
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 6px rgba(179, 0, 0, 0.4);
  border: 1px solid rgba(179, 0, 0, 0.6);
}

.scroll-left {
  left: 1.5rem;
}

.scroll-right {
  right: 1.5rem;
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-arrow {
    padding: 8px 14px;
    font-size: 1.2rem;
  }
  .scroll-left {
    left: 0.5rem;
  }
  .scroll-right {
    right: 0.5rem;
  }
}

.reviews-section {
  background: #120000;
  box-shadow: inset 0 0 40px #1a0000;
  margin-top: 0.5rem; /* was 2rem */
  margin-bottom: 2rem;
  color: #fff;
  z-index: 2;
}

.youtube-section {
  background-color: #120000;
  box-shadow: inset 0 0 40px #1a0000;
  color: #fff;
  text-align: center;
}

.section-title {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2.5rem;
  margin: 1rem auto;
  text-align: center;
  color: #8b0000;
  text-shadow: 1px 1px 4px #000;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.youtube-grid iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.youtube-grid iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 5vw; /* gives padding from screen edges */
  position: relative;
}

.review-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 2rem 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-left: 1rem;
  scroll-padding-right: 1rem;
}

.review-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.review-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #990000;
  border-radius: 12px;
  padding: 1.5rem;
  width: 280px;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.stars {
  font-size: 1.4rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.review-text {
  font-style: italic;
  line-height: 1.5;
}

.review-author {
  margin-top: 1rem;
  font-family: 'Elsie', cursive;
  font-size: 1rem;
  color: #ffcccc;
}

.message-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: red;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.2rem;
  box-shadow: 0 0 10px red;
  cursor: pointer;
}

.message-form {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #222;
  border: 2px solid red;
  padding: 15px;
  border-radius: 10px;
  z-index: 1000;
}

.message-form input,
.message-form textarea {
  display: block;
  width: 250px;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 6px;
  border: none;
}

.message-form button {
  background: red;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Elsie', serif;
}

.scroll-strip {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  margin-top: 30px;
  border-top: 1px solid crimson;
  border-bottom: 1px solid crimson;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}

.scroll-content a {
  font-family: 'Elsie', cursive; /* or match your tagline font */
  color: #ffe6eb;
  text-decoration: none;
  margin: 0 30px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.scroll-content a:hover {
  color: crimson;
}

.scroll-strip:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-outlined-text {
  color: black; /* or whatever base text color you want */
  -webkit-text-stroke: 1px #8b0000;  /* crisp stroke in Chrome, Safari */
  text-shadow: 
    -1px -1px 0 #8b0000,
     1px -1px 0 #8b0000,
    -1px  1px 0 #8b0000,
     1px  1px 0 #8b0000;  /* fallback for Firefox etc */
}

.section-divider {
  width: 90%;
  margin-top: 2rem;
  height: 1px;
  background: linear-gradient(to right, transparent, crimson, transparent);
  opacity: 0.6;
}

.gothic-footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(60, 0, 0, 0.7)),
              url("images/gothic-texture.png") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 2rem 1rem;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  z-index: 10;
  font-family: 'UnifrakturCook', cursive;
  font-size: 2rem; /* You can go bigger like 2.5rem if you want */
}