@import url("https://fonts.googleapis.com/css?family=Playfair+Display:1,300,400,400italic,500,700,700italic,900");

:root {
  --main-color: #d7c7ae;
  --primary-color: #8a6d46;
  --hover: #5a4d3e;
  --black: #2a201c;
  --white: #fff;
  --light-bg: #f3efec;
  --dark-bg: rgba(0, 0, 0, 0.7);
  --border: 0.1rem solid #aaa;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

* {
  font-family: "Playfair Display", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 0.6rem;
}

html::-webkit-scrollbar-track {
  background-color: var(--white);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

section {
  padding: 5rem 7%;
}

.heading {
  text-align: center;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 3rem;
  font-size: 4rem;
  margin-top: 4rem;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem 3rem;
}

.btn:hover {
  background: var(--hover);
}

/* header */

.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
}

.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
  text-transform: capitalize;
}

.header .navbar #close-navbar {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

.header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .navbar a:hover {
  padding-bottom: 0.5rem;
  color: var(--primary-color);
}

#menu-btn {
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

/* header */

/* home */

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../images/home-bg2.png) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.home .content::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  z-index: -1;
}

.home .content {
  max-width: 60rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(215, 199, 174, 0.8), transparent);
}

.home .content span {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.home .content h3 {
  color: var(--black);
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 900;
}
/* home */

/* about */

.about {
  background-image: url(../images/about-left.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about .row .image {
  flex: 1 1 39rem;
}

.about .row .image img {
  width: 100%;
}
.about .row .content {
  flex: 1 1 51rem;
  padding: 5rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: var(--primary-color);
}

.about .row .content p {
  font-size: 1.6rem;
  color: #444;
  padding: 1rem 0;
  line-height: 1.8;
}

.about .content .icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.about .content .icons-container .icons {
  flex: 1 1 16rem;
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .content .icons-container .icons img {
  height: 5rem;
}

.about .content .icons-container .icons h3 {
  padding-top: 1rem;
  font-size: 1.6rem;
  color: #444;
  font-weight: normal;
  text-transform: capitalize;
}

/* about */

/* services */

.services {
  background-color: var(--main-color);
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services .box-container .box:hover img {
  transform: scale(1.1);
}

.services .box-container .box .content {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: var(--dark-bg);
}

.services .box-container .box .content h3 {
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  text-transform: capitalize;
}

.services .box-container .box:hover .content {
  display: flex;
}

/* services */

/* styles */

.styles {
  background: var(--light-bg);
}

.styles .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.styles .box-container .box .image {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.styles .box-container .box .image img {
  object-fit: cover;
}

.styles .box-container .box .content {
  text-align: center;
}

.styles .box-container .box .content .title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-transform: capitalize;
}

.styles .box-container .box .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #444;
  padding: 1rem 0;
}

/* styles */

/* pricing */

.pricing {
  background: url("../images/pricing.jpg");
  background-attachment: fixed;
}

.pricing .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing .box-container .box {
  height: 500px;
  width: 300px;
  margin: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.9);
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--primary-color);
}

.pricing .box-container .box::before,
.pricing .box-container .box:after {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  opacity: 0.5;
}

.pricing .box-container .box::before {
  background: var(--light-bg);
  top: -10%;
  left: 80%;
}

.pricing .box-container .box::after {
  background: var(--main-color);
  bottom: -10%;
  right: 80%;
}

.pricing .box-container .box .title {
  margin: 30px 0;
  font-size: 26px;
  color: var(--main-color);
  text-transform: capitalize;
}

.pricing .box-container .box .price {
  height: 160px;
  width: 160px;
  color: var(--white);
  background: var(--main-color);
  padding: 57px 0 0;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.pricing .box-container .box .price .currency {
  font-size: 35px;
  line-height: 35px;
  font-weight: 300;
}

.pricing .box-container .box .price .amount {
  font-size: 58px;
  line-height: 45px;
  font-weight: 700;
}

.pricing .box-container .box ul li {
  text-align: left;
  font-size: 16px;
  padding-left: 45px;
  margin: 20px auto;
  color: var(--white);
  list-style: none;
  text-transform: uppercase;
}

.pricing .box-container .box ul li i {
  color: var(--main-color);
  padding: 0 10px;
}

.pricing .box-container .box button {
  height: 40px;
  width: 140px;
  outline: none;
  border-radius: 50px;
  text-transform: capitalize;
  cursor: pointer;
  background: none;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  font-size: 17px;
  font-weight: bold;
  transition: 0.2s linear;
}

.pricing .box-container .box button:hover {
  color: var(--white);
  background: var(--main-color);
}

/* pricing */

/* blog */

.blogs .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.blogs .box-container .box {
  background: var(--primary-color);
}

.blogs .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}

.blogs .box-container .box .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blogs .box-container .box:hover .image img {
  transform: scale(1.2);
}

.blogs .box-container .box .content {
  padding: 2rem;
}

.blogs .box-container .box .content .title {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--white);
}

.blogs .box-container .box .content .title:hover {
  color: var(--main-color);
}

.blogs .box-container .box .content span {
  color: var(--main-color);
  display: block;
  padding-top: 1rem;
  font-size: 2rem;
  text-transform: capitalize;
}

.blogs .box-container .box .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--white);
  padding: 1rem 0;
}

/* blog */

/* visit */

.visit {
  background: url("../images/visit.png");
  background-size: cover;
  background-position: center;
}

.visit .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.visit .row .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
}

.visit .row .image img {
  width: 100%;
}

.visit .row form {
  flex: 1 1 40rem;
  border: 0.1rem solid var(--main-color);
  padding: 2rem;
}

.visit .row form h3 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--main-color);
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.visit .row form .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--main-color);
  border: var(--border);
}

.visit .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: var(--white);
  text-transform: none;
  background: none;
}

.visit .row .content .info-box {
  background: var(--main-color);
  padding: 3rem;
  margin: 2.5rem 0;
  border-radius: 12px;
  border: 0.1rem solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.visit .row .content .info-box h4 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.visit .row .content .info-box h4 i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.visit .row .content .info-box p {
  font-size: 1.8rem;
  color: var(--black);
  line-height: 1.8;
}

.visit .row .content .btn {
  display: block;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.5rem 3rem;
  font-size: 2rem;
}

/* visit */

/* menu */
.menu {
  background: var(--light-bg);
  padding: 5rem 7%;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 3rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-title i {
  font-size: 2.5rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 0.1rem solid var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item.featured {
  background: linear-gradient(135deg, var(--main-color), var(--primary-color));
  color: var(--white);
  border: 0.1rem solid var(--primary-color);
}

.menu-item.featured .item-info h3 {
  color: var(--white);
}

.menu-item.featured .item-info p {
  color: var(--white);
  opacity: 0.9;
}

.item-info {
  flex: 1;
}

.item-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.item-info p {
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1.6;
  opacity: 0.8;
}

.item-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 1rem;
}

.menu-item.featured .item-price {
  color: var(--white);
}

.menu-footer {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-footer p {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.menu-footer p i {
  color: var(--primary-color);
}

.menu-footer .btn {
  margin-top: 2rem;
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

/* menu */

/* gallery */
.gallery {
  background: var(--light-bg);
  padding: 5rem 7%;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 4rem;
  opacity: 0.8;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--primary-color);
  border: 0.1rem solid var(--primary-color);
  border-radius: 25px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.gallery-cta {
  text-align: center;
  background: var(--white);
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-cta h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.gallery-cta p {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.gallery-cta .btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* gallery */

/* review  */

.review .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.review .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.review .box-container .box p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black);
  padding: 2rem 0;
}

.review .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.review .box-container .box .stars i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* review end */

/* footer */
.footer {
  background: var(--main-color);
  text-align: center;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: var(--primary-color);
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--black);
  padding: 1rem 0;
}

.footer .box-container .box .share {
  margin-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: 50%;
  font-size: 1.7rem;
  background-color: var(--primary-color);
  color: var(--white);
  margin-right: 0.3rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background-color: var(--black);
}

.footer .box-container .box .link {
  font-size: 1.7rem;
  line-height: 2;
  color: var(--primary-color);
  padding: 0.5rem 0;
  display: block;
  text-decoration: underline;
}

.footer .box-container .box .link:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer .box-container .box .email {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  border: 0.1rem solid var(--primary-color);
  margin-bottom: 1rem;
}

.footer .credit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  border-top: 0.1rem solid var(--primary-color);
}

.footer .credit span {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header .navbar a {
    font-size: 1.7rem;
  }

  section {
    padding: 3rem 2rem;
  }

  .visit .row .content .info-box {
    padding: 2rem;
    margin: 2rem 0;
  }

  .visit .row .content .info-box h4 {
    font-size: 2rem;
  }

  .visit .row .content .info-box p {
    font-size: 1.6rem;
  }

  .menu-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .category-title {
    font-size: 2.5rem;
  }

  .menu-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .item-info h3 {
    font-size: 1.8rem;
  }

  .item-info p {
    font-size: 1.3rem;
  }

  .item-price {
    font-size: 2rem;
    margin-left: 0;
    margin-top: 1rem;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery-filters {
    gap: 0.8rem;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
  }

  .gallery-image img {
    height: 250px;
  }

  .gallery-overlay h3 {
    font-size: 1.6rem;
  }

  .gallery-overlay p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    right: -105%;
    width: 30rem;
    background: var(--white);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1200;
  }
  .header .navbar #close-navbar {
    display: block;
  }
  .header .navbar.active {
    right: 0;
  }

  .header .navbar a {
    display: block;
    margin: 1rem 0;
    text-align: center;
    font-size: 3rem;
  }

  .home .content h3 {
    font-size: 5.5rem;
  }

  .visit .row {
    flex-direction: column;
    gap: 3rem;
  }

  .visit .row .content {
    order: 2;
    width: 90%;
  }

  .visit .row .image {
    order: 1;
    flex: none;
  }

  .visit .row .content .info-box {
    padding: 1.8rem;
    margin: 1.8rem 0;
    border-radius: 8px;
    text-align: center;
  }

  .visit .row .content .info-box h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .visit .row .content .info-box h4 i {
    margin-right: 0.8rem;
  }

  .visit .row .content .info-box p {
    font-size: 2.1rem;
    line-height: 1.6;
  }

  .visit .row .content .btn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
    margin: 2.5rem auto 0;
    display: block;
  }

  .menu-items {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .category-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-item {
    padding: 1.2rem;
  }

  .item-info h3 {
    font-size: 1.6rem;
  }

  .item-info p {
    font-size: 1.2rem;
  }

  .item-price {
    font-size: 1.8rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gallery-image img {
    height: 300px;
  }

  .gallery-overlay {
    padding: 1.5rem;
  }

  .gallery-overlay h3 {
    font-size: 1.8rem;
  }

  .gallery-overlay p {
    font-size: 1.3rem;
  }

  .gallery-cta {
    padding: 3rem 2rem;
  }

  .gallery-cta h2 {
    font-size: 2.5rem;
  }

  .gallery-cta p {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .content h3 {
    font-size: 4.5rem;
  }

  .visit .row .content .info-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
  }

  .visit .row .content .info-box h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .visit .row .content .info-box p {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .visit .row .content .btn {
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    margin: 2rem auto 0;
    display: block;
  }

  .category-title {
    font-size: 2rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .item-info h3 {
    font-size: 1.4rem;
  }

  .item-info p {
    font-size: 1.1rem;
  }

  .item-price {
    font-size: 1.6rem;
  }

  .gallery-image img {
    height: 250px;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .gallery-overlay h3 {
    font-size: 1.4rem;
  }

  .gallery-overlay p {
    font-size: 1.1rem;
  }

  .gallery-icons i {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .gallery-cta {
    padding: 2rem 1rem;
  }

  .gallery-cta h2 {
    font-size: 2rem;
  }

  .gallery-cta p {
    font-size: 1.4rem;
  }
}
