@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html[color="light"] {
    --primary: #de0201;
    --primary-content: #ffdfdf;
    --primary-dark: #ab0201;
    --primary-light: #fe1514;

    --secondary: #feb800;
    --secondary-content: #000000;
    --secondary-dark: #cb9300;
    --secondary-light: #ffc900;

    --background: #f0f0f0;
    --foreground: #fbfbfb;
    --border: #dfdfdf;

    --copy: #262626;
    --copy-light: #494949;
    --copy-lighter: #777777;

    --success: #01de01;
    --warning: #dede01;
    --error: #de0101;
    --success-content: #000000;
    --warning-content: #000000;
    --error-content: #ffdfdf;

    --shadow: rgba(0, 0, 0, 0.1);
}


html[color="dark"] {
    --primary: #de0201;
    --primary-content: #ffdfdf;
    --primary-dark: #ab0201;
    --primary-light: #fe1514;

    --secondary: #deba01;
    --secondary-content: #000000;
    --secondary-dark: #ab8f01;
    --secondary-light: #fed814;

    --background: #1a1a1a;
    --foreground: #262626;
    --border: #404040;

    --copy: #fbfbfb;
    --copy-light: #d9d9d9;
    --copy-lighter: #a6a6a6;

    --success: #01de01;
    --warning: #dede01;
    --error: #de0101;
    --success-content: #000000;
    --warning-content: #000000;
    --error-content: #ffdfdf;

    --shadow: rgba(0, 0, 0, 0.1);
}

*{
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
    
    color: var(--copy);
    background-color: var(--background);

    font-family: Poppins;
}

#firstSection{
    height: 100dvh;

    padding: 0 120px;

    position: relative;
}

.firstHeader{
    height: 100%;
    width: 100%;
    
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.firstHeader h1{
    font-size: 80px;

    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.firstHeader p{
    font-size: 40px;

    color: var(--copy-light);

    margin-bottom: 10px;

    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons button{
    padding: 18px;
    margin: 10px;

    
    box-shadow: 3px 3px 0 var(--shadow);

    border-radius: 15px;

    background-color: var(--foreground);
    
    font-size: 18px;

    cursor: pointer;;

    transition: 1s;
}

.programunk:hover{
    background-color: var(--border);

    transition: 0.6;

    box-shadow: 6px 6px 0 var(--shadow);
}

.csatlakozz{
    background-color: var(--primary-light) !important;

    filter: grayscale(0.15);
    color: white;

    transition: 1s;
}

.csatlakozz:hover{
    background-color: var(--primary-dark) !important;

    transition: 0.6s;
}

.scrollDown{
    position: absolute;

    left: 50%;
    bottom: 4%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    cursor: pointer;
}

#secondSection{
    padding: 50px 120px;

    display: flex;
    flex-direction: row;
    justify-content: center;

    background-color: var(--foreground);
}

.bulletPointsImg{
    object-fit: cover;

    border-radius: 10px;
    box-shadow: 5px 5px 0 var(--shadow);

    width: 400px;
    height: 400px;


}

.bulletPoints{
    margin-left: 50px;

    display: flex;
    align-items: center;

    background-color: var(--foreground);
}

.bulletPoints li{
    padding: 8px 0;
    font-size: 15px;

    background-color: var(--foreground);
}


#thirdSection{
    padding: 50px 150px;

    display: flex;
    flex-direction: column;

    align-items: center;
}

.kattintsale{
    display: none;
}

.container {
    display: flex;
    flex-wrap: wrap;

    justify-content: center
  }
  
.card {
    margin: 10px;
    padding: 10px;

    max-width: auto;
    
    border: 0.5px solid var(--border);
    border-radius: 10px;

    cursor: pointer;

    background-color: #141414;

    display: flex;
}

.card img{
    width: 100px;
    height: 100px;

    object-fit: contain;

    -webkit-filter: invert(0.92);
    filter: invert(0.92);
}

.info, .info *{
    background-color: #141414;
    color: #fbfbfb;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 0 5px;
}

.info p{
    font-size: 14px;
}

.description {
    margin-top: 20px;
    margin: 10px 80px;
    padding: 10px;
    border: 1px solid var(--border);
    display: none;

    position: relative;
    color: var(--copy-light);
}

.close{
    position: absolute;
    top: 5px;
    right: 10px;

    font-size: large;

    cursor: pointer;
}

#fourthSection{

    background-color: var(--foreground);

    display: flex;
    flex-direction: column;

    align-items: center;
}

#fourthSection *{
    background-color: var(--foreground);
}

.contactInfo{
    font-size: 40px;
    margin: 50px 0 5px 0;
}

.contacts{
    display: flex;
}

.contact{
    padding: 20px;
    margin: 0 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: solid 0.5px var(--border);
    border-radius: 10px;

    background-color: var(--background) !important;
}

.contact *{
    background-color: var(--background) !important
}

.contact h1{
    font-weight: 400;
    font-size: 30px;

}

hr{
    color: var(--copy);
    
    border: solid 0.5px var(--copy-lighter);
    width: 100%;
    margin: 10px 0;
}

.contact i{
    font-size: 24px;

    margin: 5px;
    color: var(--copy-lighter);
    transition: 0.6s;
}

.contact i:hover{
    color: var(--copy);
    transition: 0.6s;
}

.adomanyozz{
    width: 550px;
    height: 70px;
    margin: 30px;
    margin-bottom: 50px;

    font-size: 24px;
    
    background-color: var(--background) !important;

    border: solid 1px var(--background);

    box-shadow: 3px 3px 0 var(--shadow);
    border-radius: 15px;

    cursor: pointer;

    transition: 0.6s;
}

.adomanyozz:hover{
    background-color: var(--foreground) !important;
    border: solid 1px var(--border);

    transition: 1s;
}

.emailjelolteknek{
    width: 550px;
    height: 70px;
    margin: 30px;

    font-size: 24px;
    
    background-color: var(--background) !important;

    border: solid 1px var(--background);

    box-shadow: 3px 3px 0 var(--shadow);
    border-radius: 15px;

    cursor: pointer;

    transition: 0.6s;
}

.emailjelolteknek:hover{
    background-color: var(--foreground) !important;
    border: solid 1px var(--border);

    transition: 1s;
}

#fifthSection{
    display: flex;
    flex-direction: column;

    align-items: center;
}

#fifthSection h1{
    font-size: 40px;

    margin: 50px 0 30px 0;
}

.kozlemenyek{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    margin-bottom: 100px;
}

.kozlemeny{
    width: 300px;
    padding: 20px;
    margin: 20px;

    background-color: var(--foreground);

    border: solid 1px var(--border);
    border-radius: 30px;

    display: flex;
        flex-direction: column;
        justify-content: space-between;
}

.kozlemeny *{
    background-color: var(--foreground);
}

.kozlemeny img{
    border-radius: 10px;
    margin-bottom: 10px;

    height: 300px;
    width: 300px;
    object-fit: cover;
}

.datum{
    font-size: 12px;
    color: var(--copy-lighter);
}

.leiras{
    margin: 10px 0;
    font-size: 13px;
    color: var(--copy-light);
}

.olvasdtovabbdiv{
    display: flex;
    justify-content: left;
    padding: 10px;
}

.olvasdtovabb{
    padding: 10px;

    background-color: var(--background) !important;
    border-radius: 10px;

    cursor: pointer;
    border: solid 1px var(--background);

    transition: 0.6s;

}


.olvasdtovabb:hover{
    background-color: var(--foreground);
    border: solid 1px var(--border);
}


@media only screen and (max-width: 1300px) {
    
    #secondSection, #thirdSection{
        padding: 40px 100px;
    }

    #firstSection{
        padding: 0 100px;
    }

    .firstHeader h1 {
        font-size: 60px;
    }

    .firstHeader p {
        font-size: 30px;
    }

    .buttons button{
        padding: 14px;
        font-size: 16px;
    }

    .bulletPoints li{
        padding: 3px 0;
        font-size: 13.5px;
    }

    .card{
        flex-direction: column;
        align-items: center;

        padding: 30px 15px;
    }

    .card img{
        margin-bottom: 15px;
    }

    .info, .info *{
        align-items: center;
        margin: 0;
    }
}

@media only screen and (max-width: 1010px) {

    #secondSection, #thirdSection{
        padding: 30px 60px;
    }

    #firstSection{
        padding: 0;
    }

    .firstHeader h1 {
        font-size: 50px;
    }

    .firstHeader p {
        font-size: 24px;
    }

    #secondSection{
        flex-direction: column;

        align-items: center;
    }

    .bulletPointsImg{
        width: 500px;
        height: 300px;

        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 800px) {

    #secondSection, #thirdSection{
        padding: 30px 60px;
    }

    #firstSection{
        padding: 0;
    }

    .firstHeader h1 {
        font-size: 40px;
    }

    .firstHeader p {
        font-size: 22px;
    }

    .buttons button{
        padding: 12px;
        font-size: 14px;
    }

    .bulletPointsImg{
        height: 250px;
        width: 400px;
    }
    .bulletPoints li {
        padding: 3px 0;
        font-size: 13px;
    }


    .card{
        margin: 8px;
        padding:25px 12px;
    }

    .card img{
        margin: 0;

        height: 80px;
        width: 80px;

        border: none;
    }

    .info h2{
        font-size: 22px;
    }

    .info p{
        font-size: 14px;
    }

    .description{
        margin: 10px 40px;
    }

    .contact i{
        font-size: 16px;
    }



    .kozlemenyek{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .kozlemeny{
        width: 250px;
        padding: 15px;
        margin: 15px;
    
        border: solid 1px var(--border);
        border-radius: 30px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .kozlemeny h2{
        font-size: 22px;
    }

    .kozlemeny img{
        height: 250px;
        width: 250px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .datum{
        font-size: 11px;
        color: var(--copy-lighter);
    }
    
    .leiras{
        margin: 10px 0;
        font-size: 12px;
        color: var(--copy-light);
    }
    
    .olvasdtovabb{
        padding: 10px;
    
        background-color: var(--foreground);
        border-radius: 10px;

        font-size: 11px;
    }

}

@media only screen and (max-width: 650px) {

    #secondSection, #thirdSection{
        padding: 30px 30px;
    }

    #firstSection{
        padding: 0;
    }

    .firstHeader h1 {
        font-size: 26px;
    }

    .firstHeader p {
        font-size: 16px;
    }

    .buttons button{
        padding: 8px;
        font-size: 12px;

        margin: 5px;
    }


    .bulletPointsImg{
        height: 250px;
        width: 300px;

        margin-bottom: 20px;
    }
    .bulletPoints li {
        padding: 3px 20px 3px 0;

        font-size: 13px;
    }

    .card{
        margin: 5px;
        padding: 20px 10px;
    }

    .card img{
        margin: 0;

        height: 70px;
        width: 70px;

        border: none !important;
    }

    .info h2{
        font-size: 20px;
    }

    .info p{
        display: none;
    }

    .description{
        margin: 10px 25px;

        font-size: 12px;
        color: var(--copy-light);
    }

    .kattintsale{
        display:block;
        margin: 20px;

        color: var(--copy-light) !important;
    }
    
    .contactInfo{
        font-size: 32px;
    }

    .contacts{
        flex-direction: column;
    }

    .contact{
        padding: 15px 50px;
        margin: 5px;
    }

    .contact h1{
        font-size: 24px;
    }

    .contact i{
        font-size: 24px;
    }

    .adomanyozz, .emailjelolteknek{
        width: 100%;
        height: 80px;

        border-radius: 0;
        padding: 20px 0;
        margin: 30px 0;
    }

    .emailFont{
        font-size: 18px;
    }

    .adomanyozz{
        margin-bottom: 50px;
    }

    #fifthSection h1{
        font-size: 32px;
    }
}