@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

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

body {
    font-family: "Quicksand", sans-serif;
}

header {
    height: 100vh;
    background: url(./img/home_bg.jpeg) center center / cover no-repeat;
    position: relative;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: auto;
}

ul {
    list-style: none;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar img {
    width: 70px;
}

#navbar ul {
    display: flex;
    margin-right: 100px;
}

#navbar ul li a {
    padding: 15px 20px;
    color: white;
    font-weight: 600;
}

#navbar ul li a:hover {
    border-bottom: 2px solid #e4b95b;
}

header .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 93%;
}

.content h1 {
    font-size: 40px;
    color: #fff;
}

.content p {
    margin: 20px 0 40px;
    color: #fff;
}

.primary-text {
    color: #e4b95b;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.btn-primary:hover {
    background-color: #e4b95b;
}

.btn-secondary {
    color: #fff;
    background: #383848;
    margin-top: 13px;
}

.btn-secondary:hover {
    background-color: #e4b95b;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

header * {
    position: relative;
    z-index: 10;
}

/* About Section */

#about {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

#about .title,
#offers .title,
#menu .title {
    text-align: center;
    margin-bottom: 20px;
}

#offers h2,
#about h2,
#menu h2,#gallery h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#offers h2 {
    color: #e4b95b;
}

#about h2,
#menu h2 {
    color: #383848;
}

#about .title p,
#menu .title p {
    font-size: 14px;
    color: #9a9a9a;
    font-weight: 600;
}

#offers .title p {
    color: #fff;
    font-weight: 500;
}

#about .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about .about-content img {
    width: 450px;
}

/* Offers Section */

#offers {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(./img/offer-background.jpg) center center / cover fixed no-repeat;
}

#offers .offers-items {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#offers .offers-items img {
    width: 200px;
}

#offers .offers-items h3 {
    font-size: 25px;
    margin: 15px 0;
}

#offers .offers-items p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    padding: 0 20px;
}

#offers .offers-items span {
    font-size: 18px;
    font-weight: 300;
    margin-left: 5px;
}

/* Menu Section */

#menu {
    background-color: #f4f4f4;
    padding: 5rem 0;
}

#menu .menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu .menu-items .menu-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px;
    position: relative;
}

#menu .menu-items .menu-item img {
    width: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

#menu .menu-items .menu-item h3 {
    color: #383848;
    border-bottom: 1px solid #c2bdbd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

#menu .menu-items .menu-item span {
    position: absolute;
    top: 0;
    right: 0;
    color: #e4b95b;
    font-weight: 600;
}

#menu .menu-items .menu-item p {
    margin-top: 10px;
}

#menu .btn {
    background-color: #e4b95b;
    color: #fff;
    display: block;
    margin: 20px auto 0;
    cursor: pointer;
    border: none;
}

#menu .btn:hover {
    background-color: #383848;
}

/* Daytime Section */

#daytime {
    background: url(./img/daytime_bg.jpeg) center center / cover fixed no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

#daytime .daytime-items {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 40vh;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

#daytime .daytime-item h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    text-align: center;
}
#daytime .daytime-item p {
  font-weight: 500;
  text-align: center;     
  margin-top: 10px;        
  color: #fff;             
  font-size: 16px;         
  letter-spacing: 0.5px;    
  line-height: 1.4;       
  padding: 0 10px;        
}

/* Gallery Section */
#gallery {
    background: url(./img/offer-background.jpg)center center/cover no-repeat;
padding: 8rem 0 6rem;
}
#gallery .img-gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#gallery h2{
    color: #fff;

}
#gallery .img-gallery img {
    width: 288px;
    height: 200px;
    border-radius: 15px;
    margin:20px ;
    opacity: 0.8;
}
#gallery .img-gallery img:hover{
    opacity:1;
}
#gallery h2 {
    text-align: center;
}
/* Contact Section */

#contact {
  padding: 50px 100px;
  background: #fff;
}

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

/* INFO PART */
.contact-content {
  flex: 1;
  min-width: 250px;
}

.contact-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #222;
}

.contact-content p {
  margin: 6px 0;
  color: #555;
}

.contact-content i {
  color: #f9b208;
  margin-right: 8px;
}

/* SOCIAL ICONS */
.contact-content a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-content a:hover {
  color: #f9b208;
}

/* FORM PART */
form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
}

form input,
form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  background: #ffffe6;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

form textarea {
  resize: none;
}

form button {
  padding: 12px;
  border: none;
  background: #e4b95b;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #555;
}
/* Footer Start */
#footer {
  background-color: #383848;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}


/* Responsiveness */
/* Medium Screen + Tablet */
@media (max-width: 1000px) {
  #navbar img {
    margin-left: 20px;
  }

  nav ul {
    margin-right: 20px;
  }

  nav ul li a {
    padding: 10px;
  }

  header .content h1 {
    font-size: 28px;
  }

  #about {
    height: auto;
    padding: 4rem 2rem;
  }

  #about .about-content p {
    margin-right: 2rem;
  }

  #about img {
    width: 250px;
  }

  #offers .offers-items img {
    width: 150px;
  }

  #offers .offers-items h3 {
    font-size: 18px;
  }

  #menu .menu-items {
    display: block;
  }

  #contact .contact-content {
    flex-direction: column;
  }

  /* Mobile Devices */
  @media (max-width: 600px) {
    #navbar {
      flex-direction: column;
    }

    #navbar img {
      margin-bottom: 20px;
    }

    header .content h1 {
      font-size: 18px;
    }

    header .content p {
      font-size: 14px;
    }

    #about .about-content {
      flex-direction: column;
    }

    #about .about-content a {
      margin: 2rem 0;
    }

    #about img {
      display: none;
    }

    #offers {
      height: auto;
      padding: 30px 10px;
    }

    #offers .offers-items {
      flex-direction: column;
    }

    #menu .menu-items .menu-item {
      margin: 20px 10px;
    }

    #daytime .daytime-items {
      display: block;
      height: auto;
      padding: 30px 0;
    }

    #daytime .daytime-items .daytime-item {
      margin-top: 20px;
    }

    #contact .contact-info,
    form {
      width: 80%;
    }
  }
}
