body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.header {
  background-color: #fff;
  color: black;
  padding: 10px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  max-width: 500px;
  height: auto;
}

.navbar {
  display: flex;
  justify-content: flex-end;
}

.navbar a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 20px;
  margin-left: 10px;
  font-weight: bold;
}

.navbar a:hover {
  background-color: #777;
}

.hero-section {
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  width: 100%;
  position: relative;
}

.hero-section::after {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content img {
  max-width: 200px;
  height: auto;
}

.hero-content h2 {
  margin-top: 0;
  font-size: 60px;
}

.hero-content p {
  margin-top: 0;
  font-size: 30px;
}

.about-section,
.services-section {
  padding: 20px;
  text-align: center;
  width: 100%;
}

.about-section {
  padding-left: 400px;
  padding-right: 400px;
}

.about-image {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 25px;
}

.testimonial-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
}

.testimonial-card {
  flex-basis: 30%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin: 10px;
  padding: 20px;
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  text-align: center;
}

.testimonial-author p {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex-basis: 100%;
  }
}


.title {
  background-color: #333;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 0;
  padding: 10px 0;
}

.services-section {
  background-color: #fff;
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer p {
  text-align: center;
}

.creator {
  text-align: center;
  opacity: 0.5;
}

.creator-link {
  text-decoration: none;
  color: inherit;
}

.creator-link:hover {
  text-decoration: underline;
}

.product-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
}

.product-card {
  flex-basis: 30%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin: 10px;
  padding: 20px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.contact-section {
  padding: 50px 0;
  background-color: #f4f4f4;
  color: #333;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contact-section .container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
}

.contact-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 15px 0;
}

.contact-info p {
  background: #fff;
  display: inline-block;
  margin: 10px;
  padding: 15px 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .contact-section .container {
      width: 90%;
  }

  .contact-section h2 {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-card {
      flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .product-card {
      flex-basis: 100%;
  }
}

.social-circle {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2c8a01;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 24px;
  position: relative;
}

.social-icon i.fa-times {
  display: none;
}

.social-icon.active i.fa-comment {
  display: none;
}

.social-icon.active i.fa-times {
  display: inline-block;
  color: #fff;
}

.hidden {
  transform: translateY(60px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.booking-section {
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-section p {
  margin-top: 100px;
  margin-bottom: 60px;
  font-size: 18px;
}

.booking-section ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 60px;
}

.booking-section ul li {
  margin-bottom: 10px;
}

.booking-section ul li a {
  color: #2ecc71;
  text-decoration: none;
}

.booking-section button {
  background-color: #2ecc71;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 50px;
}

.booking-section button:hover {
  background-color: #27ae60;
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .logo {
    max-width: 80px;
  }

  .navbar a {
    font-size: 16px;
    padding: 10px 15px;
  }

  .hero-section {
    height: auto;
    padding: 50px 20px;
  }

  .hero-content h2 {
    font-size: 40px;
  }

  .about-section,
  .services-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-image,
  .product-card img {
    max-width: 100%;
  }

  .product-cards {
    flex-direction: column;
  }

  .product-card {
    flex-basis: 100%;
    margin: 10px 0;
  }

  .contact-section .container {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar a {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }

  .hero-content h2 {
    font-size: 35px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .contact-info p {
    padding: 10px 15px;
  }

  .about-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content img {
    width: 60%;
  }

  .logo {
    max-width: 500px;
    height: auto;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .social-circle {
    right: 10px;
  }
}

.burger {
  display: none;
  cursor: pointer;
}

.burger i {
  font-size: 24px;
}

@media (max-width: 480px) {
  .hero-section {
    height: 600px;
  }

  .burger {
    padding-right: 20px;
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: top 0.3s;
    z-index: 999;
    text-align: center;
  }

  .navbar a {
    background-color: #fff;
    display: flex;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #000;
  }

  .navbar.active {
    display: flex;
    top: 100%;
  }
}

