* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
}



.header {
  width: 100%;
  position: fixed !important;
  top: 0;
  margin-bottom: 30px;
  z-index: 1000;
  height: 60px; /* asigură-te că are o înălțime fixă */
  background-color: white;
}

.wrapper-main {
  padding-top: 210px; /* 60px pentru header + 20px spațiu vizual */
  background-color: white;
  
}


 
.header {
  width: 100%;
  position: fixed !important;
  top: 0;
  margin-bottom: 30px;
  z-index: 1000;
}

.header__content {
  background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__content img {
  max-width: 350px;
  margin-top: 10px;
  margin-bottom: 20px;
}


.nav__list {
  display: flex;
  gap: 4rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.nav__link:hover {
  color: #c7bfbf;
}



.wrapper-main {
  display: flex;
  justify-content: center;

  max-width: 1800px;
  margin-inline: auto;
  background-color: white;
}

.ad-left,
.ad-right {
  width: 300px;
  background: #eaeaea;
  height: 100%;
}

.container {
  max-width: 1200px;
  flex: 1;
  padding: 20px;
  background: #fff;
  flex-direction: column;
}


.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1001;

  
  padding: 30px 30px 40px 30px; 
  box-sizing: content-box; 
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

 
.hamburger--open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger--open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


@media (max-width: 992px) {
  .ad-left,
  .ad-right {
    display: none;
  }
 




}


@media (max-width: 1100px) {
 
 
.search-div{
    
    left: 30px;
    top:50px;
}




}
@media (max-width: 710px) {

.search-div{
    
  left: 20px !important;
    top: 30px;
   
    
}

.wrapper-main {
  padding-top: 150px; 
}

  .view-p{
  text-align: left;
  margin: 10px auto 10px 195px;
}

.telegram{
  position: absolute;
  top: 12px;
 
}
.article-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display:block;
}

.header__content img{
  width: 230px;
   margin-bottom: -25px;
}

  .nav__list {
    display: none;
  }

.header__content{
  height: 10vh;
}

  .hamburger {
    display: flex;
   padding: 25px 10px 10px 0;
  
  }

  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease;
  }

  .nav--open {
    left: 0;
  }

   
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav__link {
    color: white;
    font-size: 1.5rem;
  }
}







 

.container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 45%));

  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.wrapper {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
  width: 100%;
}

.wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display:block;
}

.title-article {
  font-size: 18px;
  padding: 10px;
  color: #222;
  line-height: 1.4;
  flex-grow: 1;
}


@media (max-width: 1400px) {
  .main-wrapper {
    grid-template-columns: 1fr 1fr;

  }



}


.category-title{
  text-align: center;
  font-size: 20px;
  margin-bottom: 55px;
  margin-top: 25px;
}







.back-link{

  margin: 100px 0 50px 30px;
  display: inline-block;
  font-size: 30px;
  color: #22cb4f;
}

.wrpper-view{
  text-align: center;
}

.h1-view{
  margin: 20px 5% 40px 5%;
}






.view-img {
  display: block;
  width: 100%;             
  max-width: 100%;
  height: auto;
  margin: 0 auto 90px;
  box-sizing: border-box;
  object-fit: cover;        
}
.container {
  overflow: hidden; 

}

.view-p{
  text-align: left;
  margin: 10px auto 10px 90px;
}

.view-p-content {
  letter-spacing: 0.5px;  
  line-height: 1.6;       
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}










.view-p-content {
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-size: 1.1rem;
}

 
@media (max-width: 1024px) {
  .view-p-content {
    text-align: center;
  }
 

}




.view-p{
  text-align: left;
  margin: 10px auto 10px 90px;
}

@media (max-width: 1600px) {
  .view-p{
  text-align: left;
  margin: 10px auto 10px 75px;
}
}


@media (max-width: 1400px) {
  .view-p{
  text-align: left;
  margin: 10px auto 10px 55px;
}
}

.container {
    max-width: 1200px;
    flex: 1;
    padding: 20px;
    background: #fff;
    min-height: 80vh;
}








.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 60px 0;
    width: 100%;
    margin-top: auto; 
}



.link-item{
  text-decoration: none;
 
  
}




 
body {
  top: 0 !important;
}


.goog-te-banner-frame.skiptranslate {
  display: none !important;
}


 
.skiptranslate {
  background: none !important;
  border: none !important;
}

 
html, body {
  overflow-x: hidden !important;
}




.img-journalism{
  width: 100%;
  margin-top: 50px;
  
}
.journalism-wrapper{
  text-align: center;
}
.journalism-h1{
  margin: 50px 0 70px;
}
.journalism-p{
  letter-spacing: 1px;
  text-align: center;
  word-spacing: 3px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 80px;
  user-select: none;
  
}






.patreon-logo{
  width: 25px;
 position: absolute;
  top: 5px;
  left: 3px;
}
.link-patreon{
  padding: 10px;
  border-radius: 5px;
 background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
  text-decoration: none;
  color: #fff;
  position: relative;
  padding-left: 35px;
 transition: 0.5s;
   margin-bottom: 15px;
}

.link-patreon:hover{
filter: brightness(0.85);
}




.paypal-logo{
  width: 25px;
  position: absolute;
 left: 7px;

}

.link-paypal{
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  background:linear-gradient(90deg, #0700b8 0%, #00ff88 100%);
   padding-left: 40px;
  transition: 0.5s;
  margin-bottom: 15px;
}
.link-paypal:hover{
  filter: brightness(0.85); 
}

.telegram{
  width: 25px;
  position: absolute;
  left:  7px;
  bottom: 8px;
  margin-right: 10px;
}
#donateBtn{
  position: relative;
  padding-left: 40px!important;
  display: block;
}
.link-telegram{
  text-decoration: none;
  color: #fff;
  background:linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
  padding: 10px;
  border-radius: 5px;
  padding-left: 40px;
  position: relative;
 
  margin-bottom: 45px;
}

.footer{
  display: flex;
flex-direction: column;
  justify-content: center;
  align-items: center;
margin-bottom:  60px;
}

.footer-1 a, .footer-2 a{
display: block;
}
 



.aboutus{
  text-decoration: none;
  color: #000;
  font-size: 25px;
  margin-bottom: 40px;
}


.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin: 20px 0  40px;

}
















.footer-1 {
  display: flex;
  flex-wrap: wrap;      
  justify-content: center; 
  gap: 20px;            
  padding: 15px 15px;
  background-color: #f8f9fa;  
  font-size: 14px;
  border-radius: 5px;
  margin:50px 0 70px ;

}

.footer-1 a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  margin: 20px;
}

.footer-1 a:hover {
  color: #005bb5;
  transform: translateY(-2px); 
}


@media (max-width: 480px) {
  .footer-1 {
    justify-content: center;
    gap: 15px;
  }
  

}



 
.privaci-wrapper{
  text-align: center;
}

.h1-privacy{
  margin: 80px 0 50px;
}

.privacy-p{
  letter-spacing: 1px;
  text-align: center;
  word-spacing: 3px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 80px;
  user-select: none;
  
}





.h1-terms {
   margin: 80px 0 50px;
}
.p-terms {
 letter-spacing: 1px;
  text-align: center;
  word-spacing: 3px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 80px;
  user-select: none;

}

.terms-wrapper{
  text-align: center;
}


 


.footer-bg{
  background-color: #3f3b3b5e;
  padding-top: 30px;
  padding-bottom: 10px;
}































.search-box {
  position: relative;
  display: inline-block;
}

.search-input {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 0 15px 0 40px;
  transition: width 0.4s ease;
  background: #fff url('icons/search.svg') no-repeat 10px center;
  background-size: 18px;
  cursor: pointer;
  outline: none;
}

.search-input:focus {
  width: 220px;
  cursor: text;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 0 15px 0 35px;
  background: #fff;
  transition: width 0.4s ease;
  cursor: pointer;
  outline: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
  
}

.search-div{
    position: absolute;
    left: 70px;
    bottom:60px;
}










