/* Alapok */
body 
{
    font-family: Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #d44444;
    color: #011169;
    display: grid;
    gap: 1em;
}

/* Ugrás a tartalomra */
.skip-link 
{
    position: absolute;
    top: -3em;
    left: 0;
    background: #ffffff;
    color: rgb(3, 0, 0);
    padding: 0.5em;
    z-index: 100;
    transition: top 0.3s ease-in;
}

.skip-link:focus 
{
    top: 0;
}

/* Stílusváltó */
#style-switcher 
{
    padding: 0.625em; /* 10px és 16px */
    text-align: right;
    background-image: url('../kepek/banner.jpg');
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-area: switcher;
}

#style-switcher button 
{
    padding: 0.3125em 0.625em; /* 5px és10px */
    margin-left: 0.3125em; /* 5px */
    border: 1px solid #ccc;
    background-color: #070707;
    color: #ffffff;
    cursor: pointer;
}

section, article, figure, video, h2 
{
    padding: 0.9375em; /* 15px és 16px */
    background-color: #d9eaf8;
}

header 
{
    background-color: transparent;
    padding: 0;
}
header nav 
{
    padding: 0.625em 0.9375em; /* 10pxés  15px */
    background-color: #ffffff;
}

textarea 
{
    width: 95%;
    padding: 0.625em; /* 10px */
    border: 1px solid #ccc;
    border-radius: 0.25em; /* 4px */
    resize: vertical;
}

h1 
{ font-size: 2em; color: #000000; margin-top: 0; }
h2 
{ font-size: 1.5em; color: #000000; margin-top: 0; }
h3 
{ font-size: 1.2em; color: #000000; margin-top: 0; }


header nav a.button 
{
    display: inline-block;
    padding: 0.5em 0.9375em; /* 8px és 15px */
    margin: 0.3125em; /* 5px */
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 0.25em; /* 4px */
    transition: background-color 0.3s;
}

header nav a.button:hover 
{
    background-color: #004691;
    text-decoration: none;
}

header nav a.button.active-link 
{
    background-color: #01274d;
    font-weight: bold;
    box-shadow: inset 0 0 0.3em rgba(0,0,0,0.5);
}


/* Képek és videó*/
img, video 
{
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
video 
{
    background-color: #000;
}
figcaption 
{
    font-style: italic;
    font-size: 0.9em;
    color: #000000;
    text-align: center;
    margin-top: 0.3125em; /* 5px */
}
details 
{
    margin-top: 0.625em; /* 10px */
    background-color: #eee6e6;
    border: 1px solid #eee;
    padding: 0.625em; /* 10px */
    border-radius: 0.25em; /* 4px */
}
details summary 
{
    cursor: pointer;
    font-weight: bold;
}

#style-switcher 
{ grid-area: switcher; }
header 
{ grid-area: menu; }

.index-page #main-content > .bio-section:first-of-type 
{ grid-area: intro-text; }
.index-page #main-content .main-content-wrapper .media-section:first-of-type 
{ grid-area: video-content; }
.index-page #main-content .main-content-wrapper .media-section:last-of-type 
{ grid-area: image-one; }
.index-page #main-content > .bio-section:last-of-type 
{ grid-area: biography; }

.albumok-page main#main-content > section:first-of-type,
.kerdoiv-page main#main-content > section:first-of-type 
{
    grid-area: left-block;
}
.albumok-page main#main-content > aside#album-images,
.kerdoiv-page main#main-content > aside 
{
    grid-area: right-block;
}

main#main-content,
.main-content-wrapper,
.container 
{
    display: contents;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

/* Kicsi nézet (Alapértelmezett) */
body 
{
    padding: 0.625em;
    grid-template-columns: 1fr;
}

.index-page 
{
    grid-template-areas:
        "switcher"
        "menu"
        "intro-text"
        "video-content"
        "image-one"
        "biography";
}

.albumok-page,
.kerdoiv-page 
{
    grid-template-areas:
        "switcher"
        "menu"
        "left-block"
        "right-block";
}

/* Közepes nézet (tabletek) */
@media (min-width: 768px) 
{
    body 
    {
        grid-template-columns: 1fr 1fr;
        gap: 1.25em;
        padding: 1.25em; /* 20px */
    }

    .index-page 
    {
        grid-template-areas:
            "switcher      switcher"
            "menu          menu"
            "intro-text    video-content"
            "image-one     biography";
    }

    .albumok-page,
    .kerdoiv-page 
    {
        grid-template-areas:
            "switcher    switcher"
            "menu        menu"
            "left-block  right-block";
    }
}

/* Nagy nézet (pl. pc) */
@media (min-width: 1024px) 
{
    body 
    {
        gap: 1.5625em; /* 25px */
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5625em;
    }

    .index-page 
    {
        grid-template-areas:
            "switcher        switcher"
            "menu            video-content"
            "intro-text      video-content"
            "image-one       biography";
    }

    .albumok-page,
    .kerdoiv-page 
    {
        grid-template-areas:
            "switcher    switcher"
            "menu        right-block"
            "left-block  right-block";
        grid-template-rows: auto auto 1fr;
    }
}
.thumbnail 
{
    width: 10em; /*160px*/
    height: 10em;
    object-fit: cover;
}