body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
  color: #ccc;
}

header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  grid-gap: 20px;
  background: linear-gradient(90deg, #000, #8b0000);
  color: white;
  padding: 20px;
  align-items: center;
  position: relative;
}

header .logo {
  grid-column: 1;
  grid-row: 1;
}

header .logo img {
  height: 50px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #8b0000; 
}

header .logo img:hover {
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #8b0000, 0 0 40px #8b0000; 
}


header .title {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
  margin-left: 20px;
}

header .title h1 {
  margin: 0;
  font-size: 2em;
  line-height: 1.2;
  color: #fff; 
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #8b0000, 0 0 30px #8b0000; 
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

header .title h1:hover {
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #8b0000, 0 0 40px #8b0000; 
}

header .navbar {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

nav ul li a:hover {
  color: #00f2ff;
  text-shadow: 0 0 8px #00f2ff, 0 0 20px #00f2ff, 0 0 30px #00f2ff;
}

nav {
  background-color: #1a1a1a;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(139, 0, 0, 0.6);
}


.menu {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.menu h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 20px;
}

.menu-box {
  background-color: #444;
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

.menu-item {
  background-color: #555;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.menu-item img:hover {
  transform: scale(1.05);
}

.menu-item h3 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #fff;
}

.menu-item p {
  font-weight: bold;
  color: #e67e22;
  font-size: 1.1em;
}

footer {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #000 0%, #8b0000 100%);
  color: #fff;
}

footer .social-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-links a:hover {
  color: #f39c12;
}

.special-items {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.special-items h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 20px;
}

.special-items-box {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.special-item {
  background-color: #555;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 250px;
  transition: background-color 0.3s ease;
}

.special-item img {
  width: 100%;
  border-radius: 8px;
}

.special-item h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.special-item p {
  font-weight: bold;
  color: #e67e22;
  font-size: 1.1em;
}

.slideshow {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.slideshow h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 20px;
}

.slideshow-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 800px;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  border-radius: 8px;
}

.contact {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.contact h2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  background: #444;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  color: #fff;
  font-size: 1.1em;
  display: block;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  background: #555;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1.1em;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #f39c12;
  outline: none;
}

textarea {
  resize: vertical;
  height: 120px;
}

.honeypot {
  display: none;
}

button[type="submit"] {
  background-color: #d9534f;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

button[type="submit"]:hover {
  background-color: #c7443a;
}

.contact p {
  font-size: 1.2em;
  margin-top: 20px;
}

.contact p.success {
  color: green;
}

.contact p.error {
  color: red;
}


.about {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.about h2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about p {
  color: #ccc;
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.about img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

.about img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 480px) {
  header {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  header .logo img {
    height: 40px;
  }

  header .title h1 {
    font-size: 1.5em;
  }

  header .navbar {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }

  .menu h2, .special-items h2, .slideshow h2, .contact h2, .about h2 {
    font-size: 1.5em;
  }

  .menu-box, .special-items-box {
    padding: 10px;
    width: 100%;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .special-items-box {
    flex-direction: column;
    gap: 20px;
  }

  .special-item {
    width: 100%;
  }

  .about img {
    max-width: 100%;
  }

  .contact form {
    padding: 15px;
  }

  .contact button {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  header {
    grid-template-columns: 1fr 2fr 1fr;
    text-align: center;
  }

  header .logo img {
    height: 45px;
  }

  header .title h1 {
    font-size: 1.8em;
  }

  header .navbar {
    grid-column: 3;
  }

  .menu h2, .special-items h2, .slideshow h2, .contact h2, .about h2 {
    font-size: 1.8em;
  }

  .menu-box {
    width: 90%;
  }

  .special-items-box {
    flex-direction: row;
    gap: 30px;
  }

  .special-item {
    width: 220px;
  }

  .about img {
    width: 80%;
  }

  .contact form {
    width: 90%;
  }

  .contact button {
    font-size: 1.1em;
  }
}

.map {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
}

.map h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 20px;
}

.map-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

iframe {
  border-radius: 8px;
}


.about {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
  color: #fff;
  min-height: 100vh;
}

.about h2 {
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about p {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
}

.about-img {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.about-details {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.about-details h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #f39c12;
}

.about-details p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}


.testimonials {
  background: #444;
  padding: 40px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.testimonials h3 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #f39c12;
}

.testimonial {
  background-color: #555;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.testimonial span {
  font-weight: bold;
  color: #f39c12;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2.2em;
  }

  .about p {
    font-size: 1.1em;
  }

  .about-img {
    max-width: 90%;
  }

  .about-details {
    margin: 20px 10px;
  }

  .testimonials h3 {
    font-size: 2em;
  }

  .testimonial p {
    font-size: 1em;
  }
}

.waiver-container {
  background-color: #333; 
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.waiver-container h2 {
  color: #ff6347;
  font-size: 2em;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ff6347, 0 0 15px #ff0000;
}

.waiver-text {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.6;
}

.waiver-text ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.waiver-text ul li {
  margin: 10px 0;
}

.waiver-text strong {
  color: #f39c12; 
}

.waiver-button {
  display: block;
  width: 100%;
  background-color: #ff6347;
  color: white;
  padding: 15px 0;
  font-size: 1.5em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.waiver-button:hover {
  background-color: #ff4500;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.7); 
}