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: #ff9966;
  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;
}

body {
  font-family: "Roboto", sans-serif;
  background: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.header_div {
  background-color: #1a1a1a;
  border-bottom: 3px solid #0ff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px #0ff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #0ff;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

section iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
}

.cookies-div {
  background-color: #1a1a1a;
  border: 1px solid #0ff;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px #0ff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookies-div p {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
}

#acceptButton {
  background-color: #0ff;
  color: #121212;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#acceptButton:hover {
  background-color: #0cc;
}

.footer {
  background-color: #1a1a1a;
  padding: 40px 20px 20px;
  border-top: 3px solid #0ff;
  box-shadow: 0 -2px 10px #0ff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-logo,
.footer-contact,
.footer-hours {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #e0e0e0;
  font-size: 16px;
}

.footer-contact h3,
.footer-hours h3 {
  color: #0ff;
  font-size: 18px;
  margin-bottom: 10px;
}

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

.footer-links {
  text-align: center;
  margin-top: 20px;
}

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

.footer-links ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
  position: relative;
  transition: color 0.3s;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #0ff;
  transition: width 0.3s;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #0ff;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact,
  .footer-hours {
    text-align: center;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #e0e0e0;
  text-shadow: 0 0 10px #0ff;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0ff;
  color: #121212;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #0cc;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
}

.about-us {
  background-color: #121212;
  padding: 60px 20px;
  color: #e0e0e0;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.about-image {
  flex: 1 1 45%;
}
.about-image img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 10px #0ff;
}
.about-content {
  flex: 1 1 55%;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #e0e0e0;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}

.services-detail {
  background-color: #121212;
  padding: 60px 20px;
  color: #e0e0e0;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services-container h2 {
  font-size: 3rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  margin-bottom: 20px;
}
.services-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.service-item {
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #0ff;
  border-radius: 5px;
  box-shadow: 0 0 10px #0ff;
  transition: transform 0.3s;
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-item img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
  object-fit: cover;
}
.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}
.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.services-extra h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}
.services-extra p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-container h2 {
    font-size: 2.5rem;
  }
  .services-extra h3 {
    font-size: 1.8rem;
  }
}

.contact {
  background-color: #121212;
  padding: 60px 20px;
  color: #e0e0e0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}
.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}
.contact-info img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 10px #0ff;
  margin-top: 20px;
}
.contact-form {
  flex: 1 1 60%;
  background-color: #1a1a1a;
  padding: 30px;
  border: 1px solid #0ff;
  border-radius: 5px;
  box-shadow: 0 0 10px #0ff;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #0ff;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #007bff;
  border-radius: 3px;
  background-color: #121212;
  color: #e0e0e0;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0ff;
  box-shadow: 0 0 5px #0ff;
}
.contact-form button {
  background-color: #007bff;
  color: #121212;
  border: none;
  padding: 12px;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #0056b3;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.gallery {
  background-color: #121212;
  padding: 60px 20px;
  color: #e0e0e0;
  text-align: center;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border: 3px solid #007bff;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #0ff;
}
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
