

:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;

  
  --footer-bg-color: #2e1705;
  --link-color: #361a08;
  --header-bg-color: #ffffff;
  --font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: rgb(44, 21, 6);
}

html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
      
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.068), rgba(0, 0, 0, 0)),
    url("/images/body-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

  
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 800;
}
h2 {
      font-weight: 800;

    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color) !important;
}



.content-area a {

  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
  
.error_page {
  min-height: 70vh;
}


  .footer-news {
  background: var(--footer-bg-color);
  border-top: 3px solid var(--link-color);
  padding: 2.5rem 1rem;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
  color: var(--footer-text-color);

}

.footer-news a {
  color: var(--link-color);
  text-decoration: none;
  position: relative;
}

.footer-news a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--link-color);
  transition: width 0.3s ease;
}

.footer-news a:hover::after {
  width: 100%;
}

.footer-newsletter h3 {
  color: var(--footer-text-color) !important;
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter-form input {
  padding: 0.6rem 1rem;
  border: 1px solid var(--link-color);
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: var(--link-color);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 143, 106, 0.2);
}
.footer-social .social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid var(--link-color);
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.footer-social .social-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  background: var(--link-color);
  color: #fff;
}

.footer-news::after {
  right: 10px;
  top: auto;
  bottom: 10px;
  left: auto;
}

/* Responsive */
@media (max-width: 767px) {
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
  


 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;

}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.gradient-bg {
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
  
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

            



.fancy-section {
    --coffee-dark: #3b2418;
    --coffee: #6b4226;
    --coffee-medium: #8a5a3c;
    --coffee-light: #b07a52;
    --cream: #f6f1eb;
    --warm-white: rgba(255, 252, 248, 0.92);
    --line: rgba(107, 66, 38, 0.16);
    --shadow: 0 18px 45px rgba(59, 36, 24, 0.12);

    position: relative;
    margin: 30px auto;
    padding: 55px 55px 45px;
    background: linear-gradient(145deg, rgba(255,255,255,0.93), rgba(246,241,235,0.96));
    border: 1px solid rgba(107, 66, 38, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(3px);
    isolation: isolate;
}

.fancy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(176, 122, 82, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(107, 66, 38, 0.12), transparent 30%),
        linear-gradient(to bottom, rgba(255,255,255,0.15), transparent 30%);
    pointer-events: none;
    z-index: -1;
}

.fancy-section::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 1px solid rgba(138, 90, 60, 0.08);
    border-radius: 22px;
    pointer-events: none;
}

.fancy-section h2 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--coffee-dark);
    letter-spacing: -0.02em;
}

.fancy-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coffee-dark), var(--coffee-light));
    box-shadow: 0 6px 16px rgba(107, 66, 38, 0.18);
}

.fancy-section > p {
    margin: 0 0 34px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #4f4035;
    max-width: 92%;
}

.fancy-section h3 {
    position: relative;
    margin: 34px 0 14px;
    padding: 14px 18px 14px 52px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: var(--coffee-dark);
    background: linear-gradient(90deg, rgba(176, 122, 82, 0.16), rgba(255, 255, 255, 0.35));
    border: 1px solid rgba(107, 66, 38, 0.08);
    border-left: 5px solid var(--coffee);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(59, 36, 24, 0.06);
}

.fancy-section h3::before {
    content: "☕";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(59, 36, 24, 0.12));
}

.fancy-section h3 + p {
    margin-top: 16px;
}

.fancy-section p {
    position: relative;
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: 1.04rem;
    line-height: 1.95;
    color: #483a30;
}

.fancy-section p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--coffee-light), var(--coffee));
    box-shadow: 0 0 0 5px rgba(176, 122, 82, 0.08);
}

.fancy-section h3 + p,
.fancy-section h3 + p + h3,
.fancy-section h3 + p + h3 + p,
.fancy-section h3 + p + h3 + p + h3,
.fancy-section h3 + p + h3 + p + h3 + p {
    position: relative;
    z-index: 1;
}

/* Декоративен фон между блоковете */
.fancy-section h3:not(:first-of-type) {
    margin-top: 38px;
}

.fancy-section a {
    color: var(--coffee);
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 66, 38, 0.25);
    transition: 0.25s ease;
}

.fancy-section a:hover {
    color: var(--coffee-dark);
    border-bottom-color: var(--coffee-dark);
}

/* Фин лек шаблон */
.fancy-section .coffee-divider {
    height: 1px;
    margin: 28px 0;
    background: linear-gradient(90deg, transparent, rgba(107, 66, 38, 0.18), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .fancy-section {
        margin: 55px 16px;
        padding: 30px 22px 26px;
        border-radius: 22px;
    }

    .fancy-section::after {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 16px;
    }

    .fancy-section > p {
        max-width: 100%;
        font-size: 1rem;
    }

    .fancy-section h3 {
        padding: 12px 14px 12px 46px;
        border-radius: 15px;
    }

    .fancy-section p {
        padding-left: 15px;
        font-size: 0.98rem;
        line-height: 1.8;
    }
}


.glass-coffee-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(122, 72, 44, 0.18), transparent 22%),
        radial-gradient(circle at 85% 18%, rgba(91, 54, 33, 0.18), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(176, 117, 75, 0.14), transparent 28%),
        linear-gradient(180deg, #f6f1eb 0%, #efe7df 45%, #f8f5f1 100%);
}

.glass-coffee-section::before,
.glass-coffee-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.45;
    pointer-events: none;
}

.glass-coffee-section::before {
    width: 380px;
    height: 380px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(107, 66, 38, 0.20) 0%, rgba(107, 66, 38, 0) 72%);
    animation: floatOrb 10s ease-in-out infinite;
}

.glass-coffee-section::after {
    width: 320px;
    height: 320px;
    bottom: -90px;
    right: -90px;
    background: radial-gradient(circle, rgba(176, 122, 82, 0.24) 0%, rgba(176, 122, 82, 0) 72%);
    animation: floatOrb 12s ease-in-out infinite reverse;
}

.glass-coffee-section .section-shell {
    position: relative;
    padding: 55px 42px 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.10));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 20px 60px rgba(60, 35, 20, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    overflow: hidden;
    isolation: isolate;
}

.glass-coffee-section .section-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.16), transparent 35%, rgba(255,255,255,0.10) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-coffee-section .section-shell::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    z-index: 0;
}

.glass-coffee-section .section-heading,
.glass-coffee-section .row {
    position: relative;
    z-index: 2;
}

.glass-coffee-section .section-heading {
    max-width: 900px;
    margin: 0 auto 42px;
}

.glass-coffee-section .section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #2d1a11;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.30);
}

.glass-coffee-section .section-heading p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #50392b;
}





.glass-coffee-section .box-one {
    position: relative;
    padding: 72px 28px 26px;
    margin-top: 10px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.34), rgba(255,255,255,0.18));
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow:
        0 14px 34px rgba(69, 42, 27, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    overflow: visible;
}

.glass-coffee-section .box-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(86, 49, 28, 0.96), rgba(135, 84, 53, 0.92));
    border: 3px solid rgba(255, 248, 242, 0.95);
    box-shadow:
        0 14px 28px rgba(61, 35, 20, 0.20),
        inset 0 1px 4px rgba(255,255,255,0.18);
    z-index: 5;
    animation: iconFloat 5s ease-in-out infinite;
}

.glass-coffee-section .box-icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px dashed rgba(122, 72, 44, 0.22);
    animation: spinSlow 16s linear infinite;
}

.glass-coffee-section .box-icon i {
    font-size: 1.75rem;
    color: #f8efe6;
    line-height: 1;
}

.glass-coffee-section .box-one h3 {
    position: relative;
    margin: 0 0 16px;
    text-align: center;
    font-size: 1.65rem;
    line-height: 1.2;
    color: #2f1d14;
    z-index: 2;
}

@media (max-width: 575.98px) {
    .glass-coffee-section .box-one {
        padding: 64px 20px 22px;
    }

    .glass-coffee-section .box-icon {
        width: 66px;
        height: 66px;
    }

    .glass-coffee-section .box-icon i {
        font-size: 1.5rem;
    }
}




.styled-list {
    --coffee-dark: #2f1d14;
    --coffee: #6b4226;
    --coffee-light: #b07a52;
    --cream: rgba(255, 250, 245, 0.62);

    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.styled-list li {
    position: relative;
    padding: 18px 20px 18px 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.16));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 10px 24px rgba(69, 42, 27, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #4d3a2e;
    font-size: 1rem;
    line-height: 1.8;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.styled-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #6b4226, #9b6a47);
    color: #fff8f2;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(107, 66, 38, 0.18);
}

.styled-list li::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(176, 122, 82, 0.14), transparent 30%),
        linear-gradient(90deg, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none;
}

.styled-list li:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 32px rgba(69, 42, 27, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.24);
}

@media (max-width: 575.98px) {
    .styled-list li {
        padding: 16px 16px 16px 52px;
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .styled-list li::before {
        left: 16px;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}