* {
  margin: 0;
  padding: 0;

}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {

  .playfair-display-<uniquifier> {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    overflow-x: hidden;
  }
}

#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(image/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(40%);
}

#hero_content {
  position: absolute;
}

#hero_content h1 {
  color: cornflowerblue;
  font-size: 2.9rem;
  text-shadow: 2px 2px 2px #000;
}

#hero_content h2 {
  color: chocolate;
  font-size: 2rem;
  font-family: cursive;
  margin-top: 1rem;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 2px #000;
}

#hero_content a {
  color: black;
  padding: 6px 20px 6px 20px;
  border: 1px solid red;
  background: rbg(0, 0, 0, 0.7);
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 25px;
}

#hero_content a:hover {
  background: palevioletred;
}




#header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 70px;
  line-height: 70px;
}

#navbar {
  display: flex;
  justify-content: space-around;
  background: rgb(0, 0, 0, 0.5);
}

#navbar h1 {
  color: orange;
  font-size: 1.8rem;
  text-shadow: 2px 2px 2px #000;
  font-family: cursive;

}

#navbar ul {
  display: flex;
}

#navbar ul li {
  list-style: none;
  padding: 3px 15px 3px 15px;
}

#navbar ul li:hover,
.signin:hover,
.signup:hover,
#mobile_menu ul li:hover {
  background: palevioletred;
  cursor: pointer;

}

#navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

#login-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 320px;
}

#login-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 15px;
}

.form-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-field button {
  width: 100%;
  padding: 10px;
  background-color: #ff7b00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-field button:hover {
  background-color: #e56c00;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #333;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

#mobile_menu {
  display: none;
  height: 40px;
  line-height: 40px;
  background-color: antiquewhite;
}

#mobile_menu ul {
  display: flex;
  justify-content: center;
}

#mobile_menu ul li {
  list-style: none;
  padding: 0 5px 0 5px;
  text-decoration: none;
  color: aliceblue;
}

#menu {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.menu-card {
  background-color: white;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.3s;
}

.menu-card:hover {
  transform: scale(1.05);
}

.menu-card h3 {
  margin: 0;
  color: #d35400;
}

.menu-card p {
  font-size: 14px;
  color: #555;
}

.menu-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #27ae60;
}

/* Login Section */
#login {
  padding: 50px 20px;
  background-color: #fff;
}

#loginForm {
  max-width: 400px;
  margin: auto;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#loginForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

#loginForm input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#loginForm button {
  width: 100%;
  padding: 12px;
  background-color: #f56a00;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#loginForm button:hover {
  background-color: #e65c00;
}

/* Service Section */
#service {
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.service-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1em;
  color: #555;
}

/* About Section */
#about {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.about-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: scale(1.05);
}

.about-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1em;
  color: #555;
}

/* Contact Section */
#contact {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  width: 45%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 45%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1em;
  color: #555;
}

.contact-form label {
  font-size: 1em;
  margin-bottom: 8px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.contact-form button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #45a049;
}

/* Home Section */
#home {
  background-image: url('https://via.placeholder.com/1500x800');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
}

.home-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.home-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.home-content a {
  color: white;
  background-color: #4CAF50;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

.home-content a:hover {
  background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #home {
    padding: 80px 20px;
  }

  .home-content h1 {
    font-size: 2.5em;
  }

  .home-content p {
    font-size: 1.1em;
  }

  .home-content a {
    font-size: 1.1em;
    padding: 10px 15px;
  }
}



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




  @media screen and (max-width:768px) {
    #mobile_menu {
      display: block;
    }

    #navbar ul {
      display: none
    }

    html {
      font-family: 95%;
    }
  }

  @media screen and (max-width:360px) {
    html {
      font-size: 70%;
    }
  }