/* Alap háttér és betűk */
body {
    background-image: url(round-icons-1A1cQqgYoP4-unsplash.svg);
    background-repeat: repeat;
    background-size: 100px 100px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Logó */
.logo {
  margin-top: 10px;
  height: 75px;
}

/* Fő tartalom */
/* --- Kártyák javított méretezése --- */

.valasztas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 20px 10px;
}

.csoport {
    width: 140px;
    height: 140px;
    border-radius: 25px;
    cursor: pointer;
    border: 5px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.csoport:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --- SZÍNEK ID ALAPJÁN --- */
#csoport-golyahet {
    background-color: #E6D1D5;
    border-color: #841b2d;
}

#csoport-halloween {
    background-color: #ECE2F6;
    border-color: #32174d;
}

#csoport-karacsony {
    background-color: #F8EBC8;
    border-color: #E1AD21;
}

#csoport-nemzetek {
    background-color: #f5bebe;
    border-color: #2E0404;
}

#csoport-valentin {
    background-color: #FACEE9;
    border-color: #C71585;
}

#csoport-2016{
    background-color: #F8EAFC;
    border-color: #D891EF;
}

/* Képek és leírás */
.kep {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.leiras {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/* Linkek */
a {
    color: black;
    text-decoration: none;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.5);
  color: #000;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner a {
  color: #D6D6D6;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #D6D6D6;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  font-weight: bold;
}

/* Cikkek */
.cikk {
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
    border-radius: 15px;
    padding: 50px 30px;
    margin: 10px;
}

.cikk_szöveg h2 {
  margin: 0 0 25px 0;
  text-align: left;
  width: 100%;
}

.cikk_szöveg p {
  margin-right: 100px;
}

#cikk1 {
  background-image: url(dokfotok_cikk.png);
  color: #000;
  background-color: #fff;
}

#cikk2{
  color: #fff;
  background-color: #D891EF;
  background-image: url(kollazs_cikk.png);
}

#alcikk{
  color: #fff;
  background-color: #000;
  background-image: url(alcikk.png);
  padding: 25px;
}

/* Animáció */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Formák */
form {
  background: #fff;
  padding: 30px 30px 0 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.6s ease-out;
}

h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

label {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

input,
select {
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus {
  border-color: #4a8cff;
  box-shadow: 0 0 0 3px rgba(74, 140, 255, 0.25);
  outline: none;
}

button {
  padding: 8px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #fff;
  color: #000;
}

#message {
  text-align: center;
  font-size: 15px;
  min-height: 24px;
}

/* Menü ikon */
.icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  padding-top: 10px;
  right: 20px;
  transition: transform 0.2s;
  margin-top: 12px;
}

.icon:hover {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  display: none;
}

.overlay.active {
  display: block;
}

/* Középre igazított panelek */
.center-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100%;
  max-width: 300px;
  display: none;
}

.center-panel.active {
  display: block;
}

/* Fiókközpont */
.account-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 300px;
  min-height: 300px;
  padding: 30px;
  background: white;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}

.account-panel.active {
  display: block;
}

/* Oldalsó menü */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.sidebar-content {
    padding: 16px;
}

.sidebar-open #sidebar {
    transform: translateX(0);
}

.sidebar-open #overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
    background: rgba(0,0,0,0.4);
}

/* Menü gombok */
.menu-login-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-login-btn:hover {
  background: #333;
}

/*----------------------------------------------------------------------------------------------------------------------------
.uzenet {
    background-color: #ffc300;
    align-content: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    gap: 10px;
}

.leall {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.warning-bar {
  background: repeating-linear-gradient(
    70deg,
    #ffc300,
    #ffc300 10px,
    #000000 10px,
    #000000 20px
  );
  color: white;
  padding: 0.05px;
  text-align: center;
  font-weight: bold;
  max-height: 12px;
}
*/
