

:root {
  --body-bg-color: #ffffff;
  --body-text-color: #000000;
  --heading-color: #000000;
  --hero-gradient1: #43a047;
  --hero-gradient2: #66bb6a;
  --footer-bg-color: #0d2612;
  --link-color: #2e7d32;
  --header-bg-color: #ffffff;
  --font-family: 'Roboto', Arial, sans-serif;
  --nav-link-color: #1b5e20;
  --footer-text-color: #a5d6a7;
  --header-text-color: #ffffff;

}

body {
  background-color: var(--body-bg-color) !important;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}








h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    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;
}


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;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

  
  .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;
}


 .navbar {
  background-color: var(--header-bg-color) !important;
  
}

.hero-section {
  padding: 90px 0 40px 0;
  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.with-bg {
    background-color: #f5f0e6; /* мек бежов фон */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.993));
  opacity: 0.5;
  z-index: 1;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
  

.hero-section.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 240, 230, 0.5); 
    z-index: 1;
}

.hero-section.with-bg h1 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: #5a4b3b; 
    display: inline-block;
    padding: 25px 45px;
    background: rgba(255, 248, 230, 0.8); 
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(90, 75, 59, 0.5), 0 0 15px rgba(255, 248, 230, 0.4);
    text-shadow: 1px 1px 5px rgba(90, 75, 59, 0.6);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section.with-bg {
        padding: 60px 15px;
    }
    .hero-section.with-bg h1 {
        font-size: 2rem;
        padding: 15px 25px;
    }
}@media (max-width: 768px) {
  .hero-section {
    padding: 60px 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;
  }
}

@media screen and (min-width: 1199.98px) {
.dropdown-menu {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.navbar .dropdown-toggle::after {
  transition: transform .3s ease
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg)
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
  border-radius: 12px;
  padding: .5rem 0;
  margin-top: .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: .75rem 1.5rem;
  transition: all .3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(in srgb, var(--header-bg-color) 95%, transparent) !important;
}

.custom-dropdown .dropdown-item i {
  width: 16px;
  color: #6c757d;
  transition: color .3s ease
}

.custom-dropdown .dropdown-item:hover i {
  color: #fff
}

.dropdown-menu {
  opacity: 0;
  transition: all .3s ease;
  display: block;
  visibility: hidden
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

@media (min-width:1199.98px) {
  .custom-dropdown {
    max-width: 200px
  }
}

@media (max-width:1199.98px) {
  .custom-dropdown {
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #dee2e6
  }

  .custom-dropdown .dropdown-item:hover {
    margin: 0;
    border-radius: 0;
    transform: none
  }
}

.dropdown-menu:hover,
.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #91919131 !important;
}
            




.section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.411), rgba(0, 0, 0, 0.5)), url('/images/ban-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(72,239,128,0.3); 
}
.section-wallets h2 {
    color: #cee0d4!important;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #d2e7d9; 
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #eaf0ec; 
    line-height: 1.6;
    margin-bottom: 30px;
}
.section-wallets h3 {
    background-color: rgba(72,239,128,0.2); 
    color: #48EF80; 
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: rgba(72,239,128,0.35); 
    color: #ffffff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a4e88c; /* мека зелена за текст */
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #48EF80; /* зелен за чек */
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ccffdd; /* светъл зелен при hover */
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}











.styled-titles h2 {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: #5a4b3b; /* тъмен бежов за текста */
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #fdf8f2, #f5f0e6, #e9e0d5); /* различни меки бежови нюанси */
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(90,75,59,0.4), 0 0 15px rgba(245,240,230,0.5);
    text-shadow: 1px 1px 8px rgba(90,75,59,0.6), 0 0 5px rgba(245,240,230,0.3);
    position: relative;
    z-index: 1;
    animation: h2Glow 3s ease-in-out infinite alternate, h2Move 2s ease forwards;
}

/* Меко мерцане на сенките и отблясъците */
@keyframes h2Glow {
    0% {
        box-shadow: 0 0 20px rgba(90,75,59,0.4), 0 0 15px rgba(245,240,230,0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(90,75,59,0.6), 0 0 25px rgba(245,240,230,0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(90,75,59,0.4), 0 0 15px rgba(245,240,230,0.3);
    }
}

.custom-section {
  --bg-dark: #fff7f0; /* мек бежов фон */
  --bg-tint: rgba(245, 230, 210, 0.05);
  --soft-beige: rgba(245, 230, 210, 0.15);
  --accent: rgba(255,255,255,0.3);
  --text: #333333;

  position: relative;
  padding: 70px 30px;
  border-radius: 28px;
  color: var(--text);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  background:
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-tint) 100%);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.custom-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 230, 210,.25);
}

/* ---------- Background effects ---------- */
.custom-section::before {
  content:"";
  position: absolute;
  top:-60%; left:-20%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 90deg, transparent 0 25%, var(--soft-beige) 30% 60%, transparent 70% 100%);
  animation: rotateWaves 28s linear infinite;
  pointer-events: none;
  z-index:0;
}

.custom-section::after {
  content:"";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: radial-gradient(circle at top left, rgba(245,230,210,.05), transparent 70%);
  pointer-events: none;
  z-index:0;
}

/* ---------- H2 ---------- */
.custom-section h2 {
  margin: 0 0 22px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #fff8f0 0%, rgba(245,230,210,0.5) 50%, #fff8f0 100%);
  -webkit-background-clip: text!important;;
          background-clip: text!important;;
  color: rgb(77, 58, 58)!important;
  text-shadow: 0 3px 12px rgba(245,230,210,.25)!important;;
}

.custom-section h2::after {
  content:"";
  display:block;
  height: 8px;
  width: 150px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(245,230,210,0.5), #fff8f0, rgba(245,230,210,0.5))!important;;
  animation: glowBar 3.6s ease-in-out infinite!important;;
  box-shadow: 0 0 20px rgba(245,230,210,.3)!important;;
}

/* ---------- H3 ---------- */
.custom-section h3 {
  margin: 34px 0 14px;
  font-weight: 700;
  color: rgba(245,230,210,0.7);
  letter-spacing: .5px;
  position: relative;
  padding-left: 26px;
  z-index: 1;
  transition: color 0.4s ease;
}

.custom-section h3:hover {
  color: rgba(245,230,210,1);
}

.custom-section h3::before {
  content:"";
  position: absolute;
  left:0; top:50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(245,230,210,0.7);
  box-shadow:
    0 0 8px rgba(245,230,210,.5),
    0 0 16px rgba(245,230,210,.3);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.custom-section h3::after {
  content:"";
  position: absolute;
  left:14px; top:50%;
  transform: translateY(-50%);
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, rgba(245,230,210,0.5), transparent);
  border-radius: 3px;
  animation: shimmerLine 5s linear infinite;
}

/* ---------- Content Box ---------- */
.custom-section .content {
  background: rgba(245,230,210,.05);
  border: 1px solid rgba(245,230,210,.15);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: inset 0 0 20px rgba(245,230,210,.05);
  z-index: 1;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.custom-section .content:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 28px rgba(245,230,210,.1), 0 4px 24px rgba(245,230,210,.15);
}

/* ---------- Paragraph Decoration ---------- */
.custom-section p {
  position: relative;
  padding-left: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.custom-section p::before {
  content:"";
  position: absolute;
  left:0; top:50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245,230,210,0.6);
  box-shadow: 0 0 6px rgba(245,230,210,.3);
}

/* ===========================
   Animations
   =========================== */
@keyframes rotateWaves {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes glowBar {
  0%,100% { box-shadow: 0 0 20px rgba(245,230,210,.3); }
  50% { box-shadow: 0 0 35px rgba(245,230,210,.5); }
}
@keyframes pulseDot {
  0%,100% { transform: translateY(-50%) scale(1); opacity:1; }
  50% { transform: translateY(-50%) scale(1.3); opacity:.75; }
}
@keyframes shimmerLine {
  0% { width: 0; opacity:0; }
  20% { width: 60px; opacity:1; }
  100% { width: 0; opacity:0; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  .custom-section::before,
  .custom-section::after,
  .custom-section h2::after,
  .custom-section h3::before,
  .custom-section h3::after {
    animation: none !important;
  }
}
