
  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background: #FBF7F1;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
  }

  .hero-bg {
    background:
        linear-gradient(110deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.55) 55%, rgba(190,21,33,.35) 100%),
        url("../images/loaction/special-occasions-boca-raton.jpeg");
    background-size: cover;
    background-position: center;
}

  .ornament::before,
  .ornament::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 14px;
    opacity: .5;
  }

  .card-tilt {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s;
  }

  .card-tilt:hover {
    transform: translateY(-8px) rotate(-.4deg);
  }

  .service-card {
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.2, .8, .2, 1);
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: auto -40% -40% auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 141, 54, .18), transparent 70%);
    transition: all .6s ease;
  }

  .service-card:hover::before {
    inset: auto -20% -20% auto;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .25);
  }

  .menu-card {
    transition: all .5s;
  }

  .menu-card:hover {
    transform: translateY(-6px);
  }

  .menu-card:hover .menu-img {
    transform: scale(1.08);
  }

  .menu-img {
    transition: transform .8s ease;
  }

  details>summary {
    list-style: none;
    cursor: pointer;
  }

  details>summary::-webkit-details-marker {
    display: none;
  }

  details[open] .faq-icon {
    transform: rotate(45deg);
    background: #BE1521;
    color: #fff;
  }

  .faq-icon {
    transition: all .3s ease;
  }

  .marquee {
    display: flex;
    animation: scroll 35s linear infinite;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0)
    }

    100% {
      transform: translateX(-50%)
    }
  }

  .btn-primary {
    background: #BE1521;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s;
    box-shadow: 0 10px 25px -10px rgba(190, 21, 33, .6);
  }

  .btn-primary:hover {
    background: #8E0F19;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px -10px rgba(190, 21, 33, .7);
  }

  .btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    transition: all .35s;
  }

  .btn-ghost:hover {
    background: #fff;
    color: #1A1A1A;
    border-color: #fff;
  }

  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: .4;
    color: #008D36;
  }

  .badge-num {
    font-family: 'Playfair Display', serif;
  }
