@import url("https://fonts.googleapis.com/css2?family=Playwrite+AU+QLD:wght@100..400&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Playwrite AU QLD", sans-serif;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
.header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background-color: rgb(207, 255, 238);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header_left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 2rem;
}
.header img {
  height: 80px;
}
.header_right {
  display: flex;
  align-items: center;
  padding-right: 2rem;
}
.menu-opt {
  text-decoration: none;
  font-size: 1.2rem;
  color: black;
  margin-right: 12px;
  background-color: rgb(180, 251, 226);
  padding: 0.5rem 1rem;
  border-radius: 5rem;
}
.hero {
  padding: 7rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8rem;
  background: linear-gradient(rgb(207, 255, 238), white);
}
.hero-image {
  height: 600px;
  border-radius: 50%;
}
.intro h1 {
  font-size: 4rem;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
}
.intro p {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 500;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin-top: 2rem;
}
.off-btn {
  background-color: rgb(174, 238, 215);
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  border-radius: 2rem;
}
.hero-btns {
  display: flex;
  justify-content: space-around;
  gap: 5rem;
  padding: 2rem 6rem;
}
.hero-btn {
  display: flex;
  gap: 2rem;
  border: 0.5px solid gray;
  width: 25rem;
  padding: 1rem;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}
.hero-btn h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: larger;
  margin-bottom: 1rem;
}
.hero-icon {
  width: 7rem;
  height: 7rem;
}
.hero-btn:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  border: none;
  transform: scale(1.07);
}
.about-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 1.5rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1rem 4rem;
}
.about-image {
  width: 500px;
  border-radius: 2rem;
}
.about-description {
  text-align: center;
  background-color: rgb(249, 246, 242);
  padding: 2.5rem;
  border-radius: 2rem;
}
.about-des1,
.about-des2,
.about-des3 {
  line-height: 2.2;
}
.about-des2,
.about-des3 {
  margin-top: 1.5rem;
}
.menu-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 1.5rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin-bottom: 2rem;
}
.menu-container {
  display: grid;
  grid-template-areas:
    "i1 i1 i2 i3"
    "i1 i1 i2 i4"
    "i7 i6 i5 i4";
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.menu-image1 {
  grid-area: i1;
}
.menu-image2 {
  grid-area: i2;
}
.menu-image3 {
  grid-area: i3;
}
.menu-image4 {
  grid-area: i4;
}
.menu-image5 {
  grid-area: i5;
}
.menu-image6 {
  grid-area: i6;
}
.menu-image7 {
  grid-area: i7;
}
.menu-image1,
.menu-image2,
.menu-image3,
.menu-image4,
.menu-image5,
.menu-image6,
.menu-image7{
    border-radius: 2rem;
    width: 100%;
    height: 100%;
}
.menu-image1:hover,
.menu-image2:hover,
.menu-image3:hover,
.menu-image4:hover,
.menu-image5:hover,
.menu-image6:hover,
.menu-image7:hover{
    transform: scale(1.05); 
    transition: 0.3s ease-in-out;
}
.contact-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 1.5rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
}
.contact-image {
  width: 70px;
}
.contact-left {
  margin: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.information {
  display: flex;
  gap: 2rem;
}
.information h5 {
  font-size: 1.2rem;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50rem;
}
.contact-form h2 {
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid gray;
  font-size: 1rem;
  background-color: rgb(247, 247, 246);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}
.form-btn {
  border: none;
  padding: 1rem;
  background-color: rgb(174, 238, 215);
  border-radius: 5rem;
  width: 20rem;
  align-self: center;
}
.footer{
    background-color: rgb(207, 255, 238);
    padding: 2rem;
}
.footer p{
    text-align: center;
}

@media (max-width: 1440px) {
  .hero-btns {
    padding: 2rem;
  }
}
@media (max-width: 1024px) {
  .hero-btns {
    flex-direction: column;
    padding: 2rem;
    align-items: center;
  }
  .hero {
    flex-direction: column-reverse;
  }
  .hero-image {
    height: 500px;
  }
  .about-image {
    display: none;
  }
  .about-container {
    padding: 2rem;
    gap: 0;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-left {
    margin: 2rem 2rem 4rem 2rem;
  }
  .contact-form {
    width: 30rem;
  }
}
@media (max-width: 425px) {
  .header_right {
    display: none;
  }
  .hero-image {
    height: 300px;
  }
  .hero {
    padding: 2rem;
    gap: 4rem;
  }
  .hero-btn {
    width: 22rem;
  }
  .intro h1 {
    font-size: 2.5rem;
  }
  .intro p {
    font-size: 1.2rem;
  }
  .about-description {
    padding: 1.5rem;
  }
  .about-des1 {
    font-size: 1.2rem;
  }
  .about-des2 {
    font-size: 0.8rem;
  }
  .about-des3 {
    font-size: 0.8rem;
  }
  .menu-container{
    padding: 1rem;
    gap: 0.5rem;
  }
  .contact-container {
    padding: 1rem;
  }
  .contact-left {
    margin: 2rem 0;
  }
  .contact-form {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .hero-btns {
    padding: 1rem;
  }
  .hero-btn {
    width: 15rem;
    flex-direction: column;
    text-align: center;
  }
  .about-container {
    padding: 1rem;
  }
  .about-description {
    padding: 1rem;
  }
  .menu-image1,
  .menu-image2,
  .menu-image3,
  .menu-image4,
  .menu-image5,
  .menu-image6,
  .menu-image7{
    border-radius: 1rem;
}
}
@media (max-width: 320px) {
    .header_left h2{
        font-size: 1.2rem;
    }
  .intro h1 {
    font-size: 2rem;
  }
  .hero-image {
    height: 250px;
  }
  .about-description {
    padding: 0.5rem;
  }
  .about-des1,
  .about-des2,
  .about-des3 {
    margin-top: 0.5rem;
  }
  .about-des1 {
    font-size: 0.9rem;
  }
  .about-des2 {
    font-size: 0.7rem;
  }
  .about-des3 {
    font-size: 0.6rem;
  }
  .contact-form {
    display: none;
  }
  .contact-left {
    margin: 2rem 0;
  }
  .information {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .information h5 {
    font-size: 1rem;
    text-align: center;
  }
  .information p {
    font-size: 0.9rem;
    text-align: center;
  }
}