html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #39ff14;
  color: #000000;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #141414;
  color: #d1d1d1;
}

.header_div header {
  background-color: #0d0d0d;
  padding: 25px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid #39ff14;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  max-height: 70px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #39ff14);
  transition: filter 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 12px #ff073a);
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #39ff14;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ff073a;
  transform: scale(1.05);
}

section iframe {
  margin-top: 140px;
  width: 100%;
  height: calc(100vh - 140px);
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0d0d0d;
  border: 2px solid #39ff14;
  border-radius: 12px;
  padding: 15px 20px;
  z-index: 1100;
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
}

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

.cookies-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookies-section p {
  font-size: 16px;
  font-weight: bold;
  color: #39ff14;
}

.cookies-section button {
  background-color: #39ff14;
  color: #0d0d0d;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cookies-section button:hover {
  background-color: #ff073a;
  transform: scale(1.1);
}

.footer {
  background-color: #0d0d0d;
  padding: 40px 20px 20px;
  border-top: 4px solid #39ff14;
  color: #d1d1d1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-logo p {
  font-size: 14px;
  margin-top: 10px;
  color: #39ff14;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ff073a;
}

.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #bfbfbf;
}

.footer-links {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.footer-links ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #39ff14;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff073a;
}

.footer-bottom {
  background-color: #141414;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  margin-top: 20px;
  color: #bfbfbf;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  text-align: center;
  color: #39ff14;
  text-shadow: 0 0 8px #ff073a;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-btn {
  background-color: #39ff14;
  color: #0d0d0d;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background-color: #ff073a;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.4rem;
  }
  .hero-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

.gallery-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  color: #39ff14;
}

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

.gallery-container h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 8px #ff073a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.join-section {
  margin-top: 20px;
}

.join-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ff073a;
}

.join-btn {
  background-color: #39ff14;
  color: #0d0d0d;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-btn:hover {
  background-color: #ff073a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-container h2 {
    font-size: 2rem;
  }
  .join-section h3 {
    font-size: 1.5rem;
  }
  .join-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

.services-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  color: #39ff14;
  border-top: 4px solid #ff005a;
}

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

.services-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff005a;
}

.services-container p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 0 4px #ff005a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #121212;
  border: 2px solid #39ff14;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #ff005a;
}

.service-item img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #39ff14);
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ff005a;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.4;
  color: #d1d1d1;
}

@media (max-width: 768px) {
  .services-container h2 {
    font-size: 2.2rem;
  }
  .services-container p {
    font-size: 1.2rem;
  }
  .service-item {
    padding: 15px;
  }
  .service-item h3 {
    font-size: 1.4rem;
  }
  .service-item p {
    font-size: 0.9rem;
  }
}

.reviews-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  color: #39ff14;
  border-top: 4px solid #ff005a;
}

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

.reviews-container h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-shadow: 0 0 8px #ff005a;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-item {
  flex: 0 0 calc(100% / 3);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.review-item p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.review-item h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff005a;
}

.slider-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #39ff14;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.slider-btn:hover {
  transform: scale(1.1);
  color: #ff005a;
}

@media (max-width: 768px) {
  .review-item {
    flex: 0 0 100%;
  }
  .reviews-container h2 {
    font-size: 2rem;
  }
}

.form-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  color: #39ff14;
  border-top: 4px solid #ff005a;
}

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

.form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff005a;
}

.form-container p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 4px #ff005a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ff005a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #39ff14;
  border-radius: 5px;
  background-color: #141414;
  color: #d1d1d1;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff005a;
}

.form-btn {
  background-color: #39ff14;
  color: #0d0d0d;
  padding: 14px 32px;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-btn:hover {
  background-color: #ff005a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .form-container h2 {
    font-size: 2rem;
  }
  .form-container p {
    font-size: 1rem;
  }
  .form-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
}
