 body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    margin: 0; 
    padding: 0; 
    color: #333; 
    background: #f4f4f4; 
}
header, section, footer { 
    padding: 2em; 
}
header { 
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('index_background_tmp.jpg') no-repeat center top/cover;
    color: white; 
    text-align: center; 
    padding: 80px 20px;
    margin-top: 10px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.title{
    text-align: center;
}
.title p{
    margin: 0;
    padding: 0;
}
.title h2{
    margin: 0;
    padding: 0;
}

.highlight { 
    color: #0078d4; 
    font-weight: bold; 
}
.block { 
    background: white; 
    margin: 2em auto; 
    max-width: 900px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
    border-radius: 10px; 
    padding: 2em; 
}
footer { 
    text-align: center; 
    font-size: 0.9em; 
    background: #eee; 
}

.donate-btn { 
    display: inline-block; 
    padding: 0.8em 1.5em; 
    background: #0078d4; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    margin-top: 1em; 
}
.donate-btn:hover { 
    background: #005fa3; 
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-icons a {
    font-size: 26px;
    transition: transform 0.3s;
}
.social-icons a:hover {
    transform: scale(1.2);
}
.fa-instagram { color: #E1306C; }
.fa-facebook { color: #1877F2; }
.fa-youtube { color: #FF0000; }
.fa-tiktok { color: #000000; }
.fa-telegram { color: #0088cc; }

.contact-form {
    margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background-color: #00B388;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #009e75;
}

nav {
    background: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 20px;
    z-index: 1000;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #FFD700;
}

#offers, #developments, #contact{
    display: none;
}

.img-text-block{
    display: flex;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
    gap: 1rem;
}

.image-text-img{
    flex: 0 1 55%;
    min-width: 120px;
    max-width: 55%;
}
.image-text-img img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}
.image-text-content{
    flex: 1;
}

#contact-blank{
    scroll-margin-top: 80px;
}

.links-partner-blok {
  display: flex;
  gap: 20px;          
}

.link-partner {
  display: flex;          
  align-items: center;    
  text-decoration: none;  
  color: #333;           
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.link-partner:hover {
  color: #0077ff;       
}

.icon-partner {
  width: 50px;
  height: 50px;
  margin-right: 8px;       
}
.icon-bern-hiv{
  width: 280px;
  height: 50px;
  margin-right: 8px; 
}
.icon-Kalina-Rouge{
  width: 70px;
  height: 70px;
  object-fit: cover; 
  margin-right: 8px; 
}
.flex-blok{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
}
.flex-blok-item{
    min-width: 80px;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 10px 14px;
    border: solid 1px rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    transition: background 0.3s ease, opacity 0.3s ease;
    display: none;
}      
.menu-toggle:hover {
    background: rgba(0,0,0,0.7);
}
.menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -260px; 
    width: 180px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255,255,255,0.3);
    box-shadow: 4px 0 20px rgba(0,0,0,0.25);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
}
.sidebar.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-item {
    color:#000000;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transform: translateY(15px);
    transition: background 0.3s ease;
}
.menu-item:hover {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 700px) {
  .img-text-block{
    flex-direction: column;
    align-items: flex-start;
  }

  .image-text-img,
  .image-text-content {
    max-width: 100%;
    width: 100%;
  }

  .links-partner-blok {
    flex-direction: column;
    gap: 15px;
  }
  .link-partner {
    justify-content: flex-start; 
  }
  
  .menu-toggle{
    display: block;
  }

  nav {
    display: none;
  }
}



