*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  padding-top: 70px;
}

.demo-top-bar {
  background-color: #f8f1e9;
  color: #78350f;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  border-bottom: 1px solid rgba(146, 64, 14, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-top-bar p {
  margin: 0;
  letter-spacing: 0.5px;
}
.demo-top-bar a {
  color: #92400e;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(146, 64, 14, 0.3);
}
.demo-top-bar a:hover {
  color: rgb(99.4625, 43.6, 9.5375);
  border-bottom-color: #92400e;
}
.demo-top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar {
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.navbar-brand {
  color: #ffffff !important;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}
.navbar-brand i {
  color: #fef3c7;
  transition: transform 0.3s ease;
}
.navbar-brand:hover {
  color: #fef3c7 !important;
}
.navbar-brand:hover i {
  transform: rotate(-15deg) scale(1.2);
}
.navbar-scrolled {
  background-color: rgba(120, 53, 15, 0.95) !important;
  padding: 0.6rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 0.8rem;
  padding: 0.5rem 0 !important;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fef3c7;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fef3c7 !important;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #78350f;
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(254, 243, 199, 0.1);
  }
  .nav-link {
    margin: 0.5rem 0;
  }
  .nav-link::after {
    display: none;
  }
}
.hero-section {
  position: relative;
  min-height: 80vh;
  height: 100vh;
  background-image: url("../img/cafe1.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(120, 53, 15, 0.8), rgba(0, 0, 0, 0.4));
  z-index: 1;
}
.hero-section .z-index-2 {
  position: relative;
  z-index: 2;
}
.hero-section .hero-icon {
  color: #fef3c7;
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  display: inline-block;
}
.hero-section .hero-title {
  color: #ffffff;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-subtitle {
  color: #fef3c7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-custom {
  background-color: #92400e;
  color: #ffffff;
  border: 2px solid #92400e;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-custom:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-section {
  background-color: #fffbeb;
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/cafe4.webp");
  background-repeat: repeat;
  background-size: 300px;
  background-position: center;
  opacity: 0.4;
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section .about-image-container img {
  transition: transform 0.3s ease;
}
.about-section .about-image-container img:hover {
  transform: scale(1.03);
}
.about-section .about-content h2 {
  line-height: 1.2;
  color: #78350f;
}
.about-section .about-content p {
  line-height: 1.8;
}
.about-section .about-content .color-primary {
  color: #92400e !important;
}
.about-section .about-content .color-secondary {
  color: #d97706 !important;
}
.about-section .about-content .color-text-dark {
  color: #78350f !important;
}
.about-section .about-content .ls-2 {
  letter-spacing: 2px;
}

.menu-section {
  background-color: #fdf8f3;
  position: relative;
  padding: 100px 0;
}
.menu-section .menu-card {
  background: #ffffff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 4px 15px rgba(120, 53, 15, 0.03);
}
.menu-section .menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(146, 64, 14, 0.15);
}
.menu-section .menu-card:hover .btn-menu {
  background-color: #92400e;
  color: #ffffff;
}
.menu-section .menu-card .menu-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-section .menu-card .menu-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-section .menu-card .menu-image .menu-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #92400e;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.menu-section .menu-card .menu-info h4 {
  color: #78350f;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.menu-section .menu-card .menu-info p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}
.menu-section .menu-card .btn-menu {
  background-color: transparent;
  color: #92400e;
  border: 2px solid #92400e;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.menu-section .menu-card .btn-menu:hover {
  background-color: #92400e;
  color: #ffffff;
  transform: scale(1.02);
}

.gallery-section {
  background-color: #ffffff;
}
.gallery-section .carousel {
  max-width: 900px;
  margin: 0 auto;
}
.gallery-section .carousel .carousel-item {
  height: 500px;
}
.gallery-section .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}
.gallery-section .carousel .carousel-caption {
  background: rgba(120, 53, 15, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px;
  bottom: 30px;
}
.gallery-section .carousel .carousel-indicators [data-bs-target] {
  background-color: #92400e;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.contact-section {
  background-color: #ede0d4;
  padding: 80px 0;
}
.contact-section .contact-wrapper {
  background-color: #ffffff;
  border: 1px solid rgba(120, 53, 15, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-info-panel {
  background-color: rgb(122.73125, 53.8, 11.76875);
  color: #ffffff;
}
.contact-section .contact-info-panel h3 {
  letter-spacing: -1px;
}
.contact-section .contact-info-panel i {
  color: rgb(235.53125, 121.5, 51.96875);
}
.contact-section .form-control {
  border: 1.5px solid #eee;
  border-radius: 8px;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}
.contact-section .form-control:focus {
  background-color: #ffffff;
  border-color: #92400e;
  box-shadow: 0 0 0 4px rgba(146, 64, 14, 0.1);
}
.contact-section .btn-contact {
  background-color: #92400e;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.contact-section .btn-contact:hover {
  background-color: #78350f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.main-footer {
  background-color: #1a1412;
  color: #d6ccc2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 100px 0 30px;
}
.main-footer .footer-logo {
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}
.main-footer .footer-logo span {
  color: #92400e;
}
.main-footer h5 {
  color: #ffffff;
  font-size: 0.9rem;
}
.main-footer .form-control {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.main-footer .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.main-footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.main-footer .form-control:focus {
  border-color: #92400e !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
.main-footer .btn-newsletter {
  background-color: #92400e;
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 0 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.main-footer .btn-newsletter:hover {
  background-color: rgb(192.5375, 84.4, 18.4625);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(146, 64, 14, 0.4);
  transform: scale(1.05);
}
.main-footer .contact-info i {
  font-size: 1.1rem;
  color: #92400e;
}
.main-footer .social-links .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.main-footer .social-links .btn:hover {
  background-color: #92400e;
  border-color: #92400e;
  transform: translateY(-3px);
}
.main-footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}
.main-footer .footer-credits p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-bottom: 0;
}
.main-footer .footer-credits .demo-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}
.main-footer .footer-credits .demo-text a {
  color: #92400e;
  text-decoration: none;
  font-weight: 700;
  font-style: normal;
  transition: all 0.3s ease;
}
.main-footer .footer-credits .demo-text a:hover {
  color: rgb(215.80625, 94.6, 20.69375);
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.7;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}/*# sourceMappingURL=main.css.map */