:root {
  --primary-color: #1f1e33; /* új sötét ibolyás szín */
  --bg-color: #f4f4f4;
  --text-color: #2c2c2c;
  --header-bg: #ffffffcc;
  --card-bg: #ffffff;
  --accent-bg: #eaeaea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}

header {
  background: var(--header-bg);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
}

header h1 {
  font-size: 2rem;
  color: var(--primary-color);
}

header h2 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: var(--text-color);
}

nav {
  background: #fff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
  transition: color 0.2s;
}

nav a:hover {
  color: #444;
  text-decoration: underline;
}

nav a.active {
  color: #1f1e33;
  border-bottom: 2px solid #1f1e33;
  padding-bottom: 2px;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.intro img {
  width: 100%;
  border-radius: 6px;
  margin: 1rem 0;
}





/* Oldal bemutatkozó rész */
blockquote {
  padding: 1.5rem 2rem;
  background: #f6f6fa;
  border-left: 6px solid #1f1e33;
  margin: 2rem 0;
  font-style: normal;
  border-radius: 6px;
}

blockquote p {
  margin-bottom: 1rem;
}

blockquote strong {
  display: inline-block;
  margin-bottom: 0.5rem;
}

blockquote ul {
  margin: 1rem 0;
  padding-left: 0.5rem;
}

blockquote ul li {
  margin-bottom: 0.5rem;
}




/* Lábléc */

.site-footer {
  background: #fff;
  border-top: 2px solid #1f1e33;
  padding: 2rem 1rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #2c2c2c;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  margin-bottom: 0.5rem;
  color: #1f1e33;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col ul li a,
.footer-col a {
  color: #1f1e33;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}



.logo-large {
  max-width: 140px; /* vagy bármilyen kívánt méret, pl. 400px */
  width: 100%;
  height: auto;
}


/* ref */

  #lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 5%;
  }

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  border: 5px solid white;
  box-shadow: 0 0 10px black;
}

.gallery-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}