/* ===== RESET CSS ===== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126 | Public Domain
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===== ALAP STÍLUSOK ===== */
@charset "utf-8";

/* Háttér és alap beállítás */
html {
  background-image: url(../tartalom/img/parlament_ejjel.jpg);
  background-size: cover;          /* kitölti a képernyőt arányosan */
  background-repeat: no-repeat;
  background-attachment: fixed;    /* nem mozog görgetésnél */
  background-position: center;
  font-size: 18px;
}

/* Alap betűcsalád, színek, középre igazítás */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;     /* vízszintesen középre */
  justify-content: center; /* függőlegesen középre */
  min-height: 100vh;
  text-align: center;
}

/* Konténer */
#container {
  width: 100%;
  padding: 1rem;
}

/* Címsor */
h1 {
  font-size: 3rem;
  text-align: center;
  margin: 2rem 0;
  text-shadow: 5px 5px 5px black;
}

/* ===== Videó: Isten, ha létezne, így szólna ===== */
.isten_ha_video {
  display: block;
  margin: 2rem auto;
  width: 560px;
  height: 315px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}

/* ===== Audio szekció ===== */
.audio-section {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.audio-section audio {
  width: 100%;
  max-width: 600px;
}

/* Lejátszás felirat stílusa */
.hang-szoveg {
  color: red;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 3px 3px 3px black;
  margin-bottom: 1rem;
}

.hang-szoveg:hover {
  color: brown;
  text-shadow: 0 0 20px rgb(255, 224, 27);
  text-decoration: underline;
}

/* ===== Navigációs linkek ===== */
#linkek {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
  text-align: center;
}

/* Alsó két link (mobilon középen, nagyobb kijelzőn két oldalra) */
#linkek2 {
  display: flex;
  flex-direction: column;  /* alap: egymás alatt */
  align-items: center;     /* középre vízszintesen */
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Nagyobb kijelzőn két oldalra */
@media (min-width: 768px) {
  #linkek2 {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Linkek stílusa */
#linkek2 h2 {
  font-size: 1rem;
  font-style: italic;
  color: white;
  text-shadow: 3px 3px 3px black;
  transition: all 0.3s ease;
  padding: 0;
}

#linkek2 a {
  text-decoration: none;
}

#linkek2 a:hover h2 {
  color: red;
  text-shadow: 0 0 10px #00ffff;
  transform: translateY(-5px);
  text-decoration: none;
}

/* Felső linkek */
#linkek h2 {
  font-size: 2rem;
  color: white;
  text-shadow: 3px 3px 3px black;
  transition: all 0.3s ease;
}

#linkek a {
  text-decoration: none;
}

#linkek a:hover h2 {
  color: red;
  text-shadow: 0 0 10px #00ffff;
  transform: translateY(-5px);
  text-decoration: none;
}

/* ===== Reszponzív szövegméret ===== */
@media (min-width: 480px) {
  html {
    font-size: calc(1em + 0.5vw);
  }
}
