/* CSS Document */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1c1c1e;
  color: #fff;
}

.navbar {
  background-color: #121212;
  padding: 0.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo span {
  font-family: "Silkscreen", sans-serif;
  font-size: 70px;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}

.nav-links a {
  font-family: "Geo", sans-serif;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  position: relative;
  align-self: flex-end;
  padding-top: 0.5rem;
  padding-bottom: 0.1rem;
  margin-top: 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: red;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Removed .hamburger block because it's not used */

.main {
  padding-top: 100px;
}

.landing {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #121212, #1c1c1e);
}

.intro h1 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 500;
  font-size: 60px;
}

.intro p {
  font-family: "Major Mono Display", monospace;
  font-weight: 400;
  font-size: 25px;
}

.gradient-section {
  background: linear-gradient(to bottom, #1c1c1e, #ffffff);
  min-height: 100vh;
  padding: 2rem;
  color: #000;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 80vh;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 80px;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem;
}

.review-tile {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.review-tile:hover .tile-video {
  opacity: 1;
}

.review-tile a {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  z-index: 1;
}

.review-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  background-color: #222;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  color: white;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.modal-box h2 {
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 1rem;
  font-size: 32px;
}

.modal-box p {
  font-family: "Oxanium", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.modal-description-columns {
  column-count: 2;
  column-gap: 1.5rem;
  font-family: "Oxanium", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

.modal-rating {
  font-family: "Geo", monospace;
  background-color: #2c2c2e;
  border-left: 5px solid red;
  padding: .5rem;
  font-size: 21px;
  color: #f4f4f4;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

#modal-close {
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  background-color: red;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#modal-close:hover {
  background-color: #900;
}

#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.tile-title {
  font-family: "Oxanium", sans-serif;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 1;
  position: relative;
}

.contact-page {
  padding: 3rem 2rem;
  max-width: 600px;
  margin: auto;
}

.contact-page h1 {
  font-family: "Chakra Petch";
	color: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #2c2c2e;
  border: none;
  color: white;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: red;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.donate-box {
  margin-top: 2rem;
  background-color: #2c2c2e;
  padding: 2rem;
  border-left: 5px solid red;
  text-align: center;
}
.donate-box h2,
.donate-box p{
	color: white;
}
.donate-button {
  margin-top: 1rem;
  background-color: red;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.news-ticker {
  background-color: #111;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  color: white;
}

.ticker span {
  display: inline-block;
  padding-right: 2rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .hamburger-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }

  .hamburger-icon .line {
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0.25rem 1rem;
  }

  .logo {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: auto;
    text-align: center;
    gap: 0.5rem;
  }

  .logo-img {
    height: 60px;
  }

  .logo span {
    font-size: 32px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    background: #121212;
    z-index: 10;
    top: 100%;
    left: 0;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    padding: 0.75rem;
  }

  .intro h1 {
    font-size: 28px;
  }

  .intro p {
    font-size: 16px;
  }

  .landing {
    padding: 2rem 1rem;
  }

  .video-container {
    flex-direction: column;
    margin-top: 20px;
    padding: 0 1rem;
  }

  .video-container video {
    border-radius: 6px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .review-tile {
    height: 200px;
  }

  .tile-title {
    font-size: 14px;
    padding: 0.75rem;
  }

  .modal-box {
    width: 90%;
    padding: 1rem;
    max-width: 95%;
  }

  .modal-box h2 {
    font-size: 22px;
  }

  .modal-box p,
  .modal-description-columns {
    font-size: 13px;
  }

  .modal-description-columns {
    column-count: 1;
  }

  .modal-rating {
    font-size: 14px;
    padding: 0.5rem;
  }

  #modal-close {
    padding: 0.5rem 1rem;
  }

  .contact-page {
    padding: 2rem 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.6rem;
  }

  .contact-form button {
    padding: 0.6rem 1.2rem;
  }

  .donate-box {
    padding: 1.5rem 1rem;
  }

  .donate-button {
    padding: 0.6rem 1.2rem;
  }

  .news-ticker {
    padding: 0.5rem 0;
  }

  .news-ticker .ticker {
    font-size: 14px;
  }
}

