html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #2c3629;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html,
  body {
    padding-top: 2em;
  }
}
* {
  box-sizing: border-box;
}
.btn {
  cursor: pointer;
  display: inline-block;
  padding: 0.4em 1.2em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1em;
  transition: background-color 0.3s ease;
}
.btn.btn-primary {
  background-color: #6b985d;
  color: #f4f4f4;
  border: 2px solid #6b985d;
}
.btn.btn-primary:hover {
  background-color: #f4f4f4;
  color: #6b985d;
}
.btn.btn-secondary {
  background-color: #2c3629;
  color: #f4f4f4;
  border: 2px solid #2c3629;
}
.btn.btn-secondary:hover {
  background-color: #f4f4f4;
  color: #2c3629;
}
.logo {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: currentColor;
}
.logo img {
  padding-top: 10px;
  height: 40px;
}
.logo .text {
  margin-top: 15px;
  position: relative;
  font-size: 0.7em;
  color: #f4f4f4;
}
.logo .text::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0;
  border-bottom: 2px dotted #6b985d;
}
header {
  position: fixed;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: 80px;
  border-radius: 5px;
  background-color: #2c3629;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
@media (max-width: 768px) {
  header {
    height: auto;
    position: absolute;
  }
}
header .nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 80px;
}
@media (max-width: 768px) {
  header .nav-menu {
    height: auto;
  }
}
header .nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  header .nav-menu ul {
    gap: 10px;
  }
}
header .nav-menu ul li a {
  display: flex;
  align-items: center;
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 16px;
  height: 80px;
  border-bottom: 4px solid transparent;
}
@media (max-width: 768px) {
  header .nav-menu ul li a {
    font-size: 13px;
    height: auto;
    padding: 5px 0;
  }
}
header .nav-menu ul li a:hover {
  border-bottom-color: #6b985d;
}
header .reservation-button {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  header .reservation-button {
    height: auto;
    margin: 10px 0;
  }
}
section.hero-slider .hero-overlay {
  height: 80vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}
section.hero-slider .hero-overlay .hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.hero-slider .hero-overlay .hero-content .title {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 3em;
  color: #f4f4f4;
  position: relative;
}
@media (max-width: 768px) {
  section.hero-slider .hero-overlay .hero-content .title {
    font-size: 2em;
  }
}
section.hero-slider .hero-overlay .hero-content .title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0;
  border-bottom: 5px dotted #6b985d;
}
section.hero-slider .hero-overlay .hero-content .description {
  margin-top: 0;
  font-size: 1.2em;
  color: #b4b4b4;
  margin-bottom: 30px;
  width: min(600px, 90%);
}
@media (max-width: 768px) {
  section.hero-slider .hero-overlay .hero-content .description {
    font-size: 1em;
  }
}
section.hero-slider .hero-overlay .hero-content .actions {
  display: flex;
  gap: 1em;
  justify-content: center;
}
@media (max-width: 768px) {
  section.hero-slider .hero-overlay .hero-content .actions {
    flex-direction: column;
    gap: 0.5em;
  }
}
section.about {
  margin-top: -3px;
}
section.about .about-container {
  overflow: hidden;
  border-radius: 5px;
  background-color: #232b21;
}
section.about .about-container .image {
  margin-left: -0.75em;
  margin-right: -0.75em;
  overflow: hidden;
  height: 100%;
  max-height: 600px;
}
section.about .about-container .image img {
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
section.about .about-container .image .map {
  width: 100%;
  height: 100%;
}
section.about .about-container .image .map .map-overlay {
  min-height: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6em 2em;
  gap: 1em;
  color: #f4f4f4;
  /* button {
						background-color: @primary-color;
						color: @text-contrast-color;
						border: none;
						padding: 0.5em 1em;
						border-radius: @border-radius;
						cursor: pointer;
						font-size: 1em;
						transition: background-color 0.3s ease;

						&:hover {
							background-color: darken(@primary-color, 10%);
						}
					} */
}
section.about .about-container .image .map .map-overlay p {
  font-size: 0.9em;
  color: #b4b4b4;
  text-align: center;
}
section.about .about-container .image .map iframe {
  min-height: 500px;
  width: 100%;
  height: 100%;
  border: none;
}
section.about .about-container .title {
  margin-top: 2em;
  font-size: 2.4em;
  position: relative;
  color: #f4f4f4;
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 15px;
  margin-right: 15px;
  text-transform: uppercase;
}
section.about .about-container .title.right {
  text-align: right;
}
section.about .about-container .title.right::after {
  left: unset;
  right: 10px;
}
section.about .about-container .title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30px;
  height: 0;
  border-bottom: 4px dotted #6b985d;
}
section.about .about-container .text {
  padding: 1em 1em 2em 1em;
  font-size: 1.1em;
  color: #f4f4f4;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.5em;
}
section.about .about-container .text.right {
  text-align: right;
}
section.about .about-container .text address {
  font-style: normal;
  color: #b4b4b4;
}
section.about .about-container .text address p {
  margin: 0.5em 0;
}
section.about .about-container .text a {
  text-decoration: none;
  color: #6b985d;
}
section.about .about-container .text a:hover {
  color: #f4f4f4;
}
section.news .title {
  text-align: center;
  margin-top: 0em;
  font-size: 2.4em;
  position: relative;
  color: #f4f4f4;
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 2em;
  margin-top: 2em;
  text-transform: uppercase;
}
section.news .title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0;
  border-bottom: 4px dotted #6b985d;
}
section.news .news-item {
  background-color: #232b21;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left: 4px solid #6b985d;
  padding: 1em;
  color: #f4f4f4;
  margin-bottom: 1em;
}
section.news .news-item .news-item-title {
  font-size: 1em;
  color: #f4f4f4;
  margin-bottom: 0.5em;
}
.news-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999;
}
.news-popup .news-popup-inner {
  background-color: #232b21;
  color: #f4f4f4;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
.news-popup .news-popup-inner .close {
  position: absolute;
  top: 10px;
  right: 10px;
  text-decoration: none;
  color: #f4f4f4;
  font-size: 2.5em;
  cursor: pointer;
}
.news-popup .news-popup-inner .close:hover {
  color: #6b985d;
}
.news-popup .news-popup-inner .news-item {
  background-color: #232b21;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left: 4px solid #6b985d;
  padding: 1em;
  color: #f4f4f4;
  margin-bottom: 1em;
}
.news-popup .news-popup-inner .news-item .news-item-title {
  font-size: 1em;
  color: #f4f4f4;
  margin-bottom: 0.5em;
}
section.gallery .title {
  text-align: center;
  margin-top: 2em;
  font-size: 2.4em;
  position: relative;
  color: #f4f4f4;
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 2em;
  margin-top: 4em;
  text-transform: uppercase;
}
section.gallery .title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0;
  border-bottom: 4px dotted #6b985d;
}
section.gallery .text-container {
  padding: 0 1em;
  font-size: 1.1em;
  color: #f4f4f4;
  margin-bottom: 2em;
  line-height: 1.5em;
}
section.gallery .text-container address {
  font-style: normal;
  color: #b4b4b4;
}
section.gallery .text-container address p {
  margin: 0.5em 0;
}
section.gallery .text-container a {
  text-decoration: none;
  color: #6b985d;
}
section.gallery .text-container a:hover {
  color: #f4f4f4;
}
section.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-rows: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25em;
}
section.gallery .images .image {
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
section.gallery .images .image:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
section.gallery .images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 99999;
  user-select: none;
}
.gallery-modal .gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3em;
  cursor: pointer;
  z-index: 1000;
}
.gallery-modal .gallery-modal-arrow.left {
  left: 20px;
}
.gallery-modal .gallery-modal-arrow.right {
  right: 20px;
}
.gallery-modal .close {
  position: absolute;
  z-index: 99999;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 3em;
  cursor: pointer;
}
.gallery-modal .gallery-modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
  width: 95vw;
  margin-top: 2.5vh;
}
.gallery-modal .gallery-modal-content .modal-image {
  max-width: 100%;
  max-height: 100%;
}
.gallery-modal .modal-image {
  max-width: 90%;
  max-height: 90%;
}
section.menu {
  background-color: #232b21;
  padding: 3em 0;
  margin-top: 2em;
}
section.menu .title {
  text-align: center;
  position: relative;
  font-family: 'Crimson Text', serif;
  font-size: 2.5em;
  letter-spacing: 0.1em;
  color: #f4f4f4;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
section.menu .title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 0;
  border-bottom: 4px dotted #6b985d;
}
section.menu .description {
  text-align: center;
  font-size: 1.2em;
  color: #b4b4b4;
  margin-bottom: 2em;
}
section.menu .menu-item-list {
  width: 80%;
  margin: 0 auto;
}
section.menu .menu-item-list .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  padding: 0.5em 1em;
  /* &:not(:last-child) {
				border-bottom: 5px dotted @primary-color;
			} */
}
section.menu .menu-item-list .menu-item:nth-child(odd) {
  background-color: #2c3629;
}
section.menu .menu-item-list .menu-item .name {
  flex: 1;
  color: #f4f4f4;
  margin: 0.5em 0;
}
section.menu .menu-item-list .menu-item .price {
  display: none;
  width: 150px;
  text-align: right;
  color: #f4f4f4;
}
footer {
  margin-top: 3em;
  padding-bottom: 3em;
}
footer .social {
  padding-top: 1em;
}
footer .social ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
footer .social ul li a {
  display: block;
  text-decoration: none;
  color: currentColor;
}
footer .social ul li a img {
  width: 2em;
}
footer .separator {
  margin: 2em 0;
}
footer .title {
  font-family: 'Crimson Text', serif;
  text-transform: uppercase;
  color: #f4f4f4;
}
footer .title a {
  text-decoration: none;
  color: inherit;
}
footer .title a:hover {
  color: #6b985d;
}
footer .text {
  padding-right: 1em;
  color: #b4b4b4;
}
footer .text a {
  text-decoration: none;
  color: inherit;
}
footer .text a:hover {
  color: #6b985d;
}
footer ul.opening-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.opening-hours li {
  margin-bottom: 0.5em;
  color: #b4b4b4;
}
footer .address {
  font-style: normal;
  color: #b4b4b4;
}
footer .address p {
  margin: 0.5em 0;
}
footer .address a {
  color: #6b985d;
  text-decoration: none;
}
footer .gallery .gallery-images {
  display: flex;
  gap: 5px;
}
footer .gallery .gallery-images img {
  height: 60px;
  border-radius: 5px;
  cursor: pointer;
}
