/*
színek

pink rgb(204, 0, 102) #cc0066
lila rgb(47, 24, 71) #2f1847
plum rgb(156, 149, 220) #9c95dc
kék rgb(34, 140, 219) #228cdb
turqoise rgb(11, 113, 137) #0b7189
betűszín rgb(207, 215, 198) #cfd7c7

*/
@font-face {
    font-family: "Poppins";
    src: url("../font/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Bauhaus";
    src: url("../font/Bauhaus\ 93\ Regular.ttf");
}

body {
    font-family: 'Poppins', sans-serif;
    /*font-family: 'Bauhaus', sans-serif;*/
    background-image: linear-gradient(45deg, #228cdb, #cfd7c7);
}

.nav-link:hover {
    color: #27bcda;
}

.rolunkszoveg {
    display: flex;
    flex-direction: column;
    font-size: larger;
    text-align: justify;
    text-justify: inter-word;
    width: 100%;

    margin-top: 5%;
    margin-bottom: 5%;
    border: 5px solid #9c95dc;
    border-radius: 48px;
    padding: 3.5%;
    box-shadow: 10px 10px 8.5px #2f1847, -1.5px -1.5px #444;
    background-color: #0b7189;
    color: #cfd7c7;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.rolunkszoveg span div img {
    margin: 2%;
    width: 32vw;
    box-shadow: 10px 10px 8.5px #2f1847, -1.5px -1.5px #444;
    background-color: #0b7189;
    border: 5px solid #9c95dc;
    border-radius: 1vw;
    transition: 0.3s;
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: auto;
}

.fullscreen-image {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.close-btn {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

.card {
    background-color: transparent;
    border: none;
    width: fit-content;
}

.kepek {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.rolunkszoveg span div img:hover {
    rotate: 5deg;
}

/*formstyle*/
form {
    width: 40%;
}

.form-control {
    position: relative;
    margin: 3.5%;
    width: 62%;
    background-color: transparent;
    border: none;
}

.form-control input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px #fff solid;
    display: block;
    width: 150%;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
}

.form-control input:focus,
.form-control input:valid,
.form-control textarea:focus,
.form-control textarea:valid {
    outline: 0;
    border-bottom-color: lightblue;
}

.form-control label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
}

.form-control label span {
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    color: #fff;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control input:focus+label span,
.form-control input:valid+label span,
.form-control textarea:focus+label span,
.form-control textarea:valid+label span {
    color: lightblue;
    transform: translateY(-30px);
}

.kepfeltoltes {
    width: 70%;
}

/*----------*/

/*footer*/
footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100%;

    padding-top: 40px;
    color: #cfd7c7;
}

.footerleairas {
    display: flex;
    flex-direction: row;
}

.footerleairas p {
    width: 40%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
}

.socials {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #cfd7c7;
    border: 1.1px solid white;
    padding: 5px;

    border-radius: 50%;

}

.socials a i {
    font-size: 1.1rem;
    width: 20px;


    transition: color .4s ease;

}

.socials a:hover i {
    color: aqua;
}

.footer-bottom {
    background: #000;
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-bottom p {
    float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom p a {
    color: #44bae8;
    font-size: 16px;
    text-decoration: none;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

.footer-menu {
    float: right;

}

.footer-menu ul {
    display: flex;
}

.footer-menu ul li {
    padding-right: 10px;
    display: block;
}

.footer-menu ul li a {
    color: #cfd2d6;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    color: #27bcda;
}

.footer-menu ul li button {
    color: #cfd2d6;
    text-decoration: none;
    background: transparent;
    border: none;
}

.footer-menu ul li button:hover {
    color: #27bcda;
}

/*--------------------*/

/*popup*/

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Semi-transparent háttér */
    z-index: 10;
}

/* popup content */
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(45deg, #cfd7c7, #228cdb);
    padding: 20px;
    border-radius: 5px;
}

/* kilépés gomb */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


.popup2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Semi-transparent háttér */
    z-index: 10;
}

/* popup content */
.popup-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(45deg, #cfd7c7, #228cdb);
    padding: 20px;
    border-radius: 5px;
}

/* kilépés gomb */
.close2 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/*------------------------------*/
/*gomb*/

.fancygomb {
    padding: 1.1em 2em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #131313;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #9c95dc;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
    margin-left: 11%;
    margin-bottom: 5%;
}

.fancygomb:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #cc0066;
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
}

.fancygomb:hover {
    background-color: #0b7189;
    color: #fff;
    box-shadow: 0 2px 0 2px #0d3b66;
}

.fancygomb:hover::before {
    transform: skewX(30deg) translate(150%, -50%);
    transition-delay: 0.1s;
}

.fancygomb:active {
    transform: scale(0.9);
}

/*----------------------*/

@media(max-width: 700px) {
    .rolunk {

        font-size: 10vw;

    }

    .rolunkszoveg {
        display: flex;
        flex-direction: column;
        font-size: 6vw;
        text-align: center;
        text-justify: unset;
        width: 95vw;
    }

    .footer-bottom {

        width: 100%;

        text-align: center;

    }

    .footer-bottom p a,
    .footer-bottom p {

        font-size: 13px;
        text-decoration: none;

    }

    .footer-menu {
        position: absolute;
        right: 0;
        font-size: 13px;

    }

    .footerleairas p {
        line-height: 2.5vh;
    }

    .popup,
    .popup2 {
        width: 100vw;
        padding: 0;
    }

    .kepek {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
        margin: auto;

    }

    .form-control {
        width: 60vw;
        display: flex;
        justify-content: center;
        margin: 5% auto 5% auto;
    }
    form {
        width: 85vw;
        margin: auto;
    }

    .rolunkszoveg span div img {
        scale: 2.5;
        box-shadow: none;
        border: 2px solid #9c95dc;
        margin: 50% auto 50% auto;
    }
    
    #sendbutton
    {
        text-align: center;
        
    }
    .fancygomb
    {
        margin: auto;
    }
    .fullscreen-image
    {
        margin: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

}