
/* Háttér */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: url("background/hazbackground.png") no-repeat fixed;
  background-size: cover;
  background-position: 100% 01%; /* extra hely az alján */
  color: #000;
}

/* Bal oldali sáv */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: rgba(0,0,0,0.9);/* átlátszóság */
  color: #fff;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 40px; /* extra hely az alján */

}

.sidebar-inner {
  position: relative;
  top: 30px;
}

.logo {
  font-size: 20px;
  margin: 0 0 10px;
  color: #b80e09;
}

.desc {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* === DESKTOP MENÜ === */
.menu {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.menu a {
  color: #b80e09;
  text-decoration: none;
  margin: 6px 0;
  font-weight: 500;
  position: relative;
  display: flex;          /* ikon + szöveg egy sorban */
  align-items: center;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* nyíl ikon */
.menu a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("background/arrow.png") no-repeat center center;
  background-size: contain;
}

/* háttér animáció */
.menu a::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(184,14,9,0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.menu a:hover::after {
  left: 0;
}

.menu a:hover {
  color: #fff;
}

/* Képek */
.image-box {
  margin: 20px 0;
}
.image-box img {
  width: 100%;
  border-radius: 8px;
}

.extra-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 10px 0;
}

/* Tartalom */
.content {
  margin-left: 350px;
  padding: 150px 20px 30px; /* felül nagyobb tér, balra */
  max-width: 600px;
}
.content article {
  background: rgba(255,255,255,0.9);
  color: #000;
  border-radius: 16px;
  padding: 20px;
  margin: 0 auto 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

@media(min-width: 800px) {
  .content {
    padding-top: 200px;
  }
}

/* === MOBIL MENÜ === */
.mobile-header {
  display: none;
}

@media(max-width: 800px) {
  .sidebar {
    display: none;
  }
  .content {
    margin-left: 0;
    padding: 80px 20px 20px;
  }
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.9);/* mobil menü átlátszóság */
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .mobile-header .brand {
    font-weight: bold;
    color: #b80e09;
  }
  .mobile-header nav a {
    color: #fff;
    margin-left: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .mobile-header nav a:hover {
    color: #b80e09; /* egyszerű színváltás */
  }
.brand a {
  color: #b80e09;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand a:hover {
  color: #fff; /* hoverre fehérre vált */
  text-decoration: none; /* aláhúzás kikapcsolva */
}
hr {
  border: none;           /* alapértelmezett keret eltüntetése */
  height: 1px;             /* vonal vastagsága */
  background-color: #333;  /* sötétszürke szín */
  margin: 0px 0;          /* tetszőleges tér a vonal körül */
}
    
  