  @font-face {
      font-family: 'Open Sans';
      src: url('/font/opensans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
  }

  :root {
      --color-L1: #E1CFAE;
      --color-L2: #DABC9B;
      --color-M1: #C8A675;
      --color-M2: #9E8B6F;
      --color-M3: #725223;
      --color-D1: #4E320B;
      --color-D2: #392609;
      --color-prices: #fefdfb;
  }

  body {
      font-family: 'Open Sans', sans-serif;
      color: var(--color-M2);
      background-color: var(--color-L2);
      background-image: url('bg/7.png');
      background-repeat: repeat;
      background-size: auto;
  }

  @media (max-width: 960px) {
      body {
        background-image: none !important;;
      }
  }


  h1,
  h2,
  h3,
  h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--color-D2);
      text-align: center;
  }

  ul li {
      color: var(--color-D2);
  }

  .social-share {
      display: flex;
      gap: 10px;
      margin: 20px 0;
  }

  .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      font-size: 20px;
      transition: background 0.3s ease;
  }

  .facebook {
      background: #3b5998;
  }

  .facebook:hover {
      background: #2d4373;
  }

  .twitter {
      background: #1da1f2;
  }

  .twitter:hover {
      background: #0d95e8;
  }

  .linkedin {
      background: #0077b5;
  }

  .linkedin:hover {
      background: #005983;
  }

  .email {
      background: #777;
  }

  .email:hover {
      background: #555;
  }

  .whatsapp {
      background: #25D366;
  }

  .whatsapp:hover {
      background: #1ebe5d;
  }

  /* Sticky navbar */
  .navbar {
      background-color: var(--color-L1);
      box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
  }

  .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-D2);
  }

  .navbar-brand img{
    height:80%;
    width:80%;
  }

  .nav-link {
      color: var(--color-D1);
      font-weight: 600;
      transition: color 0.3s ease;
  }

  .nav-link:hover,
  .nav-link:focus {
      color: var(--color-D2);
  }

  /* Hero szekció */
  .hero {
      background: url('big_img.jpeg') center center/cover no-repeat;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-L1);
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      text-align: center;
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: 900;
      letter-spacing: 3px;
  }


  /* Szolgáltatások */
  .services {
      text-shadow: 0 1px rgba(0, 0, 0, 0.7);
  }

  .services a {
      all: unset;
  }

  .services:hover {
      text-shadow: 1px 1px rgba(0, 0, 0, 0.7);
  }

  .services .card {
      border: none;
      transition: transform 0.3s ease;
  }

  .services .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(179, 107, 74, 0.3);
  }

  /* Galéria */
  .gallery img {
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
      object-fit: cover;
      height: 200px;
      width: 100%;
  }

  .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 15px rgba(179, 107, 74, 0.4);
  }

  /* Lábjegyzet */
  footer {
      background-color: #f8f4f0;
      padding: 20px 0;
      text-align: center;
      color: #5a4a3c;
      font-size: 0.9rem;
  }

  /* Galéria Modális */
  .modal-content {
      border: none;
  }

  .modal-header {
      border-bottom: none;
  }

  .modal-footer {
      border-top: none;
  }

  .modal-body {
      padding: 0;
  }

  .modal-image {
      width: 100%;
      height: auto;
  }

  .dropdown-menu {
      background-color: var(--color-L1);
      width: 100%;
  }

  .dropdown-item:hover {
      background-color: var(--color-L2);
      width: 100%;
  }

  .center-text {
      background-color: var(--color-L1);
      color: var(--color-D2);
      border-radius: 20px;
      padding: 20px;
  }

  .center-img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      border-radius: 20px;
  }

  #prices {
      width: 75%;
      background-color: var(--color-prices);
  }