/* =========================================================
   BISTLY / MEDITERRANEAN RESTAURANT
   COLOR PALETTE
   =========================================================

   Deep Sea Blue       #123B4A
   Mediterranean Blue  #1E6070
   Dark Card Blue      #174A57
   Cream               #FFF4DF
   Tomato Red          #D94A38
   Golden Yellow       #F2B544
   White               #FFFFFF
   Warm Gray           #D8D1C5
   Dark Text           #263238

   ========================================================= */

/* =========================================================
   GOOGLE FONTS
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:wght@300;400;500;700&display=swap");


html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #123b4a;
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: all 0.3s ease;
}

button {
  transition: all 0.3s ease;
}

::selection {
  background: #d94a38;
  color: #ffffff;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  background: #123b4a;
  padding: 0 30px;
  border-bottom: 1px solid rgba(242, 181, 68, 0.15);
  position: relative;
  z-index: 1000;
}

.navbar img {
  max-width: 80px;
  height: auto;
}

.navbar-brand {
  padding: 15px;
}

.nav-link {
  color: #ffffff !important;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f2b544 !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Dropdown */

.dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px;
  background: #174a57;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.dropdown-item {
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
}

.dropdown-item img {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #1e6070;
  color: #f2b544;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.book-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #d94a38;
  color: #ffffff;
  background: #d94a38;
  text-decoration: none;
  border-radius: 30px;
  letter-spacing: 1px;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #f2b544;
  border-color: #f2b544;
  color: #263238;
  box-shadow: 0 10px 30px rgba(242, 181, 68, 0.3);
  transform: translateY(-2px);
}

/* =========================================================
   HOME HERO CAROUSEL
   ========================================================= */

.home-carousel {
  background: #123b4a;
}

.home-carousel .carousel-item {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background: #123b4a;
  overflow: hidden;
}

.carousel-inner img {
  width: 100%;
  height: 85vh;
  min-height: 500px;
  object-fit: cover;
  filter: brightness(0.42);
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 15px;
  width: 90%;
  max-width: 1000px;

  text-align: center;
  color: #ffffff;
}

.carousel-caption h6 {
  font-family: "Marcellus", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f2b544;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-family: "Marcellus", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 10px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

/* Carousel controls */

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* =========================================================
   SECTION TITLES
   ========================================================= */

.subtitle {
  color: #f2b544;
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Marcellus", serif;
}

.subtitle-center {
  color: #f2b544;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  font-family: "Marcellus", serif;
}

.section-desc {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Marcellus", serif;
}

.section-desc-center {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Marcellus", serif;
}

.section-title-light {
  color: #f2b544;
}

/* =========================================================
   DIVIDERS
   ========================================================= */

.divider-1 {
  width: 80%;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #d94a38 0%,
    rgba(217, 74, 56, 0.8) 20%,
    rgba(242, 181, 68, 0.5) 50%,
    rgba(242, 181, 68, 0.15) 75%,
    transparent 100%
  );
}

.divider-2 {
  width: 180px;
  height: 2px;
  margin: 15px auto 25px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 181, 68, 0.2) 15%,
    rgba(242, 181, 68, 0.7) 35%,
    #f2b544 50%,
    rgba(242, 181, 68, 0.7) 65%,
    rgba(242, 181, 68, 0.2) 85%,
    transparent 100%
  );
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
  padding: 90px 40px;
  background: #fff4df;
  color: #263238;
  position: relative;
  overflow: hidden;
}

.about-section .section-desc {
  color: #123b4a;
}

.about-content {
  padding: 40px;
}

.about-content p {
  color: #536067;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 59, 74, 0.25);

  max-height: 550px;
  max-width: 500px;

  margin-left: auto;
  margin-right: auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Experience badge */

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(18, 59, 74, 0.92);
  border: 1px solid rgba(242, 181, 68, 0.5);

  padding: 12px 18px;
  border-radius: 12px;

  backdrop-filter: blur(10px);
  text-align: center;
}

.experience-badge span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #f2b544;
}

.experience-badge small {
  font-size: 12px;
  color: #fff4df;
  letter-spacing: 1px;
}

/* =========================================================
   FEATURES
   ========================================================= */

.feature-section {
  padding: 90px 40px;
  background: #123b4a;
}

.feature-box {
  background: #174a57;
  border: 1px solid rgba(242, 181, 68, 0.18);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;

  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: #f2b544;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;

  border: 2px solid rgba(242, 181, 68, 0.4);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f2b544;
  font-size: 30px;

  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: #f2b544;
  color: #123b4a;
  transform: rotate(8deg);
}

.feature-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Marcellus", serif;
}

.feature-text {
  color: #d8d1c5;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 18px;
  margin-bottom: 0;
}

/* =========================================================
   HOME MENU
   ========================================================= */

.menu-section {
  background: #fff4df;
  padding: 90px 0;
}

.menu-section .section-desc-center {
  color: #123b4a;
}

.menu-section > .container > p {
  color: #536067;
}

.menu-card {
  background: #ffffff;
  border: 1px solid rgba(18, 59, 74, 0.1);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  position: relative;

  box-shadow: 0 10px 30px rgba(18, 59, 74, 0.08);

  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  border-color: #f2b544;
  box-shadow: 0 25px 60px rgba(18, 59, 74, 0.18);
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

.card-body {
  padding: 20px;
}

.card-category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #d94a38;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Marcellus", serif;
}

.card-title {
  color: #123b4a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Marcellus", serif;
}

.card-text {
  color: #667278;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* =========================================================
   GALLERY
   ========================================================= */

.home-gallery {
  padding: 90px 40px;
  background: #1e6070;
}

.gallery-carousel .item {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
}

.gallery-carousel .item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.gallery-carousel .item:hover img {
  transform: scale(1.05);
}

.gallery-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.gallery-carousel .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.gallery-carousel .owl-nav button {
  width: 48px;
  height: 48px;

  border: 2px solid #f2b544 !important;
  border-radius: 50% !important;

  color: #f2b544 !important;
  background: transparent !important;

  font-size: 24px !important;
  margin: 0 8px;

  transition: all 0.3s ease;
}

.gallery-carousel .owl-nav button:hover {
  background: #f2b544 !important;
  color: #123b4a !important;
}

.gallery-carousel .owl-dots {
  margin-top: 25px;
}

.gallery-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.4) !important;
}

.gallery-carousel .owl-dot.active span {
  background: #f2b544 !important;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
  background: #fff4df;
  padding: 90px 0;
  color: #263238;
}

.testimonials .section-desc-center {
  color: #123b4a;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(18, 59, 74, 0.1);
  border-radius: 18px;

  padding: 30px;
  height: 100%;

  position: relative;
  overflow: hidden;

  text-align: center;

  box-shadow: 0 10px 30px rgba(18, 59, 74, 0.08);

  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #f2b544;
  box-shadow: 0 20px 50px rgba(18, 59, 74, 0.15);
}

.testimonial-stars {
  color: #f2b544;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #59666b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  font-family: "Marcellus", serif;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-flag img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(242, 181, 68, 0.4);
}

.testimonial-author {
  color: #123b4a;
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-state {
  color: #d94a38;
  font-size: 13px;
  margin: 0;
  letter-spacing: 1px;
}

.testimonials img {
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(18, 59, 74, 0.1);
  transition: all 0.4s ease;
}

.testimonials img:hover {
  transform: scale(1.03);
  border-color: #f2b544;
}

.testimonials-carousel .item {
  padding: 10px;
}

/* =========================================================
   LARGE COVER SECTION
   ========================================================= */

.top-section {
  position: relative;
  overflow: hidden;
}

.top-section img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  filter: brightness(0.38);
  display: block;
}

.cover-content {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 20px;
  text-align: center;
}

.cover-title {
  max-width: 900px;
  margin: 0 auto;

  font-family: "Marcellus", serif;
  color: #fff4df;

  font-size: clamp(1.2rem, 2.3vw, 3rem);
  line-height: 1.2;

  font-weight: 600;
  letter-spacing: 0.5px;
  font-style: italic;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 70px 70px 0;
  background: #123b4a;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

.footer .logo {
  width: 100px;
}

.footer .description {
  color: #d8d1c5;
  line-height: 1.8;
  font-size: 15px;
  max-width: 320px;
  margin-bottom: 30px;
}

.footer-title {
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-divider {
  width: 80%;
  height: 2px;
  margin-bottom: 20px;

  background: linear-gradient(
    90deg,
    #d94a38 0%,
    rgba(217, 74, 56, 0.8) 20%,
    rgba(242, 181, 68, 0.5) 50%,
    rgba(242, 181, 68, 0.15) 75%,
    transparent 100%
  );
}

.footer-menu,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-menu a,
.footer-contact a {
  color: #d8d1c5;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: #f2b544;
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-icon {
  color: #f2b544;
  margin-top: 3px;
  font-size: 17px;
  min-width: 22px;
}

.work-days,
.working-hours {
  color: #afc0c3;
  margin-left: 35px;
  font-weight: 500;
}

/* Social */

.socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social {
  width: 45px;
  height: 45px;

  border: 2px solid rgba(242, 181, 68, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f2b544;
  background: transparent;

  border-radius: 50%;

  text-decoration: none;
  font-size: 18px;
}

.social:hover {
  background: #f2b544;
  color: #123b4a;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 181, 68, 0.25);
}

/* Footer map */

.footer-map iframe {
  width: 100%;
  height: 200px;

  border: none;
  border-radius: 12px;
  overflow: hidden;

  filter: grayscale(15%) brightness(0.9);

  transition: all 0.4s ease;
}

.footer-map iframe:hover {
  filter: grayscale(0%) brightness(1);
}

/* Copyright */

.copyright {
  padding-top: 18px;
  margin-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 8px;

  color: #afc0c3;
  font-size: 14px;
  flex-wrap: wrap;
}

.copyright a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f2b544;
}

.copyright img {
  width: 100px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.copyright img:hover {
  transform: scale(1.05);
}

/* =========================================================
   PAGE COVER / INNER PAGES
   ========================================================= */

.top-cover {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.top-cover img {
  height: 50vh;
  width: 100% !important;
  filter: brightness(0.42);
  object-fit: cover;
  position: relative;
}

.cover-content-1 {
  position: absolute;
  z-index: 2;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: clamp(20px, 4vw, 50px);

  text-align: center;
  color: rgba(255, 255, 255, 0.85);

  width: 90%;
}

.cover-title-1 {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff4df;
  margin: 0;
  letter-spacing: 2px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 0.85rem;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.75);

  letter-spacing: 1px;
}

.breadcrumb a {
  color: #f2b544;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   ABOUT TESTIMONIALS
   ========================================================= */

.testimonials-1 {
  padding: 90px 40px;
  background: #174a57;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery {
  padding: 90px 40px;
  background: #fff4df;
}

.gallery .item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.gallery .item:hover img {
  transform: scale(1.05);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-modern {
  background: #174a57;
  padding: 90px 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}

.contact-box {
  background: #123b4a;
  border: 1px solid rgba(242, 181, 68, 0.18);
  border-radius: 16px;

  padding: 35px 25px;

  text-align: center;
  height: 100%;

  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-8px);
  border-color: #f2b544;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-box i {
  font-size: 28px;
  color: #f2b544;
  margin-bottom: 15px;
}

.contact-box h5 {
  font-family: "Marcellus", serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-box a {
  display: inline-block;
  color: #d8d1c5;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.7;
  word-break: break-word;
}

.contact-box a:hover {
  color: #f2b544;
}

.contact-text {
  padding-right: 20px;
}

.contact-text h2 {
  font-size: 42px;
  margin: 15px 0;
  color: #ffffff;
  font-family: "Marcellus", serif;
}

.contact-text p {
  color: #d8d1c5;
  font-size: 15px;
  line-height: 1.8;
}

.hours {
  margin-top: 25px;
}

.hours h6 {
  color: #f2b544;
  font-size: 16px;
  margin-bottom: 12px;
}

.hours p {
  margin: 5px 0;
  color: #d8d1c5;
  font-size: 14px;
}

/* Map */

.map-box {
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(242, 181, 68, 0.2);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.map-box iframe {
  width: 100%;
  height: 420px;

  border: 0;
  display: block;

  filter: grayscale(10%) brightness(0.95);

  transition: all 0.4s ease;
}

.map-box:hover iframe {
  filter: grayscale(0%) brightness(1);
}

/* =========================================================
   MENU PAGE
   ========================================================= */

.menu {
  background: #fff4df;
  padding: 90px 40px;
  font-family: "Roboto", sans-serif;
}

.menu-header {
  text-align: center;
}

.menu-header .section-desc-center {
  color: #123b4a;
}

.menu-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d94a38;
  margin-bottom: 5px;
  font-family: "Marcellus", serif;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(18, 59, 74, 0.12);

  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateX(5px);
}

.menu-info h4 {
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: #123b4a;
  margin-bottom: 6px;
}

.menu-info p {
  font-size: 14px;
  color: #667278;
  margin: 0;
  line-height: 1.6;
}

.price {
  color: #d94a38;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-item:hover h4 {
  color: #d94a38;
}

.menu-section .row {
  margin-bottom: 40px;
}

/* =========================================================
   EXTRA ACCENT CLASSES
   ========================================================= */

.text-danger,
.text-primary {
  color: #d94a38 !important;
}

.bg-primary {
  background-color: #123b4a !important;
}

.bg-danger {
  background-color: #d94a38 !important;
}

/* =========================================================
   TABLET - MAX 991px
   ========================================================= */

@media (max-width: 991.98px) {
  /* Navbar */

  .navbar {
    padding: 10px 20px;
  }

  .navbar-brand {
    padding: 10px 0;
  }

  .navbar img {
    max-width: 80px;
  }

  .navbar-collapse {
    background: #174a57;
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-item {
    margin: 8px 0;
  }

  .book-btn {
    padding: 10px 24px;
    font-size: 15px;
  }

  .dropdown-menu {
    text-align: center;
    background: #123b4a;
    border: none;
  }

  /* Hero */

  .home-carousel .carousel-item,
  .carousel-inner img {
    height: 70vh;
    min-height: 450px;
  }

  .carousel-caption {
    width: 90%;
    gap: 12px;
  }

  .carousel-caption h6 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .carousel-caption p {
    font-size: 2rem;
    line-height: 1.3;
  }

  .carousel-caption .book-btn {
    padding: 12px 24px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
  }

  /* About */

  .about-section {
    padding: 70px 20px;
  }

  .about-content {
    padding: 30px 15px;
    text-align: center;
  }

  .about-image {
    max-width: 450px;
    margin: 40px auto 0;
  }

  .experience-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 15px;
  }

  .experience-badge span {
    font-size: 18px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* Features */

  .feature-section {
    padding: 70px 20px;
  }

  .feature-box {
    padding: 35px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-text {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Menu */

  .menu-section {
    padding: 70px 20px;
  }

  .card-img-wrap {
    height: 220px;
  }

  .card-body {
    padding: 18px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 15px;
  }

  /* Gallery */

  .home-gallery {
    padding: 70px 20px;
  }

  .gallery-carousel .item img {
    height: 280px;
  }

  /* Testimonials */

  .testimonials {
    padding: 70px 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .testimonials .col-lg-4 {
    margin-top: 20px;
  }

  .testimonials img {
    max-height: 420px;
    width: 100%;
  }

  /* Cover */

  .top-section img {
    height: 45vh;
  }

  .cover-title {
    max-width: 750px;
    font-size: clamp(1.1rem, 2.5vw, 2.5rem);
  }

  .cover-content {
    padding: 0 25px;
  }

  /* Footer */

  .footer {
    padding: 60px 25px 25px;
    text-align: center;
  }

  .footer [class*="col-"] {
    margin-bottom: 40px;
  }

  .footer .logo {
    margin: 0 auto 15px;
    display: block;
  }

  .footer .description {
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .footer-title {
    text-align: center;
    font-size: 18px;
  }

  .footer-divider {
    width: 160px;
    margin: 12px auto 20px;
  }

  .footer-menu,
  .footer-contact {
    align-items: center;
  }

  .footer-menu a,
  .footer-contact a {
    font-size: 14.5px;
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
  }

  .work-days,
  .working-hours {
    margin-left: 0;
  }

  .socials {
    justify-content: center;
  }

  .footer-map iframe {
    height: 240px;
  }

  .copyright {
    margin-top: 20px;
    padding-top: 18px;
  }

  /* Gallery page */

  .gallery {
    padding: 70px 20px;
  }

  .gallery img {
    height: 240px;
  }

  /* Contact */

  .contact-modern {
    padding: 70px 25px;
    text-align: center;
  }

  .contact-text {
    padding-right: 0;
  }

  .contact-text h2 {
    font-size: 34px;
  }

  .map-box iframe {
    height: 350px;
  }

  .contact-box {
    margin-bottom: 15px;
  }

  /* Menu page */

  .menu {
    padding: 70px 20px;
  }

  .menu-section {
    padding: 60px 20px;
  }

  .section-desc-center {
    font-size: 30px;
  }

  .menu-item {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }

  .price {
    align-self: flex-start;
  }
}

/* =========================================================
   MOBILE - MAX 767px
   ========================================================= */

@media (max-width: 767.98px) {
  /* Navbar */

  .navbar {
    padding: 10px 15px;
  }

  .navbar img {
    max-width: 70px;
  }

  .nav-link {
    font-size: 17px;
    padding: 10px 0;
  }

  .book-btn {
    padding: 9px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .dropdown-item {
    font-size: 16px;
  }

  /* Hero */

  .home-carousel .carousel-item,
  .carousel-inner img {
    height: 60vh;
    min-height: 400px;
  }

  .carousel-caption {
    width: 95%;
    gap: 10px;
  }

  .carousel-caption h6 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  .carousel-caption p {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .carousel-caption .book-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* About */

  .about-section {
    padding: 60px 15px;
  }

  .about-content {
    padding: 0;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
    margin-top: 35px;
  }

  .experience-badge {
    padding: 8px 12px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge small {
    font-size: 11px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* Features */

  .feature-section {
    padding: 60px 15px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .feature-title {
    font-size: 19px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Menu */

  .menu-section {
    padding: 60px 15px;
  }

  .menu-card {
    max-width: 420px;
    margin: auto;
  }

  .card-img-wrap {
    height: 240px;
  }

  .card-body {
    padding: 20px;
  }

  .card-category {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .card-title {
    font-size: 19px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Gallery */

  .home-gallery {
    padding: 60px 15px;
  }

  .gallery-carousel .item img {
    height: 240px;
  }

  .gallery-carousel .owl-nav button {
    width: 42px;
    height: 42px;
    font-size: 20px !important;
  }

  /* Testimonials */

  .testimonials {
    padding: 60px 15px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-stars {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-flag img {
    width: 45px;
    height: 45px;
  }

  .testimonial-author {
    font-size: 15px;
  }

  .testimonial-state {
    font-size: 12px;
  }

  .testimonials img {
    width: 100%;
    max-height: 320px;
    margin-top: 15px;
  }

  /* Cover */

  .top-section img {
    height: 40vh;
  }

  .cover-title {
    max-width: 600px;
    font-size: clamp(1rem, 3.2vw, 2rem);
    line-height: 1.3;
  }

  .cover-content {
    padding: 0 20px;
  }

  /* Footer */

  .footer {
    padding: 50px 18px 20px;
  }

  .footer .logo {
    width: 85px;
  }

  .footer-title {
    font-size: 17px;
    letter-spacing: 1.5px;
  }

  .footer-divider {
    width: 140px;
  }

  .footer-menu a,
  .footer-contact a {
    font-size: 14px;
  }

  .footer-contact p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .footer-icon {
    margin-top: 0;
  }

  .footer-map iframe {
    height: 200px;
    border-radius: 10px;
  }

  .social {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .copyright {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .copyright img {
    width: 80px;
  }

  /* Gallery page */

  .gallery {
    padding: 60px 15px;
  }

  .gallery img {
    height: 220px;
  }

  .gallery .item,
  .gallery img {
    border-radius: 14px;
  }

  /* Contact */

  .contact-modern {
    padding: 60px 15px;
  }

  .contact-text h2 {
    font-size: 28px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .hours p {
    font-size: 13px;
  }

  .map-box iframe {
    height: 300px;
  }

  .contact-box {
    padding: 30px 20px;
  }

  /* Inner menu */

  .menu {
    padding: 60px 15px;
  }

  .section-desc-center {
    font-size: 26px;
  }
}

/* =========================================================
   SMALL MOBILE - MAX 575px
   ========================================================= */

@media (max-width: 575.98px) {
  /* Navbar */

  .navbar {
    padding: 8px 12px;
  }

  .navbar img {
    max-width: 65px;
  }

  .nav-link {
    font-size: 16px;
  }

  .book-btn {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 25px;
  }

  /* Hero */

  .home-carousel .carousel-item,
  .carousel-inner img {
    height: 55vh;
    min-height: 350px;
  }

  .carousel-caption {
    width: 95%;
    padding: 0 10px;
  }

  .carousel-caption h6 {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .carousel-caption p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .carousel-caption .book-btn {
    padding: 9px 20px;
    font-size: 0.85rem;
  }

  /* Section headings */

  .section-desc {
    font-size: 27px;
  }

  .section-desc-center {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
  }

  .subtitle-center {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* About */

  .about-section {
    padding: 50px 12px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-image {
    border-radius: 15px;
  }

  .experience-badge {
    bottom: 10px;
    left: 10px;
    padding: 7px 10px;
  }

  .experience-badge span {
    font-size: 15px;
  }

  .experience-badge small {
    font-size: 10px;
  }

  /* Features */

  .feature-section {
    padding: 50px 12px;
  }

  .feature-box {
    padding: 25px 18px;
    border-radius: 14px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 18px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .feature-text {
    font-size: 14px;
    margin-top: 12px;
  }

  /* Menu */

  .menu-section {
    padding: 50px 12px;
  }

  .menu-card {
    max-width: 100%;
  }

  .card-img-wrap {
    height: 210px;
  }

  .card-body {
    padding: 18px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }

  .card-category {
    font-size: 11px;
  }

  /* Gallery */

  .home-gallery {
    padding: 50px 12px;
  }

  .gallery-carousel .item img {
    height: 210px;
    border-radius: 14px;
  }

  .gallery-carousel .item {
    border-radius: 14px;
  }

  /* Testimonials */

  .testimonials {
    padding: 50px 12px;
  }

  .testimonial-card {
    padding: 20px 16px;
    border-radius: 15px;
  }

  .testimonial-stars {
    font-size: 12px;
  }

  .testimonial-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .testimonial-flag img {
    width: 40px;
    height: 40px;
  }

  .testimonial-author {
    font-size: 14px;
  }

  .testimonial-state {
    font-size: 11px;
  }

  .testimonials img {
    max-height: 250px;
    border-radius: 15px;
  }

  .testimonials-carousel .item {
    padding: 5px;
  }

  /* Cover */

  .top-section img {
    height: 35vh;
  }

  .cover-title {
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }

  .cover-content {
    padding: 0 15px;
  }

  /* Footer */

  .footer {
    padding: 40px 15px 15px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-divider {
    width: 120px;
  }

  .footer-menu a,
  .footer-contact a {
    font-size: 13.5px;
  }

  .social {
    width: 40px;
    height: 40px;
  }

  .footer-map iframe {
    height: 180px;
  }

  .copyright img {
    width: 75px;
  }

  /* Gallery page */

  .gallery {
    padding: 50px 12px;
  }

  .gallery img {
    height: 200px;
  }

  .gallery .item,
  .gallery img {
    border-radius: 12px;
  }

  /* Contact */

  .contact-modern {
    padding: 50px 12px;
  }

  .contact-text h2 {
    font-size: 24px;
  }

  .contact-box i {
    font-size: 24px;
  }

  .contact-box h5 {
    font-size: 16px;
  }

  .map-box iframe {
    height: 260px;
  }

  /* Inner menu */

  .menu {
    padding: 50px 12px;
  }

  .section-desc-center {
    font-size: 24px;
  }

  .menu-info h4 {
    font-size: 16px;
  }

  .menu-info p {
    font-size: 13px;
  }

  .price {
    font-size: 16px;
  }
}
