body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #333;
  }

  .container {
    max-width: 990px;
    margin: 0 auto;
  }

  .full-width-bg {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
    box-sizing: border-box;
  }

  .dark-bg {
    background-color: #6B5E4E;
    color: #fff;
  }

  .light-bg {
    background-color: #f2f2f2;
    color: #111;
  }

  .magazin-section {
    background-color: #262626;
    color: #eee;
  }
	h2.section-subtitle {
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
   font-size: 22px;
   margin-bottom: 20px;
}
  .section-title {
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
	font-size: 40px;
    margin-bottom: 50px;
	margin-top:10px;
  }

  /* SLIDER */
  .slider-wrap {
    position: relative;
    overflow: hidden;
    max-width: 990px;
    margin: 0 auto;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }

  .slide {
    min-width: calc(50% - 10px);
    position: relative;
    cursor: pointer;
  overflow: hidden; 
  
  }
  .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* black overlay – adjust opacity here */
  z-index: 1;
  transition: background 0.3s ease;
}

.slide:hover::before {
  background: rgba(0, 0, 0, 0.2); /* darker on hover (optional) */
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.slide:hover img {
  transform: scale(1.1);
}

.slide .overlay {
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 2; /* make sure text stays above overlay */
}
  .slide img {
    width: 100%;
    display: block;
    height: 296px;
	 transition: transform 0.6s ease;
}

.slide:hover img {
  transform: scale(1.1); /* halka zoom */
}



  .slide .overlay {
    position: absolute;
    bottom: 25px;
    color: #efefef!important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	left: 0px;
}

  .slide .title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

  .slide button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    height: 45px;
    padding: 0 15px;
}

  .slide button:hover {
    opacity: 0.7;
}


  /* ARROWS */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 33px;
    user-select: none;
    z-index: 2;
}

  .slider-arrow.left {
    left: 10px;
  }

  .slider-arrow.right {
    right: 10px;
  }

  .section.light-bg .slider-arrow {
    background: rgba(170, 170, 170, 0.9);
    color: #111;
  }

  /* BUTTONS */
  .btn-container {
    text-align: center;
    margin-top: 25px;
  }

  .btn-container button {
    background-color: transparent;
    border: 1px solid #efefef;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.9px;
    transition: 0.3s;
    width: 374px;
    height: 38px;
	margin-top: 25px;
}

  .btn-container button:hover {
    background-color: #262626;
    color: #efefef;
  }

  .section.light-bg .btn-container button {
    color: #111;
    border-color: #111;
  }

  .section.light-bg .btn-container button:hover {
    background: #111;
    color: #fff;
  }
  
  /* second slider section*/
  section.full-width-bg.light-bg {
    padding-top: 10px;
}
  section.full-width-bg.light-bg h2 {
    color: rgb(88, 88, 88);
}
	.btn-container.light-bg button {
    border: 1px solid #585858 !important;
    color: #585858 !important;
	opacity: 0.7;
}
.btn-container.light-bg button:hover {
    color: #efefef !important;
}
  

  /* MAGAZIN */
  .magazin-section h2 {
    font-weight: 400;
    text-align: center;
    font-size: 56px;
    margin-bottom: 10px !important;
    margin-top: 15px;
	color: #efefef;
}

  .magazin-section p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 65px;
    color: #efefef;
	margin-top: 20px;
  }

  .magazin-right {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 990px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .articles {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .article-card {
    overflow: hidden;
    width: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    border: 1px solid rgb(88 88 88 / 75%);
}

  .article-card:hover {
    transform: translateY(-5px);
  }

  .article-card img {
    width: 100%;
    height: 234px;
    object-fit: cover;
}

  .article-content {
    padding: 28px 24px 25px;
    flex-grow: 1;
}

  .article-meta {
    font-size: 12px;
    margin-bottom: 15px;
    color: #efefef;
}

  .article-title {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.4;
    color: #efefef;
}

	.article-content:hover .article-title , .article-content:hover .article-desc  {
    color: rgb(154,138,120);
}


  .article-desc {
    font-size: 16px;
    line-height: 1.4;
}

  .magazin-buttons {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

  .magazin-buttons button {
    background: none;
    border: 1px solid #efefef;
    color: #efefef;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    width: 231px;
    height: 53px;
}

  .magazin-buttons button.active {
    color: #262626;
    background: #efefef;
}

  .magazin-buttons button:hover {
   color: #262626;
    background: #efefef;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .container {
      max-width: 100%;
      padding: 0 15px;
    }
    .slide {
      min-width: 100%;
    }
    .magazin-right {
      flex-direction: column;
      align-items: center;
    }
    .magazin-buttons {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }
	.btn-container button
 {
        width: auto;
		padding:0px 15px;
    }
	   section.full-width-bg.light-bg .btn-container button
 {
        width: auto;
        padding: 0px 20px;
        line-height: 1.3;
        height: 65px;
    }
	.magazin-section p {
    font-size: 24px;
    line-height: 1.3;
	margin-bottom: 20px;
}
.article-card {
    width: auto;
}
.section-title {
    font-size: 32px;
}
.magazin-buttons button {
    width: 100%;
	}
.magazin-right {
        flex-direction: column-reverse;
    }
  }