/* 
 Theme Name:   arilewp-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     arilewp
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/
  

p{
    color: rgb(43, 42, 40);
}

h2 {
    margin-top: 30px;
    position: relative;
    display: inline-block; /* за да можем линията да е точно под текста */

    background-color: rgba(255, 255, 255, 0.445); /* лек прозрачен фон */
    color: #035c4e; /* основен цвят за текста, можеш да смениш по желание */
    font-weight: bold;

    margin-bottom: 20px;
}


h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* малко под текста */
    width: 50%; /* дължина на линията, можеш да е 100% или по-малко */
    height: 4px; /* дебелина на линията */
    background: linear-gradient(90deg, #00C4A6, #007BFF, #01012F); /* градиент с трите цвята */
    border-radius: 2px; /* за заоблени краища */
}


h3 {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.623); /* лек прозрачен фон */
    color: #05213f; /* основен цвят за текста */
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 6px; /* за леко заоблен фон */
    transition: all 0.3s ease;
}

/* ефект при hover */
h3:hover {
    color: #00C4A6;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* декоративна линия под h3 */
h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40%; /* дължина на линията */
    height: 3px;
    background: linear-gradient(90deg, #00C4A6, #007BFF, #01012F);
    border-radius: 2px;
}



.theme-blog .post
 {
    background-color: #ffffff00;
    margin: 0 0 3.125rem;
    border-radius: 3px;
border: none!important;
    padding: 0px;
    transition: all 0.5s;
}


.post-content {
    padding: 0px;
}


body.custom-background {
    margin: 0;
    min-height: 100vh; /* минимум височина = височината на екрана */
    width: 100%;
    background-image: url('/img/c.jpg');
    background-size: cover;          /* покрива цял екран без изкривяване */
    background-position: center;     /* центрира изображението */
    background-repeat: no-repeat;    /* без повторение */
    background-attachment: fixed;    /* фонът остава фиксиран при скрол */
    position: relative;
}

/* лек бял слой върху снимката */
body.custom-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.877); /* лек бял филтър */
    pointer-events: none;
    z-index: 1;
}

/* съдържанието да е над слоя */
body.custom-background > * {
    position: relative;
    z-index: 2;
}






  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/img/tecnologia-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #f3f4f8!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-wallets p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}
.section-wallets h3 {
    background-color: #4b6074; 
   color: #f3f4f8!important; 
    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: #2c3e50; 
    color: #fff;
    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: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
@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;
    }
}



.section-two {
    position: relative;
    padding: 60px 20px;
    background-color: #01012F; /* основен фон */
    overflow: hidden;
}

/* тънка линия отгоре на секцията */
.section-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #007BFF;
    z-index: 2;
}

/* движещи се елементи на фона (не кръгчета) */
.section-two::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,123,255,0.05), rgba(255,255,255,0.05), rgba(0,123,255,0.05));
    animation: moveBackground 30s linear infinite;
    z-index: 1;
}

@keyframes moveBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33%); }
}

.section-two .box {
    background: rgba(0, 123, 255, 0.1); /* лек прозрачен синьо-лилав фон */
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    animation: boxEntrance 1s ease forwards;
    z-index: 3;
}
.section-two h2{
    color: #dde0e9!important; 
}

.section-two p{
    color: #dde0e9!important; 
}

.section-two .box h3 {
    color: #081238!important; 
    margin-bottom: 15px;
    position: relative;
}

.section-two .box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #00C4A6, #007BFF, #01012F);
    border-radius: 2px;
}


.section-two .box p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
    animation: fadeInText 1.5s ease forwards;
}





.custom-section {
  position: relative;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00C4A6 0%, #007BFF 50%, #01012F 100%);
  border-radius: 20px;
  color: #FFFFFF;
  box-shadow: 0 0 30px 10px rgba(1, 1, 47, 0.35);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* лек светлинен ефект при hover */
.custom-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px 15px rgba(0, 123, 255, 0.5);
}

/* лек декоративен слой за дълбочина */
.custom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}

/* стил за h2 */
.custom-section h2 {
  color: #FFFFFF;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
}

.custom-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00C4A6, #007BFF, #FFFFFF);
  border-radius: 2px;
}

/* стил за h3 */
.custom-section h3 {
  color: #A9EFFF;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.custom-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #00C4A6, #007BFF, #FFFFFF);
  border-radius: 2px;
}

/* параграфи */
.custom-section p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* адаптивност */
@media (max-width: 768px) {
  .custom-section {
    padding: 40px 25px;
  }
  .custom-section h2 {
    font-size: 1.6rem;
  }
}


p {
    margin-top: 0;
    margin-bottom: 0rem;
}