body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f1eb;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #5c3a21; /* sötét barna */
    padding: 10px 30px;
}



/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 30px;
}

.logo img {
    height: 80px;
    width: auto;
}

/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #f3e9dc; /* világos bézs */
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #d2b48c; /* világos barna */
}

/* HEADER */


.szalagcim {
    text-align: left;
    width: 100%;
    height: auto;
}

/* SECTION */
section {
    background: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    border-left: 5px solid #8b5e3c;
}

/* index */

.rolunk-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap; /* mobilon egymás alá kerül */
}

.szoveg {
    flex: 2;
}

.kep {
    flex: 1;
    text-align: center;
}

.kep img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mókus Tábor */

.tabor-media video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select, button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* BUTTON */
button {
    background: #8b5e3c;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #5c3a21;
}

/* Helyszín */

.szekcio {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .szekcio h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #5c3a21;
  }
  
  .helyszin-sor {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .helyszin-box {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .helyszin-box p {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .helyszin-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .map-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .map-container.open {
    max-height: 400px; /* akkora, mint a térkép magassága + egy kis ráhagyás */
    margin-top: 10px;
  }

  .toggle-map {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .toggle-map:hover {
    transform: scale(1.03);        /* Kicsit nagyít */
    filter: brightness(85%);       /* Kicsit sötétebb */
  }

  .helyszin-leiras {
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.6;
    color: #333;
}
  
/* --- Jelentkezés ---*/

.feltetel-link {
    color: #5c3a21;
    font-weight: bold;
}

.feltetel-link:hover {
    color: #8b5e3c;
}

  /* --- Feltételek ---*/

  .feltetelek {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.feltetelek h1 {
    color: #5c3a21;
}

.feltetelek h2 {
    margin-top: 25px;
    color: #5c3a21;
}

.utalas {
    background: #f3e9dc;
    padding: 15px;
    border-left: 5px solid #5c3a21;
    border-radius: 8px;
    margin: 20px 0;
}



  /* --- FOOTER --- */
footer {
  background: #5c3a21;
  color: #f5f5f5;
  margin-top: 60px;
  font-size: 15px;
}

/* --- Szimmetrikus elrendezés --- */
.footer-grid {
  display: flex;
  justify-content: center;      /* középre igazítás vízszintesen */
  align-items: flex-start;      /* a két oszlop teteje egyvonalban */
  gap: 250px;                   /* távolság a két oszlop között */
  padding: 20px 50px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;              /* hogy mobilon alá essen */
  padding-left:85px;
}

.footer-col {
  max-width: 500px;
}


/* Címek és szövegek */
.footer-col h3 {
  color: var(--accent);
  font-weight: 700;
  text-align: left;
}

.footer-col p {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
  margin-top: 14px;
}

/* Elérhetőségek listája */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.footer-col ul li i {
  color: var(--accent);
}

.fa-facebook {
    color: #ffffff;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #d2b48c;
}

.logos {
  width: 40px;
  height: 40px;
  background: #5c3a21;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.logos {
  width: 120px;   /* logó méret */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}


.logos img {
  width: 100%;
  height: auto;
  object-fit: contain; /* megtartja az arányokat */
}

/* --- Alsó sáv --- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 0;
  color: #ffffff;
  font-size: 14px;
}

