:root
{
    --base-width: 1920;
    font-size: calc(100vw / var(--base-width) * 16);
}

body
{
    margin: 0px;
    padding: 0px;
    
    font-family: Helvetica;

    background-image: linear-gradient(135deg, #dbf3ef, #efefef, #dbf3ef);
}

section
{
    margin-bottom: 10rem;
}

section#events
{
    margin-bottom: 0;
}

h1
{
    font-size: 7rem;
    font-weight: 400;

    margin-top: 0;
}

form
{
    display: flex;
    flex-direction: column;
}

label
{
    font-size: 1.4rem;
}

input
{
    border: 0.1rem solid #ccc;
    border-radius: 0.6rem;
    border-color: #aaa;
    height: 3rem;
    margin-bottom: 2rem;
}

/*input[type="radio"]
{
    accent-color: #FFB6E0;
}*/

input[type="button"],
input[type="submit"]
{
    font-weight: bold;

    border-radius: 2rem;
    border-color: #FFB6E0;
    cursor: pointer;

    background-color: #FFB6E0;
}

input[type="button"]:hover,
input[type="submit"]:hover
{
    background-color: #eea6d0;
}

input::placeholder,
textarea::placeholder
{
    color: #aaa;
    font-style: italic;
    opacity: 1;
}

textarea
{
    border: 0.1rem solid #ccc;
    border-radius: 0.5rem;
    border-color: #aaa;
    height: 6rem;
    margin-bottom: 2rem;
}

.mandatory_text
{
    margin: 0;
}

.welcome-background
{
    width: 100%;
    aspect-ratio: 16 / 9;
        
    margin: 0px;
    padding: 0px;

    background-image: url(images/welcome_background.jpg);
    background-repeat: no-repeat;
    background-size: contain;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.welcome-ninja
{
    height: 25vw;
    margin-top: 8.6vw;
    margin-left: 2.5vw;
}

.welcome-subtitle
{
    margin: 0;

    align-self: center;
    text-align: center;

    font-size: 4.3rem;

    color: #fff;
    text-shadow: 0.05em 0.05em #666;
}

.welcome-genres
{
    margin: 11.5rem 0 0 0;

    align-self: center;
    text-align: center;

    font-size: 2.3rem;
    
    color: #fff;
    text-shadow: 0.05em 0.05em #666;
}

.welcome-text-area
{
    padding: 4rem 0 0 0;
}

.welcome-paragraph
{
    align-self: center;
    text-align: center;

    font-size: 2.2rem;

    margin-top: 0;
    padding: 0 6rem 0 6rem;
}

.welcome-slogans-area
{
    width: 100%;
    
    background-image: linear-gradient(150deg, #DDECF0, #EFE8F0, #E8EBF0);

    display: flex;
    align-items: flex-start;
    flex-direction: row;

    margin-top: 4rem;
}

.welcome-slogan
{
    font-size: 2.3rem;

    margin: 2rem 4rem 2rem 4rem;
}

.welcome-slogans-table-spacer-column
{
    width: 5%;
}

.gallery-area
{
    height: 50rem;
    
    margin: 0;
    padding: 4rem 2rem 2rem 2rem;
}

.contact-area
{
    margin: 0;
    padding: 4rem 2rem 2rem 2rem;

    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.contact-text
{
    width: 50vw;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.contact-text h1
{
    margin-top: 0;
}

.contact-text p
{
    margin-top: 0;
    margin-right: 18rem;

    font-size: 2.2rem;
}

.contact-area form
{
    width: 50vw;

    padding-top: 2rem;
}

.radio_group
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /*gap: 8px;*/

    margin-bottom: 2rem;
}

.radio_group div
{
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio_group input[type="radio"]
{
    margin: 0;

    display: flex;
    flex-direction: row;

    gap: 8px;

    cursor: pointer;
}

.radio_group label
{        
    cursor: pointer;
}

.survey-area
{
    margin: 0;
    padding: 2rem;

    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.survey-text
{
    width: 50vw;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.survey-text h1
{
    margin-top: 0;
}

.survey-text p
{
    margin-top: 0;
    margin-right: 18rem;

    font-size: 2.2rem;
}

.survey-area form
{
    width: 50vw;

    padding-top: 2rem;
}

.rating-group
{
    display: flex;
    flex-direction: row-reverse; /* important for selecting all stars before the selected one */
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* hide default radio input */
.rating-group input
{
    display: none !important;
}

.rating-group label
{
    cursor: pointer;
    font-size: 4rem;
    color: #ccc; /* star outline color */
    transition: color 0.5s ease;
    position: relative;
}

/* star outline as default label */
.rating-group label::before
{
    content: "☆";
}

/* fill selected radio label and all after */
.rating-group input:checked ~ label
{
    color: #FFB6E0;
}

/* and replace with full star */
.rating-group input:checked ~ label::before
{
    content: "★";
}

.events-area
{
    margin: 0;
    aspect-ratio: 16 / 9;

    background-image: urL(images/event-screen.jpg);
    background-repeat: no-repeat;
    background-size: contain;
}

.events-area-text
{
    padding: 4rem 2rem 0 2rem;
}

.events-area h1
{
    color: #fff;
}

.events-area p
{
    font-size: 2rem;

    display: flex;
    flex-direction: column;

    color: #fff;
}

footer
{
    font-size: 1rem;
    background-color: #FFB6E0;
    margin: 0px;
    padding: 1rem;
}

footer p
{
    margin: 0px;
    padding: 0px;
}

footer hr
{
    border: 0;
    height: 1px;
    background-color: #666;
    margin-bottom: 6rem;
}

.navigation
{
    position: fixed;

    top: 0px;
    left: 0px;

    padding: 1rem;

    display: flex;
    gap: 2rem;

    background: #fff;

    width: 100%;

    align-items: center;

    border-bottom: 1px #aaa solid;

    z-index: 1000;
}

.social-icons-navigation
{
    display: flex;
    gap: 1rem;

    margin-left: auto;
    margin-right: 2rem;
}

.social-icons-navigation img
{
    height: 1.5rem;

    transition: transform 0.3s;
}

.social-icons-navigation img:hover 
{
    transform: scale(2);
}