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

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

.nav {
  height: 130px;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  padding: 0 px;
  text-decoration: none;
  gap: 60px;
  position: fixed;
  justify-content: flex-start;
  z-index: 999;
}

.nav a {
  font-size: 20px;
  font-weight: bold;
}

video {
  object-fit: cover;
  z-index: -1;
  position: fixed;
  filter: blur(6px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  z-index: -1;

}

.main {
  position: relative;

}



.pg1 {
  height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pg1 h1 {
  text-shadow: #000;
  font-size: 65px;
}

.pg1 h2 {

  margin-bottom: 10px;
  font-size: 40px;
}

.pg1 p {
  width: 82%;
  font-size: 25px;
  align-items: center;
}

.about {
  opacity: 1;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  scroll-margin-top: 80px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding: 20px;
}

.about-img img {

  border-radius: 15px;
  display: block;
  padding-left: 10px;
  margin-top: 40px;
  margin-left: 3%;
  height: 270px;
  width: 300px;
}

.about-txt {
  color: white;
  align-items: flex-start;
  text-align: center;
}


.about-txt h1 {
  margin-bottom: 15px;
  text-transform: uppercase;
  align-self: flex-start;
  text-align: center;
  font-weight: bold;
  margin-top: 50px;
  font-size: 45px;
}

.about-txt h3 {

  margin-bottom: 30px;
  font-style: italic;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  align-self: flex-start;
}


.about-txt h4 {
  font-style: italic;
  text-align: center;
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  align-self: flex-start;
  align-items: center;
}


.about-txt p {
  font-size: 25px;
  font-weight: bold;
  width: 80%;
  margin-left: 70px;
  text-align: center;
  font-family: cooper;
  padding-bottom: 20px;
  padding-top: 10px;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  padding-top: 5px;
  margin-right: 10px;
  background-color: "#49111c";
  color: white;
  text-align: center;
}

.counter h2 {
  font-size: 3em;
  margin-bottom: 0.5em;
}


@media screen and (max-width: 900px) {
  .counters {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 500px) {
  .counters {
    grid-template-columns: 1fr;
    row-gap: 2em;
  }
}

.wrapper .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: black;
  border-radius: 12%;
  margin: 10px;
  transition: all 0.3s ease;
}

.wrapper .button .icon {
  font-size: 25px;
  color: white;
}


.button.facebook {
  background-color: #1877F2;
}

.button.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.button.whatsapp {
  background-color: #09ce83;
}

.wrapper .button:hover {
  width: 100px;
  transition: 0.1s;
  transform: scale(1.1);
  filter: brightness(1.2);
}

.op {
  height: 60px;
  width: 100%;
  background: #6a6a77c7;
  opacity: 1;
}

.op2 {
  height: 60px;
  width: 100%;
  background: #6a6a77c7;
  opacity: 1;
}

.op3 {
  height: 60px;
  width: 100%;
  background: #6a6a77c7;
  opacity: 1;
}

.menu {
  width: 100%;
  min-height: 100vh;
  background: #6a6a77c7;
  opacity: 1;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 20px;
}

.menu-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  color: #fff;
}

.menu-container h1 {
  padding-top: 20px;
  font-size: 3rem;
  margin-bottom: 50px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.menu-item {
  background: #ababac;
  color: black;
  margin-top: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 100%;
  height: 250px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  display: block;
}

.menu-item-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.menu-item h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000;
}

.menu-item p {
  font-size: 0.95rem;
  color: black;
  margin-bottom: 15px;
  flex-grow: 1;
}

.menu-item .price {
  font-weight: bold;
  color: black;
  font-size: 1rem;
  margin-top: auto;
}

.menu-item img {
  transition: transform 0.3s ease;
}

.menu-item:hover img {
  transform: scale(0.95);
}

.reviews {
  min-height: 100vh;
  width: 100%;
  text-align: center;
  padding: 60px 20px;
background: #6a6a77c7;
  opacity: 1;
  color: black;
}

.reviews h1 {
    font-size: 3rem;
  margin-bottom: 50px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}


.reviews h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 50px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #ababac;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card span {
  font-size: 28px;
  color: black;
}
.card span i{
color: #000;
}

.card h4 {
  font-size: 25px;
  margin: 15px 0;
  font-weight: 800;
  color: black;
}

.card p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: black;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h5 {
  font-size: 25px;
  font-weight: 700;
  color: black;
}

.leave-review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ababac; 
  color: black;
  text-align: center;
  padding: 40px 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  grid-column: 1 / -1;  
  max-width: 600px;     
  margin: 0 auto;       
}

.leave-review:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.leave-review h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: black; 
}

.leave-review p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  margin-bottom: 25px;
  max-width: 280px;
}

.leave-review button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  background-color: b;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.leave-review button:hover {
  background-color: #ababac;
  transform: translateY(-3px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact {
  width: 100%;
  min-height: 100vh;
  background-color: #6a6a77c7; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  font-size: 50px;
  font-weight: 900;
  color: white; 
  margin-bottom: 10px;
}

.contact-container h2 {
  font-size: 35px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
  background-color: #ababac;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: black;
  background-color: #ababac;
}

.contact-form button {
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid black;
  border-radius: 8px;
  background-color: #ababac;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #ababac;
  transform: translateY(-3px);
}

.contact-info p {
  font-size: 20px;
  color: black;
  margin: 8px 0;
}


.footer {
  width: 100%;
  background-color: #6a6a77c7;
  opacity: 1; 
  display: flex;
  justify-content: center;
  margin-top:0;
  padding-top: 0;
  align-items: center;
  padding: 60px 20px;
}


.footer-card {
  background:  #ababac;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 800px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}


.footer-card h3 {
  font-size: 35px;
  margin-bottom: 20px;
  color: black; 
}

.footer-info p {
  margin: 8px 0;
  color: black;
  font-size: 30px;
}

.footer-socials {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-socials a {
  color: black;
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}


.footer-copy {
  margin-top: 20px;
  font-size: 14px;
  color: black;
}

.footer-socials .fb:hover {
  color: #1877F2;
  transform: translateY(-3px);
}

.footer-socials .wp:hover {
  color:#09ce83 ;
  transform: translateY(-3px);
}

.footer-socials .ig:hover {
  color: #d6249f;
  transform: translateY(-3px);
}





@media screen and (max-width: 1024px) {
  .nav {
    gap: 30px;
    padding: 0 15px;
  }

  .pg1 h1 {
    font-size: 50px;
  }

  .pg1 h2 {
    font-size: 30px;
  }

  .pg1 p {
    font-size: 20px;
    width: 90%;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .about-img img {
    margin: 10px auto;
    height: 220px;
    width: 250px;
  }

  .about-txt p {
    margin-left: 0;
    width: 100%;
    font-size: 20px;
  }
}


@media screen and (max-width: 768px) {
  .nav {
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px;
  }

  .nav a {
    display: none; 
  }


  .nav::after {
    content: "☰";
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
  }

  .pg1 h1 {
    font-size: 36px;
  }

  .pg1 h2 {
    font-size: 22px;
  }

  .pg1 p {
    font-size: 18px;
  }

  .counters {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .menu-container h1,
  .reviews h1,
  .contact-container h1 {
    font-size: 28px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-container h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .footer-card {
    padding: 20px;
  }

  .footer-info p {
    font-size: 18px;
  }
}


@media screen and (max-width: 480px) {
  .pg1 h1 {
    font-size: 28px;
  }

  .pg1 h2 {
    font-size: 18px;
  }

  .pg1 p {
    font-size: 14px;
    width: 95%;
  }

  .about-img img {
    width: 90%;
    height: auto;
  }

  .counters {
    grid-template-columns: 1fr;
  }

  .menu-item img {
    height: 200px;
  }

  .card img {
    height: 200px;
  }

  .footer-info p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .pg1 {
    min-height: 100vh;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .background-video {
    object-fit: cover;
    min-height: 100vh;
  }
}
