/*
Theme Name: My Awesome Theme
Theme URI: https://www.myawesometheme.com
Author: John Doe
Author URI: https://www.johndoe.com
Description: My Awesome Theme is a responsive, modern, and feature-rich WordPress theme designed for all kinds of websites. It comes with a custom homepage layout, multiple widget areas, and full compatibility with popular plugins.
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: my-awesome-theme
Tags: responsive, modern, custom-background, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

:root {
    --orange: #ffbf00;
    --teal: #01796f;
    --body-bg: #ffffef;
    --body-text: #434f49;
    --light-bg: #ecf7ec;
    --title: #2a3937;
    --lime: #bdea4a;
    --radius: 1.5rem;
}

/* 
Minden elemre, valamint azok ::before és ::after pszeudo-elemeire érvényes.
A box-sizing: border-box azt jelenti, hogy a width és height
már tartalmazza a paddinget és a border-t is.
Ez megkönnyíti a méretezést és elkerüli az "elszálló" szélességeket.
*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* 
Alapértelmezett böngésző margók és paddingek lenullázása,
hogy egységes kiindulási állapotból dolgozzunk.
*/

html {
    font-size: 1.25vw; /* oldalon lévő átlagos betűméret reszponzívan 24px */
}


@media only screen and (max-width: 1281px) {
    html {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 22px;
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: 18px;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: "Red Hat Display", sans-serif;
    background: var(--body-bg);
    color: var(--body-text);
    overflow-x: hidden;
}

/* 
A képek nem lóghatnak ki a szülő elemükből.
Ha a szülő kisebb, a kép automatikusan lekicsinyedik.
*/

img {
    max-width: 100%;
    height: auto;
}

a {
    /* hivatkozás */
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    /* hivatkozás ha ráviszem az egeret */
    color: var(--lime);
}

p,
li {
    line-height: 1.5;
}

ul {
    padding-left: 20px;
}

ul li::marker {
    color: var(--lime);
}

ol {
    padding-left: 1.5rem;
}

ol li::marker {
    font-weight: bold;
    border-radius: 50%;
}

ol li {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    padding-left: 10px;
}

ol li::before {
    /* számozott felsorolás */
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: var(--lime);
    display: block;
    position: absolute;
    left: -1.5rem;
    top: 0;
    z-index: -1;
    border-radius: 50%;
}

h1,
h2,
h3 {
    color: var(--title);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    position: relative;
    margin-bottom: 0.5rem;
    z-index: 1;
}

h1:before,
h2:before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: -0.75rem;
    top: 0.75rem;
    background: var(--lime);
    border-radius: 50%;
    outline: solid 3px var(--lime);
    outline-offset: 6px;
    z-index: -1;
}

h2 {
    font-size: 2.25rem;
    margin-top: 0;
    position: relative;
    margin: 0.5rem;
}

h2.has-text-align-center {
    justify-content: center;
    display: flex;
}

h2.has-text-align-center:before {
    position: relative;
    left: 1.25rem;
    top: 0.25rem;
}

h3,
.archive h2 {
    font-size: 1.5rem;
}

h2 a,
h3 a {
    color: inherit;
}

.page-template-page-hero h1 {
    margin-top: 0;
}

.wp-block-post-excerpt__excerpt {
    margin-bottom: 1rem;
}

.wp-block-post-excerpt__more-text {
    margin-bottom: 1.5rem;
}

.button, .wp-block-button a, .wp-block-post-excerpt__more-link, /* gombok */
input[type="submit"] {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--title);
    background: var(--orange);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
    border-radius: 2rem;
}

blockquote {
    margin: 0 0 1rem 0;
}

.align-center {
    text-align: center;
}

header {
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#top-head {
    background: var(--lime);
    color: var(--title);
    font-size: 0.75rem;
}

#top-head .content-box,
#head .content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#top-head ul {
    display: flex;
    gap: 1.5rem;
    margin: 0.35rem 0;
}

#top-head ul li {
    display: flex;
}

#top-head a {
    color: var(--title);
}

#head {
    padding: 0.75rem 0;
}

#logo svg {
    max-width: 10rem;
}

#logo svg path {
    fill: var(--title);
}

#logo a:hover svg path {
     fill: var(--teal);
}


.highlight {
    color: var(--teal);
}

.hero {
    background: var(--light-bg);
    overflow: hidden;
    padding: 7vw 0;
}

.home-hero {
    background-image: url(img/hero.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.box-style,
blockquote,
.query-cta ul li {
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(1, 122, 111, 0.2);
    padding: 0 1.5rem;
    overflow: hidden;
}

.box-style h2 { /* chat gpt */
    margin: 0; 
}

.query-cta ul li h3,
.query-cta ul li h2 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
}

.wide {
    width: calc(100vw - 18px);
    position: relative;
    left: calc(50% + 9px);
    margin-left: -50vw;
}

.narrow {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.vertical-center {
    align-items: center;
}


.lime-bg {
    background: var(--lime);
    padding: 10vw 0;
    color: var(--title);
}

.query-cta ul li figure, .box-style figure {
    margin: 0 -1.5rem;
}

.portfolio ul {
    display: block;
    column-count: 3;
}

.portfolio ul li {
    break-inside: avoid;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.25em;
}

.portfolio ul li figure {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
}

.portfolio ul li h3 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    color: #fff;
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    width: 100%;
}

.portfolio ul li h3:before {
    content: "";
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7987570028011204) 23%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 4rem;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
}

.wp-block-buttons > .wp-block-button {
    margin-bottom: 1rem;
}

body .team {
    display: block;
    column-count: 2;
    gap: 1.25rem !important;
}

body .team .wp-block-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.25rem !important;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=file],
select,
textarea {
    border: solid 1px rgba(0,0,0,0.10);
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(1, 122, 111, 0.20);
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    width: 100%;
}

footer {
    background: var(--teal);
    border-top: 3px solid var(--lime);
    color: #fff;
    font-size: smaller;
    padding: 5rem 0 3rem 0;
}

footer a,
footer h3 {
    color: #fff;
}

#copyright {
    background: var(--teal);
    color: #fff;
    font-size: smaller;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.nav-links {
    margin: 3rem 0;
    text-align: center;
}

.nav-links span,
.nav-links a {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    background: #fff;
    border: solid 1px #ddd;
}


@media only screen and (max-width: 1281px) {
    .home-portfolio,
    .home-portfolio .wp-block-buttons {
        display: block!important;
    }
    
    .home-portfolio-txt {
        text-align: center;
    }
    .home-portfolio h2 { /* golyó a szöveg előtt */
    justify-content: center;
    display: flex;
}

    .home-portfolio h2:before {
    position: relative;
    left: 1.25rem;
    top: 0.25rem;
}
    #head .content-box {
        flex-wrap: wrap;
    }
    
    #head-menu {
        width: 100%;
    }
    
    .wide {
        width: 100vw;
        left: 50%;
    }
}

@media only screen and (max-width: 1023px) {
    #top-head .content-box {
        display: block;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .home-hero {
        background-position: bottom -30vw right;
        background-size: 190% auto;
        padding-bottom: 45vw;
    }
    h1, 
    h2 {
        font-size: 2rem;
    }
    
    h3, .archive h2 {
       font-size: 1.25rem; 
    } 
    
    .query-cta ul {
        display: block;
    }
    
     .query-cta ul li {
        margin-bottom: 1rem;
    }
    
     .portfolio ul {
        column-count: 2;
    }
}


@media only screen and (max-width: 480px) {
    #top-head .content-box {
        text-align: center;
    }
    
    #top-head ul {
        display: block;
        margin: 0;
        padding: 0;
    }
    #top-head ul li {
        margin: 0;
        padding: 0.25rem 0;
    }
    
    footer .column-4 > div {
        width: 100%;
    }
    
    .wp-block-spacer {
        max-height: 50px;
    }
    
     .portfolio ul {
        column-count: 1;
    }
    

}