@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@400;500;600;700&display=swap');



:root {
  --dark-color: #171819;
  --dark-secondary: #101112;
  --black-color: #080808;
  --gold-color: #e6c48c;
  --white-color: #ffffff;
  --text-color: #b8b8b8;
  --border-color: #3b3b3b;
}

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: Jost, sans-serif;
  background-color: var(--dark-color);
}

a {
  text-decoration: none;
}

.section-subtitle {
  color: var(--gold-color);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-divider {
  margin-bottom: 28px;
}

.section-divider img {
  width: 90px;
  height: auto;
}

.hero-btn,
.story-btn,
.menu-button a {
  color: #000000;
  background-color: var(--gold-color);
  padding: 16px 45px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: inline-block;
}

.hero-btn:hover,
.story-btn:hover,
.menu-button a:hover {
  background-color: var(--white-color);
  color: #000000;
}

.navbar img {
  max-width: 100px;
  height: auto;
}

.navbar-brand {
  padding: 10px;
  margin-left: 40px;
}

.main-navbar {
  width: 100%;
  background-color: rgb(29, 29, 29);
  border-top: 1px solid #333333;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}

.nav-container {
  padding: 0 20px;
}

.navbar-content {
  justify-content: center;
}

.nav-links {
  margin: 0 auto;
  gap: 28px;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
}

.nav-link {
  color: var(--gold-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 35px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--white-color);
}

.book-btn {
  background-color: var(--gold-color);
  color: rgb(0, 0, 0);
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
}

.book-btn:hover {
  background-color: var(--white-color);
  color: rgb(0, 0, 0);
}

.menu-toggle {
  border: none;
  color: var(--white-color);
  font-size: 25px;
}

.menu-toggle:focus {
  box-shadow: none;
}

.language-item {
  position: relative;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 6px;
  row-gap: 6px;
  column-gap: 6px;
  color: rgb(230, 196, 140);
}

.language-current img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.language-current,
.language-current i {
  color: #e6c48c;
}

.language-current:hover,
.language-current:hover i {
  color: #ffffff;
}

.language-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 140px;
  background: #101112;
  border: 1px solid rgba(230,196,140,.3);
  display: none;
  z-index: 999;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(16, 17, 18);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: rgb(230, 196, 140);
  row-gap: 8px;
  column-gap: 8px;
}

.language-menu a img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.language-menu a:hover {
  color: rgb(255, 255, 255);
}

.language-dropdown:hover .language-menu {
  display: block;
}

.language-current,
.language-current:focus,
.language-current:active,
.language-current:visited,
.navbar .language-current,
.navbar .language-current:focus,
.navbar .language-current:active,
.navbar .language-current:visited {
  color: #e6c48c;
}

.language-current i,
.language-current:focus i,
.language-current:active i {
  color: #e6c48c;
}

.language-current:hover,
.language-current:hover i {
  color: #ffffff;
}

.hero-section {
  margin-top: 95px;
  position: relative;
}

.carousel-item {
  position: relative;
  height: 80vh;
  overflow: hidden;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
}

.carousel-inner {
  height: 80vh;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 80%;
  max-width: 900px;
  padding: 0;
}

.carousel-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 22px;
}

.carousel-content p {
  font-size: 21px;
  margin-bottom: 0px;
}

.carousel-control-prev,
  .carousel-control-next {
  width: 70px;
}

.story-section {
  background-color: var(--dark-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.story-decoration {
  position: absolute;
  left: 10px;
  bottom: 290px;
  z-index: 1;
}

.story-decoration img {
  width: 180px;
  height: auto;
}

.story-content,
.story-images {
  position: relative;
  z-index: 2;
}

.story-content {
  text-align: center;
  max-width: 470px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-content h2,
.offer-header h2,
.menu-header h2,
.special-header h2,
.facilities-header h2,
.food-menu-header h2,
.contact-header h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white-color);
  font-weight: 400;
}

.story-content h2 {
  font-size: 56px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.story-text {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 34px;
}

.story-images {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  row-gap: 28px;
  column-gap: 28px;
}

.story-image {
  width: 48%;
}

.story-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.story-image-bottom {
  margin-top: 80px;
}

.offer-section {
  background-color: var(--black-color);
  padding: 110px 0 120px;
  position: relative;
  overflow: visible;
  z-index: 2;
  overflow-x: visible;
  overflow-y: visible;
}

.offer-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.offer-header h2 {
  font-size: 56px;
  margin-bottom: 22px;
}

.offer-description {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.8;
}

.offer-row {
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.offer-card {
  text-align: center;
}

.offer-card-center {
  margin-top: 170px;
}

.offer-image-box {
  width: 300px;
  margin: 0 auto 34px;
  position: relative;
}

.offer-image-box > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.offer-pattern {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 150px;
  z-index: 1;
}

.offer-pattern img {
  width: 100%;
  height: auto;
}

.offer-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

.offer-card a {
  color: var(--gold-color);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.offer-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.offer-shape img {
  width: 260px;
  height: auto;
}

.offer-shape-left {
  left: 20px;
  bottom: 0px;
}

.offer-shape-right {
  right: 10px;
  top: 0px;
}

.facilities-section {
  background-color: var(--dark-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.facilities-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.facilities-header h2 {
  font-size: 62px;
  margin-bottom: 0px;
}

.facilities-card {
  background-color: var(--dark-secondary);
  padding: 50px 25px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.facilities-icon,
.strength-icon {
  margin-bottom: 25px;
}

.facilities-icon img,
.strength-icon img {
  width: 70px;
  height: auto;
}

.facilities-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px;
}

.facilities-card p {
  color: rgb(189, 189, 189);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0px;
}

.facilities-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.facilities-decoration img {
  width: 130px;
  height: auto;
}

.facilities-left {
  left: 15px;
  bottom: 80px;
}

.facilities-right {
  right: 15px;
  top: 20px;
}

.menu-section {
  background-color: var(--dark-color);
  padding: 110px 0 95px;
  position: relative;
  overflow: visible;
  z-index: 5;
  overflow-x: visible;
  overflow-y: visible;
}

.menu-header {
  text-align: center;
  margin-bottom: 55px;
  position: relative;
  z-index: 2;
}

.menu-header h2 {
  font-size: 58px;
  margin-bottom: 0px;
}

.menu-list {
  position: relative;
  z-index: 2;
}

.menu-list .col-lg-6:first-child {
  border-right: 1px solid var(--border-color);
  padding-right: 55px;
}

.menu-list .col-lg-6:last-child {
  padding-left: 55px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
}

.menu-item-info {
  min-width: 230px;
}

.menu-item-info h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.menu-item-info p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0px;
}

.menu-line {
  flex: 1;
  height: 1px;
  border-top: 1px solid #484848;
  margin: 18px 15px 0;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(72, 72, 72);
}

.menu-price {
  color: var(--gold-color);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  min-width: 70px;
}

.menu-button {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.menu-bg {
  position: absolute;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.menu-bg img {
  width: 520px;
  height: auto;
}

.menu-bg-left {
  left: -15px;
  top: 0px;
}

.menu-bg-right {
  right: -60px;
  bottom: 0px;
}

.menu-top-dish {
  position: absolute;
  right: 0px;
  top: -115px;
  z-index: 50;
}

.menu-top-dish img {
  width: 300px;
  height: auto;
}

.special-section {
  background-color: var(--dark-color);
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.special-box {
  background-color: var(--black-color);
  padding: 90px 90px 100px;
  position: relative;
}

.special-header {
  text-align: center;
  margin-bottom: 55px;
}

.special-header h2 {
  font-size: 58px;
  margin-bottom: 0px;
}

.special-carousel {
  position: relative;
}

.special-card {
  text-align: center;
}

.special-card img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  margin-bottom: 0px;
}

.special-border {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 15px;
  z-index: 2;
}

.special-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-border-left {
  left: 0px;
}

.special-border-right {
  right: 0px;
}

.special-carousel .owl-nav {
  margin: 0;
}

.special-carousel .owl-nav button.owl-prev,
.special-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  top: 42%;
}

.special-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.special-carousel .owl-nav button.owl-next {
  right: -50px;
}

.special-carousel .owl-nav button.owl-prev span,
.special-carousel .owl-nav button.owl-next span {
  font-size: 40px;
  line-height: 44px;
  transform: rotate(-45deg) translateY(-5px);
}

.testimonial-section {
  position: relative;
  padding: 85px 0;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/monavie/monavie.al/monavie.al_2026-07-13_15-35-34-898/image/monavie (3).jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-position-x: center;
  background-position-y: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.testimonial-carousel {
  position: relative;
  z-index: 2;
}

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

.testimonial-quote {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-size: 32px;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 22px;
}

.testimonial-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.testimonial-divider img {
  width: 45px !important;
  max-width: 45px !important;
  height: auto;
}

.testimonial-content h4 {
  color: var(--gold-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

.testimonial-carousel .owl-nav {
  display: none;
}

.about-hero-section,
.menu-hero-section,
.gallery-hero-section,
.contact-hero-section {
  min-height: 390px;
  margin-top: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.about-hero-content,
.menu-hero-content,
.gallery-hero-content,
.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero-content h1,
.menu-hero-content h1,
.gallery-hero-content h1,
.contact-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white-color);
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 0;
}

.about-hero-content .section-divider img,
.menu-hero-content .section-divider img,
.gallery-hero-content .section-divider img,
.contact-hero-content .section-divider img {
  width: 90px;
  height: auto;
}

.full-menu-section {
  background-color: var(--dark-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.food-menu-block {
  position: relative;
  z-index: 2;
  margin-bottom: 120px;
}

.food-menu-block:last-child {
  margin-bottom: 0px;
}

.food-menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.food-menu-header h2 {
  font-size: 62px;
  margin-bottom: 0px;
}

.full-menu-section .menu-list .col-lg-6:first-child {
  border-right: 1px solid var(--border-color);
  padding-right: 55px;
}

.full-menu-section .menu-list .col-lg-6:last-child {
  padding-left: 55px;
}

.full-menu-section .menu-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 55px;
}

.menu-item-img {
  min-width: 100px;
  margin-right: 20px;
}

.menu-item-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 24px;
}

.full-menu-section .menu-item-info {
  min-width: 0px;
  flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.full-menu-section .menu-item-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.full-menu-section .menu-line {
  margin: 17px 15px 0;
}

.full-menu-section .menu-price {
  font-size: 23px;
}

.menu-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.menu-deco img {
  width: 150px;
  height: auto;
}

.tomato-deco {
  right: 20px;
  top: 130px;
}

.cinnamon-deco {
  left: 20px;
  top: 870px;
}

.strawberry-deco {
  right: 45px;
  top: 1800px;
}

.lemon-deco {
  left: 0px;
  bottom: 540px;
}

.gallery-section {
  background-color: var(--dark-color);
  padding: 100px 0;
}

.gallery-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  row-gap: 24px;
  column-gap: 24px;
}

.gallery-row-four {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-row-three {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item a {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.contact-section {
  background-color: var(--dark-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: 65px;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: 58px;
  margin-bottom: 0px;
}

.contact-info-row {
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
}

.contact-card {
  background-color: var(--dark-secondary);
  padding: 42px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(230, 196, 140, 0.22);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-color);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
}

.contact-card p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0px;
}

.contact-map {
  position: relative;
  z-index: 2;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: brightness(0.85);
}

.contact-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.contact-shape img {
  width: 320px;
  height: auto;
}

.contact-shape-left {
  left: 0px;
  top: 40px;
}

.contact-shape-right {
  right: 0px;
  bottom: 40px;
}

.footer-section {
  position: relative;
  background-color: rgb(8, 8, 8);
  padding: 90px 0 0;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding-bottom: 55px;
}

.footer-box {
  text-align: center;
}

.footer-box h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-color);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}

.footer-box p {
  color: rgb(199, 199, 199);
  font-size: 15px;
  line-height: 1.8;
  max-width: 320px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgb(199, 199, 199);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--gold-color);
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgb(199, 199, 199);
  text-decoration: none;
}

.footer-map {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.footer-map iframe {
  width: 280px;
  height: 150px;
  border: 0;
  filter: brightness(0.85);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(230, 196, 140, 0.25);
  padding: 22px 0;
  text-align: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(230, 196, 140, 0.25);
}

.footer-bottom p {
  color: rgb(199, 199, 199);
  font-size: 14px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
}

.footer-bottom a {
  display: inline-block;
}

.footer-bottom img {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

:root {
  --dark-color: #171819;
  --dark-secondary: #101112;
  --black-color: #080808;
  --gold-color: #e6c48c;
  --white-color: #ffffff;
  --text-color: #b8b8b8;
  --border-color: #3b3b3b;
}

html, body {
  overflow-x: hidden;
}

.story-btn, .menu-button a {
  color: rgb(0, 0, 0);
  background-color: var(--gold-color);
  padding-top: 16px;
  padding-right: 45px;
  padding-bottom: 16px;
  padding-left: 45px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: inline-block;
}

.story-btn:hover, .menu-button a:hover {
  background-color: var(--white-color);
  color: rgb(0, 0, 0);
}

.language-current, .language-current i {
  color: rgb(230, 196, 140);
}

.language-current:hover, .language-current:hover i {
  color: rgb(255, 255, 255);
}

.language-current:focus {
  color: rgb(230, 196, 140);
}

.language-current:active {
  color: rgb(230, 196, 140);
}

.language-current:visited, .navbar .language-current, .navbar .language-current:focus, .navbar .language-current:active, .navbar .language-current:visited {
  color: rgb(230, 196, 140);
}

.language-current i, .language-current:focus i, .language-current:active i {
  color: rgb(230, 196, 140);
}

.carousel-control-prev {
  width: 70px;
}

.carousel-control-next {
  width: 70px;
}

.story-content h2, .offer-header h2, .menu-header h2, .special-header h2, .facilities-header h2, .food-menu-header h2, .contact-header h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-weight: 400;
}

.facilities-icon {
  margin-bottom: 25px;
}

.strength-icon {
  margin-bottom: 25px;
}

.facilities-icon img, .strength-icon img {
  width: 70px;
  height: auto;
}

.special-carousel .owl-nav button.owl-prev, .special-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  top: 42%;
}

.special-carousel .owl-nav button.owl-prev span, .special-carousel .owl-nav button.owl-next span {
  font-size: 40px;
  line-height: 44px;
  transform: rotate(-45deg) translateY(-5px);
}

.about-hero-content h1, .menu-hero-content h1, .gallery-hero-content h1, .contact-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white-color);
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 0px;
}

.about-hero-content .section-divider img, .menu-hero-content .section-divider img, .gallery-hero-content .section-divider img, .contact-hero-content .section-divider img {
  width: 90px;
  height: auto;
}

.cropped-image {
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
}

.cropped-image-parent,
*:has(.cropped-image) {
  overflow: hidden !important;
  position: relative !important;
}

.cropped-image-parent, :has(.cropped-image) {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative !important;
}

.about-hero-section {
  min-height: 390px;
  margin-top: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 64px;
  }
  .special-carousel .owl-nav button.owl-prev {
    left: -35px;
  }
  .special-carousel .owl-nav button.owl-next {
    right: -35px;
  }
}

@media (max-width: 991px) {
  .main-navbar {
    min-height: auto;
  }
  .navbar-brand {
    margin-left: 10px;
  }
  .navbar img {
    max-width: 90px;
  }
  .navbar-content {
    background-color: rgb(29, 29, 29);
    padding: 20px 0;
  }
  .nav-links {
    gap: 0;
    margin: 0;
    align-items: flex-start;
    row-gap: 0px;
    column-gap: 0px;
  }
  .nav-link {
    padding: 12px 0;
  }
  .book-btn {
    margin-top: 15px;
    padding: 13px 28px;
  }
  .language-item,
    .language-dropdown {
    width: 100%;
  }
  .language-current {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    row-gap: 7px;
    column-gap: 7px;
  }
  .language-current img,
    .language-menu a img {
    width: 18px;
    height: 12px;
    object-fit: cover;
  }
  .language-menu {
    position: static;
    width: 150px;
    margin-top: 6px;
  }
  .language-menu a {
    font-size: 12px;
    padding: 9px 12px;
  }
  .hero-section {
    margin-top: 82px;
  }
  .story-section,
    .offer-section,
    .menu-section,
    .facilities-section,
    .full-menu-section,
    .contact-section,
    .gallery-section {
    padding: 80px 0;
  }
  .story-content {
    margin-bottom: 50px;
  }
  .story-content h2,
    .offer-header h2,
    .menu-header h2,
    .special-header h2,
    .facilities-header h2,
    .food-menu-header h2,
    .contact-header h2 {
    font-size: 44px;
  }
  .story-images {
    gap: 18px;
    row-gap: 18px;
    column-gap: 18px;
  }
  .story-image img {
    height: 360px;
  }
  .story-image-bottom {
    margin-top: 45px;
  }
  .offer-card-center {
    margin-top: 0px;
  }
  .offer-card,
    .facilities-card,
    .contact-card,
    .footer-box {
    margin-bottom: 28px;
  }
  .menu-list .col-lg-6:first-child,
    .full-menu-section .menu-list .col-lg-6:first-child {
    border-right: none;
    padding-right: 12px;
  }
  .menu-list .col-lg-6:last-child,
    .full-menu-section .menu-list .col-lg-6:last-child {
    padding-left: 12px;
  }
  .menu-top-dish {
    top: -80px;
  }
  .menu-top-dish img {
    width: 210px;
  }
  .special-box {
    padding: 70px 45px 80px;
  }
  .special-card img {
    height: 270px;
  }
  .special-carousel .owl-nav button.owl-prev,
    .special-carousel .owl-nav button.owl-next {
    display: none;
  }
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-text {
    font-size: 26px;
  }
  .about-hero-section,
    .menu-hero-section,
    .gallery-hero-section,
    .contact-hero-section {
    min-height: 340px;
  }
  .about-hero-content h1,
    .menu-hero-content h1,
    .gallery-hero-content h1,
    .contact-hero-content h1 {
    font-size: 56px;
  }
  .food-menu-header h2 {
    font-size: 46px;
  }
  .menu-deco img {
    width: 100px;
  }
  .gallery-row-four,
    .gallery-row-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 240px;
  }
  .contact-map iframe {
    height: 300px;
  }
  .footer-section {
    padding-top: 70px;
  }
  .hero-section {
    margin-top: 82px;
  }
  .carousel-inner,
      .carousel-item,
      .carousel-item img {
    height: 620px;
  }
  .carousel-caption.hero-content {
    width: 88%;
    max-width: 620px;
  }
  .hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
  }
  .hero-text {
    font-size: 18px;
  }
  .language-dropdown {
    width: 100%;
  }
  .language-current img, .language-menu a img {
    width: 18px;
    height: 12px;
    object-fit: cover;
  }
  .story-content h2, .offer-header h2, .menu-header h2, .special-header h2, .facilities-header h2, .food-menu-header h2, .contact-header h2 {
    font-size: 44px;
  }
  .menu-list .col-lg-6:first-child, .full-menu-section .menu-list .col-lg-6:first-child {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    padding-right: 12px;
  }
  .menu-list .col-lg-6:last-child, .full-menu-section .menu-list .col-lg-6:last-child {
    padding-left: 12px;
  }
  .special-carousel .owl-nav button.owl-prev, .special-carousel .owl-nav button.owl-next {
    display: none;
  }
  .about-hero-content h1, .menu-hero-content h1, .gallery-hero-content h1, .contact-hero-content h1 {
    font-size: 56px;
  }
  .carousel-item, .carousel-item img {
    height: 620px;
  }
  .about-hero-section {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 11px;
    letter-spacing: 5px;
  }
  .section-divider img {
    width: 75px;
  }
  .offer-shape,
    .menu-bg,
    .menu-top-dish,
    .story-decoration,
    .facilities-decoration,
    .menu-deco,
    .contact-shape {
    opacity: 0.22;
  }
  .footer-main {
    padding-bottom: 35px;
  }
  .carousel-inner,
.carousel-item,
.carousel-item img {
    height: 570px;
  }
  .carousel-caption.hero-content {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-text {
    font-size: 16px;
  }
  .divider-image img {
    width: 85px !important;
    max-width: 85px !important;
  }
  .carousel-item, .carousel-item img {
    height: 570px;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 12px;
  }
  .navbar-brand {
    margin-left: 0px;
  }
  .navbar img {
    max-width: 82px;
  }
  .hero-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  .divider-image {
    margin-bottom: 12px;
  }
  .divider-image img {
    width: 55px !important;
    max-width: 55px !important;
  }
  .hero-content h1 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 12px;
  }
  .hero-text {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .hero-btn,
    .story-btn,
    .menu-button a {
    padding: 12px 22px;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .story-section,
    .offer-section,
    .menu-section,
    .facilities-section,
    .full-menu-section,
    .contact-section,
    .gallery-section {
    padding: 60px 0;
  }
  .story-images {
    flex-direction: column;
  }
  .story-image {
    width: 100%;
  }
  .story-image-bottom {
    margin-top: 0px;
  }
  .story-image img {
    height: 310px;
  }
  .offer-header {
    margin-bottom: 50px;
    padding: 0 12px;
  }
  .offer-header h2 {
    font-size: 34px;
    line-height: 1.15;
  }
  .offer-description {
    font-size: 14px;
    line-height: 1.7;
  }
  .offer-card {
    margin-bottom: 55px;
  }
  .offer-image-box {
    width: 250px;
    margin-bottom: 28px;
  }
  .offer-image-box > img {
    height: 300px;
  }
  .offer-pattern {
    width: 110px;
    bottom: -18px;
  }
  .offer-card h3 {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .menu-item,
    .full-menu-section .menu-item {
    display: block;
    text-align: center;
  }
  .menu-item-info {
    min-width: 0px;
  }
  .menu-item-img {
    margin-right: 0px;
    margin-bottom: 16px;
  }
  .menu-item-img img {
    width: 90px;
    height: 90px;
  }
  .menu-line,
    .full-menu-section .menu-line {
    display: none;
  }
  .menu-price,
    .full-menu-section .menu-price {
    display: block;
    margin-top: 10px;
  }
  .special-section {
    padding: 55px 0;
  }
  .special-box {
    padding: 55px 24px 65px;
  }
  .special-card img {
    height: 230px;
  }
  .special-border {
    width: 10px;
  }
  .testimonial-section {
    padding: 55px 0;
  }
  .testimonial-text {
    font-size: 22px;
  }
  .testimonial-divider img {
    width: 40px !important;
    max-width: 40px !important;
  }
  .facilities-header h2,
    .story-content h2,
    .offer-header h2,
    .menu-header h2,
    .special-header h2,
    .food-menu-header h2,
    .contact-header h2 {
    font-size: 36px;
  }
  .about-hero-section,
    .menu-hero-section,
    .gallery-hero-section,
    .contact-hero-section {
    min-height: 300px;
  }
  .about-hero-content h1,
    .menu-hero-content h1,
    .gallery-hero-content h1,
    .contact-hero-content h1 {
    font-size: 44px;
  }
  .food-menu-block {
    margin-bottom: 70px;
  }
  .gallery-row-four,
    .gallery-row-three {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 250px;
  }
  .contact-card {
    padding: 35px 20px;
  }
  .contact-shape img {
    width: 145px;
  }
  .contact-map iframe {
    height: 250px;
  }
  .footer-section {
    padding-top: 60px;
  }
  .footer-main {
    padding-bottom: 25px;
  }
  .footer-bottom p {
    line-height: 1.8;
  }
  .footer-bottom img {
    display: block;
    margin: 10px auto 0;
  }
  .language-menu {
    width: 140px;
  }
  .language-menu a {
    font-size: 12px;
    padding: 9px 12px;
  }
  .carousel-inner,
.carousel-item,
.carousel-item img {
    height: 520px;
  }
  .carousel-caption.hero-content {
    width: 92%;
    max-width: 340px;
  }
  .hero-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  .divider-image {
    margin-bottom: 12px;
  }
  .divider-image img {
    width: 55px !important;
    max-width: 55px !important;
  }
  .hero-content h1 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 12px;
  }
  .hero-text {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .hero-btn {
    padding: 12px 22px;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .story-btn, .menu-button a {
    padding-top: 12px;
    padding-right: 22px;
    padding-bottom: 12px;
    padding-left: 22px;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .menu-item, .full-menu-section .menu-item {
    display: block;
    text-align: center;
  }
  .menu-line, .full-menu-section .menu-line {
    display: none;
  }
  .menu-price, .full-menu-section .menu-price {
    display: block;
    margin-top: 10px;
  }
  .facilities-header h2, .story-content h2, .offer-header h2, .menu-header h2, .special-header h2, .food-menu-header h2, .contact-header h2 {
    font-size: 36px;
  }
  .about-hero-content h1, .menu-hero-content h1, .gallery-hero-content h1, .contact-hero-content h1 {
    font-size: 44px;
  }
  .carousel-item, .carousel-item img {
    height: 520px;
  }
  .about-hero-section {
    min-height: 300px;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-text {
    font-size: 13px;
  }
  .hero-btn,
    .story-btn,
    .menu-button a {
    padding: 11px 18px;
    letter-spacing: 2px;
  }
  .facilities-header h2,
    .story-content h2,
    .offer-header h2,
    .menu-header h2,
    .special-header h2,
    .food-menu-header h2,
    .contact-header h2 {
    font-size: 32px;
  }
  .about-hero-content h1,
    .menu-hero-content h1,
    .gallery-hero-content h1,
    .contact-hero-content h1 {
    font-size: 38px;
  }
  .gallery-item img {
    height: 220px;
  }
  .carousel-inner,
.carousel-item,
.carousel-item img {
    height: 500px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-text {
    font-size: 13px;
  }
  .story-btn, .menu-button a {
    padding-top: 11px;
    padding-right: 18px;
    padding-bottom: 11px;
    padding-left: 18px;
    letter-spacing: 2px;
  }
  .facilities-header h2, .story-content h2, .offer-header h2, .menu-header h2, .special-header h2, .food-menu-header h2, .contact-header h2 {
    font-size: 32px;
  }
  .about-hero-content h1, .menu-hero-content h1, .gallery-hero-content h1, .contact-hero-content h1 {
    font-size: 38px;
  }
  .carousel-item, .carousel-item img {
    height: 500px;
  }
}