/* * Global styles */

@font-face {
  font-family: "Lato";
  src: url("./Lato/Lato-Regular.ttf");
}

@font-face {
  font-family: "Rufina";
  src: url("./Rufina/Rufina-Bold.ttf");
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.btn {
  font-family: "Rufina";
  height: 4rem;
  font-size: 1.5rem;
  color: white;
  padding: 0 2.5rem;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn.clear {
  background-color: rgba(0, 0, 0, 0);
}

/* * Header styles */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("menu-header.png");
  padding: 1rem 5rem 8rem 5rem;
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  width: 100%;
}

.navbar .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar .nav-menu {
  width: 3rem;
  height: auto;
  display: none;
}

.navbar .logo {
  height: 5rem;
}

.navbar .right .phone {
  font-family: "Lato";
  font-size: 1.2rem;
}

.page-header .hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.title {
  font-family: "Rufina";
  font-size: 8rem;
  width: 70%;
  line-height: 0.9;
  margin: 0;
}

.subtitle {
  font-family: "Rufina";
  font-size: 1.7rem;
  margin-top: 2rem;
  width: 60%;
}

/* * Main Content styles */
main {
  overflow-x: hidden;
}

.section-heading-container {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
}

.section-heading-container .section-title {
  font-family: "Rufina";
  font-size: 5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.section-heading-container .section-subtitle {
  font-family: "Lato";
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 8rem;
  gap: 4rem;
}

.menu-container .menu-img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.menu-container .menu-options {
  width: 50%;
}

/* Menu Item styles */
.menu-container .menu-item {
  margin-bottom: 3rem;
}

.menu-container .menu-item > p {
  font-size: 2.5rem;
  font-family: "Rufina";
  text-align: right;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.menu-container .menu-item .item-info {
  border-top: 4px dotted black;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.menu-container .menu-item .item-info h3 {
  font-size: 3.6rem;
  font-family: "Rufina";
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.menu-container .menu-item .item-info p {
  font-family: "Lato";
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
}

/* Make a reservation styles */
.reservation-container {
  background-color: #ebf0e4;
  padding: 8rem 8rem;
  text-align: center;
}

.reservation-container .scheduling-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4rem;
  gap: 2rem;
}

.scheduling-container input,
.scheduling-container select {
  flex: 1;
  height: 5rem;
  border: 2px solid black;
  padding: 0 2rem;
  background-color: #ebf0e4;
  font-size: 1.5rem;
  font-family: "Lato";
  box-sizing: border-box;
}

.btn.primary {
  background-color: #233000;
  border: 2px solid black;
  margin-top: 4rem;
  padding: 0 4rem;
}

.btn.primary:hover {
  background-color: #2d4000;
}

/* Footer styles */
footer {
  background-color: #233000;
  color: white;
}

.contact-container {
  padding: 5rem 8rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
}

.contact-container .left {
  flex: 0 0 auto;
}

.contact-container .middle {
  flex: 0 0 auto;
}

.contact-container .right {
  flex: 1;
  max-width: 400px;
}

.left .footer-title {
  font-family: "Rufina";
  font-size: 3.5rem;
  margin: 0;
}

.contact-container .footer-subtitle {
  font-family: "Rufina";
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-container .middle p {
  font-family: "Lato";
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-container .newsletter-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-container .newsletter-container input {
  flex: 1;
  height: 4rem;
  border: 2px solid white;
  background-color: #233000;
  padding-left: 2rem;
  font-size: 1.2rem;
  color: white;
}

.contact-container .newsletter-container input::placeholder {
  color: #ccc;
}

.btn.secondary {
  border: none;
  background-color: #5e6600;
  white-space: nowrap;
}

.btn.secondary:hover {
  background-color: #6d7300;
}

.newsletter-info {
  font-family: "Lato";
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0;
}

.copyright-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8rem 5rem 8rem;
  font-family: "Lato";
  border-top: 2px dashed white;
  font-size: 1.2rem;
}

.socials-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.socials-container img {
  width: 2rem;
  height: 2rem;
}

/* RESPONSIVE MEDIA QUERIES */

/* Large tablets and small desktops */
@media screen and (max-width: 1200px) {
  .title {
    font-size: 6rem;
    width: 80%;
  }

  .subtitle {
    width: 70%;
  }

  .menu-container {
    padding: 3rem 4rem;
    gap: 3rem;
  }

  .reservation-container {
    padding: 6rem 4rem;
  }

  .contact-container {
    padding: 4rem;
  }

  .copyright-container {
    padding: 3rem 4rem 4rem 4rem;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 1rem 2rem 6rem 2rem;
  }

  .navbar {
    height: 4rem;
  }

  .navbar .logo {
    height: 4rem;
  }

  .navbar .nav-menu {
    display: block;
    width: 2.5rem;
  }

  .navbar .right {
    gap: 1rem;
  }

  .navbar .right .phone {
    display: none;
  }

  .btn {
    height: 3.5rem;
    font-size: 1.3rem;
    padding: 0 2rem;
  }

  .title {
    font-size: 4.5rem;
    width: 90%;
    line-height: 0.9;
  }

  .subtitle {
    font-size: 1.4rem;
    width: 85%;
  }

  .section-heading-container .section-title {
    font-size: 4rem;
  }

  .menu-container {
    flex-direction: column;
    padding: 2rem;
    gap: 3rem;
  }

  .menu-container .menu-img,
  .menu-container .menu-options {
    width: 100%;
  }

  .menu-container .menu-item .item-info h3 {
    font-size: 2.8rem;
  }

  .menu-container .menu-item > p {
    font-size: 2rem;
  }

  .reservation-container {
    padding: 4rem 2rem;
  }

  .reservation-container .scheduling-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .scheduling-container input,
  .scheduling-container select {
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 3rem;
    text-align: center;
  }

  .contact-container .left,
  .contact-container .middle,
  .contact-container .right {
    width: 100%;
    max-width: none;
  }

  .contact-container .newsletter-container {
    flex-direction: column;
    gap: 1rem;
  }

  .copyright-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    text-align: center;
  }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
  .page-header {
    padding: 1rem 1rem 4rem 1rem;
    min-height: 80vh;
  }

  .navbar .logo {
    height: 3rem;
  }

  .navbar .nav-menu {
    width: 2rem;
  }

  .btn {
    height: 3rem;
    font-size: 1.1rem;
    padding: 0 1.5rem;
  }

  .title {
    font-size: 3.5rem;
    width: 100%;
  }

  .subtitle {
    font-size: 1.2rem;
    width: 100%;
  }

  .section-heading-container {
    padding: 3rem 1rem 2rem 1rem;
  }

  .section-heading-container .section-title {
    font-size: 3rem;
  }

  .section-heading-container .section-subtitle {
    font-size: 1rem;
  }

  .menu-container {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .menu-container .menu-item {
    margin-bottom: 2rem;
  }

  .menu-container .menu-item .item-info h3 {
    font-size: 2.2rem;
  }

  .menu-container .menu-item > p {
    font-size: 1.8rem;
  }

  .menu-container .menu-item .item-info p {
    font-size: 1rem;
  }

  .reservation-container {
    padding: 3rem 1rem;
  }

  .scheduling-container input,
  .scheduling-container select {
    height: 4rem;
    font-size: 1.2rem;
  }

  .contact-container {
    padding: 2rem 1rem;
  }

  .left .footer-title {
    font-size: 2.5rem;
  }

  .contact-container .footer-subtitle {
    font-size: 1.5rem;
  }

  .copyright-container {
    padding: 2rem 1rem;
    font-size: 1rem;
  }
}

/* Extra small devices */
@media screen and (max-width: 320px) {
  .title {
    font-size: 2.8rem;
  }

  .section-heading-container .section-title {
    font-size: 2.5rem;
  }

  .menu-container .menu-item .item-info h3 {
    font-size: 1.8rem;
  }

  .menu-container .menu-item > p {
    font-size: 1.5rem;
  }

  .left .footer-title {
    font-size: 2rem;
  }
}
