/* ==========================
   Alap stílusok
   ========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

/* ==========================
   Landing szakasz
   ========================== */
#landing {
    position: relative;
    width: 100%;
    min-height: 100vh; /* biztosítja a scroll Safari-ban */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background {
    width: 100%;
    height: 100%;
    display: block;
}

#name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    text-align: center;
    z-index: 2;
    color: white;
}

/* ==========================
   Általános tartalom szakasz
   ========================== */
section {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

h2 {
    font-size: 2rem; /* Biography és Projects egységes */
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem; /* egységes szövegméret */
    line-height: 1.6;
}

/* ==========================
   Projektek / Tab-ok
   ========================== */
.project-tab {
    margin-top: 40px;
}

.project-tab h3 {
    font-size: 1.8rem; /* WHITE fül kicsit kisebb */
    margin-bottom: 15px;
}

.tab-button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==========================
   Videók stílusa
   ========================== */
.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/* ==========================
   Extra margin top a scroll után
   ========================== */
#biography,
#projects {
    padding-top: 50px;
}
