/* ===== CSS változók ===== */
:root {
  --header-bg: rgb(229, 222, 203);
  --footer-bg: rgba(0, 0, 0, 0.3);
  --text-color: #fff;
  --title-font: 'Arial Black', sans-serif;
  --body-font: 'Arial', sans-serif;
}

/* ===== Alapbeállítások ===== */
body {
  margin: 0;
  font-family: var(--body-font);
  overflow-x: hidden; /* tilos vízszintes görgetés */
}

/* ===== Fejléc ===== */
.header-bar {
  background: var(--header-bg);
  padding: 10px;
}

.logo {
  max-height: 70px;
}

.studio-title {
  font-family: var(--title-font);
  font-size: 1.2rem;
  margin: 0;
}

.studio-subtitle {
  font-size: 0.8rem;
  margin: 0;
}

.csatlakozz {
  max-height: 70px;
  transition: all 0.3s ease;
}

.csatlakozz:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* ===== Galéria ===== */
.carousel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Szövegdobozok ===== */
.text-box-section {
  background: url("pics/insta_background.svg") no-repeat center center/cover;
  color: var(--text-color);
  padding: 30px 10px;
}

.text-box {
  /* background: transparent; */
  background: rgba(0, 0, 0, 0.2); /* fekete, 50% átlátszóság */
  border-radius: 10px;
  padding: 15px;
}

/* ===== Lábléc ===== */
.footer-bar {
  background: var(--footer-bg);
  color: var(--text-color);
  padding: 20px;
  font-size: 0.9rem;
}

.kapcsolat-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.social-icon {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
