:root {
    --blue: #0077cc;
    --light-blue: #e0f0ff;
    --pink: #ff4f81;
    --light-pink: #ffe0ec;
    --green: #00cc88;
    --light-green: #e6fff7;
    --white: #ffffff;
    --gray: #fefefe;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Mona Sans", sans-serif;
    font-size: 14pt;
    color: var(--white);
    background-color: var(--gray);
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.outer-container {
    margin: 0 auto;
}

.content-wrapper {
    max-width: 1200px;
    margin: 50px auto -50px auto;
    border-left: 15px solid white;
    border-right: 15px solid white;
    filter: drop-shadow(0px 0px 20px #e7e8e8);
    background: white;
    top: -50px;
    position: relative;
}

.section {
    padding: 4rem 1rem;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    background: url('./img/img_hero_game.png') center center / cover no-repeat;
    border-radius: 0px 0px 50px 50px;
    padding: 50px 0 50px 0;
    margin: 25px 0 -100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding-top: 37vh;*/
    position: relative;
    z-index: 101;
    color: #0a2b61;
    text-align: center;
    top: 50px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0px 0px 0 #37acdb, 0px 6px 0 #37acdb;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.button {
    background-color: #37acdb;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:hover {
    cursor: pointer;
    background-color: #ffffff;
    color: #2b4394;
    transition: all 0.5s ease;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
    position: relative;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
}

.lightbox video {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox .close {
    position: absolute;
    top: -20px;
    right: -20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: black;
    border-radius: 50%;
    padding: 0 15px;
}

.section-blue-hero {
    background: radial-gradient(circle, #33a4d2 0%, #37acdb 100%);
    border-radius: 0px 0px 50px 50px;
    padding: 100px 0 50px 0;
    margin: 50px 0 -100px 0;
    top: 50px;
    position: relative;
    z-index: 100;
}

.section-blue-hero .container {
    text-align: center;
}

.section-blue-hero p {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.highlight {
    display: block;
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.divider-line {
    width: 6px;
    height: 50px;
    border-radius: 10px;
    background-color: #155c78;
    margin: 2rem auto;
    opacity: 0.5;
    font-weight: 700;
}

.buttoncontact {
    background-color: white;
    color: #155c78;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.buttoncontact:hover {
    background-color: #1d6c8b;
    cursor: pointer;
    color: white;
    transition: all 0.5s ease;
}

.section-pink {
    background: radial-gradient(circle, #ff97b4 0%, #fc6993 100%);
    border-radius: 0px 0px 50px 50px;
    padding: 100px 0 50px 0;
    margin: 50px 0 -100px 0;
    top: 50px;
    position: relative;
    z-index: 99;
}

.pink-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.pink-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: flex-start;
}

.pink-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
}

.pink-text {
    flex: 1 1 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.pink-text h2 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0px 0px 0 #fc648f, 0px 6px 0 #fc648f;
}

.pink-text h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    font-weight: 700;
    margin: 0.5rem 0 1rem 0;
}

.column {
    text-align: center;
    margin: 1.5rem 0 4rem 0;
}

.section-pink .divider-line {
    width: 6px;
    height: 50px;
    border-radius: 10px;
    background-color: #ff2f6a;
    margin: 2rem auto;
    opacity: 0.5;
    font-weight: 700;
}

.message-image-wrapper {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    top: 82.5%;
    z-index: 2;
}

.message-image-wrapper img {
    max-width: 100%;
    height: auto;
}

.section-pink {
    position: relative;
    padding-bottom: 6rem;
}

.section-blue {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.section-blue {
    background: radial-gradient(circle, #33a4d2 0%, #37acdb 100%);
    border-radius: 0px 0px 50px 50px;
    padding: 100px 0 50px 0;
    margin: 50px 0 -100px 0;
    top: 50px;
    position: relative;
    z-index: 98;
}

.section-blue .container.blue-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.text-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: white;
}

.text-left p {
    margin-bottom: 1rem;
}

.section-blue h2 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0px 0px 0 #007daf, 0px 6px 0 #007daf;
}

.section-blue h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem 0;
    font-weight: 700;
}

.image-right {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end;
}

.image-right img {
    max-width: 90%;
    border-radius: 1rem;
    height: auto;
}

.section-green {
    background: radial-gradient(circle, #2e4490 0%, #2e4490 100%);
    border-radius: 0px 0px 50px 50px;
    padding: 100px 0 50px 0;
    margin: 50px 0 -100px 0;
    top: 50px;
    position: relative;
    z-index: 97;
}

.section-green .container {
    align-items: center;
    /*padding-left: 15%;*/
}

.section-green h2 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0px 0px 0 #33a4d2, 0px 6px 0 #33a4d2;
}

.section-green p {
    font-size: 1.25rem;
    margin: 0.5rem 0 1rem 0;
    align-items: left;
}

.form-image-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-green image-right {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 250px;
}

.section-green image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

#form {
    flex: 1 1 10%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: left;
    padding-top: 20px;
}

.form-item {
    background-color: #ffffff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 30px;
    border: none;
    margin: 5px 0;
    width: 100%;
    height: 45px;
}

::placeholder {
    color: #2e4490;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
}

.send {
    color: #33a4d2;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
}

.submit-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background-color: #33a4d2;
    color: #ffffff;
    padding: 10px 10px 10px 20px;
    border-radius: 30px;
    width: auto;
    max-width: 200px;
    height: 45px;
}

.submit-button:hover {
    cursor: pointer;
    background-color: #ffffff;
    color: #33a4d2;
    transition: all 0.3s ease;
}

.submit-button:hover input {
    color: #33a4d2;
    cursor: pointer;
}

.submit-button input {
    border: none;
    background-color: transparent;
    color: #ffffff;
    margin: 0 10px 0 0;
}

.msg {
    padding: 1rem 1.5rem;
    background-color: #33a4d2;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 20px;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 1;
    z-index: 9999;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.msg.success{
    background-color: #33a4d2;
}

.msg.error{
    background-color: #da3434;
    color:white;
}

.msg.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
}

.section-footer {
    background: #ffffff;
    padding: 100px 0 50px 0;
    margin: 100px 0 0 0;
    position: relative;
    z-index: 96;
    color: #2b4394;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.footer-logo {
    max-width: 100%;
    flex: 0 0 auto;
}

.footer-content {
    flex: 1 1 300px;
    min-width: 250px;
}

h2, h3 {
    font-weight: 900;
    margin-bottom: 1rem;
    justify-content: center;
    text-align: center;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.column {
    flex: 1 1 300px;
}

.error {
    color: red;
    font-size: 0.875rem;
}

@media(min-width: 350px){
    .hero h1{
        font-size: 2rem;
    }
}

@media(max-width: 764px){
    .section-green .container .form-image-wrapper{
        flex-direction: column;
    }
    .section-green .container .form-image-wrapper form{
        width: 100%;
    }
    .hero h1{
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .hero h1 {
        font-size: 5rem;
    }
}

@media (min-width: 1440px) {
    .container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}
