@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
  font-family: "Fredoka", sans-serif;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #1D2740 !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Fredoka", sans-serif;
}

/* Navbar */
.navbar {
  position: sticky; 
  top: 0; 
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 10px 15px;
}

.nav-btn {
  margin: 10px 15px;
}

.navbar.scrolled {
  background-color: white;
}

.navbar.scrolled .nav-link {
  color: black !important;
}

.navbar.scrolled .nav-btn::before,
.navbar.scrolled .nav-btn::after {
  border-color: black;
}

.logo {
  width: 180px;
}

/* Hero section */
.hero-image img {
  margin-top: -115px;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-content {
  display: block;
  position: absolute;
  width: 50%;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
  text-align: left;
}

.title {
  font-size: 2.5rem;
  font-weight: 650;
  color: #1A75BC;
}

.subtitle {
  font-size: 1.9rem;
  color: #1A75BC;
}

.carousel-content img {
  width: 100%;
  height: 80vh;
  filter: brightness(0.6);
}

/* About */
.about-us {
  padding: 50px 0;
}

.about-us .title {
  margin-top: -55px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

a {
  text-decoration: none;
  color: black;
}

/* Category */
.category {
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.card-restaurant {
  background-color: #ECECFD;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.content-card {
  padding: 20px;
}

.read-more {
  padding: 10px;
}

.card-restaurant:hover,
.active-card {
  color: white;
  background-color: #00A79D;
}

.content-card h5 {
  padding-bottom: 10px;
}

.card-restaurant:hover .read-more,
.active-card-more {
  color: white;
  background-color: #136e68;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card-restaurant:hover .button_text {
  color: white;
}

.card-restaurant:hover .button::before,
.card-restaurant:hover .button::after,
.active-card-more .button::before,
.active-card-more .button::after {
  border-color: white;
}

/* Buttons */
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
  width: fit-content;
}

.button::before,
.button::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #0000006e;
  transition: all .15s ease;
}

.nav-btn::before,
.nav-btn::after {
  border: 1px solid white;
}

.button::before {
  top: 0;
  border-bottom-width: 0;
}

.button::after {
  bottom: 0;
  border-top-width: 0;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #1A75BC;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #1A75BC;
}

.button_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #1A75BC;
  transition: all .2s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #00A79D;
  transform: skew(-15deg);
  transition: all .2s ease;
}

.button_text {
  position: relative;
}

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: #fff;
}

/* Vision */
.vision i {
  font-size: 2.6rem;
  text-align: center;
  color: #00A79D;
}

.vision {
  padding: 50px 0;
}

/* Contact */
.contact,
.contact a,
.contact .title {
  z-index: 100;
  color: white !important;
}

.contact img {
  z-index: 1000;
  border-radius: 50%;
}

.custom-shape-divider-bottom-1766760916 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1766760916 svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 350px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1766760916 .shape-fill {
  fill: #1A75BC;
}

/* Footer */
.footer {
  border-top: solid 2px white;
  background-color: #1A75BC;
  position: relative;
  z-index: 100;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 60px;
}

.logo-footer {
  width: 150px;
}

.footer p,
.footer a,
.footer i {
  color: white;
}

.footer-title {
  font-family: "Fredoka", sans-serif;
  color: white;
}

.copyright {
  color: white;
}

.logo-copyright {
  width: 120px;
}

/* Responsive Fixes */
@media (max-width: 1500px) {
  .about-us span {
    color: #1A75BC !important;
  }
}

@media (max-width: 992px) {
  .navbar {
    background-color: white !important;
  }

  .nav-link {
    color: black !important;
  }

  .nav-btn::before,
  .nav-btn::after {
    border-color: black !important;
  }
}

@media (max-width: 900px) {
  .image2-about {
    display: none;
  }

  .about-us .title {
    margin-top: 0;
  }

  .image3 {
    width: 400px;
    margin: auto;
    display: block;
  }

  .custom-shape-divider-bottom-1766760916 svg {
    width: calc(400% + 1.3px);
    height: 429px;
  }

  .title {
    font-size: 1.9em;
  }
}

@media (max-width: 768px) {
  .hero-content {
    width: 90% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    padding: 0 20px;
  }

  .hero-image img {
    margin-top: 0 !important;
    height: 90vh;
  }

  .about-us .title {
    margin-top: 30px !important;
    font-size: 2rem !important;
  }

  .title {
    font-size: 2.2rem !important;
  }

  .custom-shape-divider-bottom-1766760916 svg {
    height: 150px;
    width: calc(100% + 1.3px);
  }
}

@media (max-width: 480px) {
    .hero-content .title , span{
    color: white !important;

  }
  .title {
    font-size: 1.8rem !important;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .subtitle {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 450px) {
    .hero-content .title{
    color: white !important;
  }
  .hero-content {
    width: 100%;
  }

  .hero-image {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .hero-content .title{
    color: white !important;
  }
  .title {
    font-size: 1.5em;
  }

  .custom-shape-divider-bottom-1766760916 svg {
    width: calc(450% + 1.3px);
    height: 468px;
  }
}