@import url('blog.css');
@import url('product.css');
@import url('page.css');
@import url('cart.css');

html{
    scroll-behavior: smooth;
}
body{
	margin:0;
    font-family: 'Montserrat', sans-serif;
    color: black;
    font-size: 16px;
}
.menu-home {
    position: absolute;
    width: 100%;
	z-index: 10;
}
a{
	text-decoration: none;
}
.cta{
    display: block !important;
    background: #D92E23;
    width: fit-content;
    min-width: 100px;
    padding: 15px 20px;
    color: white;
    font-weight: 500;
    text-align: center;
    position: relative;
    margin: 20px 0 0;
}
.product_type_variable.add_to_cart_button.cfvsw_ajax_add_to_cart,
.product_type_simple.add_to_cart_button.ajax_add_to_cart{
    display: block !important;
    background: #D92E23 !important;
    width: fit-content;
    padding: 15px 20px;
    color: white;
    font-weight: 500;
    font-size: 12px;
    margin: 20px 0 0 auto;
}
.cta:hover,
.product_type_variable.add_to_cart_button.cfvsw_ajax_add_to_cart:hover,
.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover{
    background: black !important;
    color: white !important;
}
h3{
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px;
}
p{
    margin: 0;
    color: #333;
}
.cat{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0 0 5px;
    border: 1px dashed #ddd;
    color: #aaa;
    padding: 5px 10px;
    display: inline-block;
}
.cat.black{
    border: 1px dashed #222;
    color: #555;
}
.box-price{
    margin: 0 0 20px;
}
.box-price .regular-price{
    font-size: 14px;
    font-weight: 500;
    color: red;
}
.box-price .sale-price{
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
    font-weight: 600;
}
.box-price .current-price,
.products .price{
    font-size: 12px !important;
    font-weight: 500 !important;
    color: black !important;
}
.stock{
    font-size: 12px !important;
    color: #aaa;
}
.stock span ,
.woocommerce-variation-availability p{
    display:flex;
    align-items: center;
}
.in-stock:before{
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #4bc700;
    border-radius: 50%;
    margin: 0 5px 0 0;
}
.out-stock:before,
.out-of-stock:before{
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #d02c21;
    border-radius: 50%;
    margin: 0 5px 0 0;
}
.available-on-backorder:before{
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #ffce1d;
    border-radius: 50%;
    margin: 0 5px 0 0;
}

/* HOME MENU */
.menu-home .logo{
    display: block;
    margin: 50px auto;
}
.menu-home nav.asztali{
    max-width: 500px;
    margin: 0 auto;
}
.menu-home nav{
	max-width: 1200px;
	margin: 0 auto;	
	font-size: 14px;
	font-weight: 500;
}
.menu-home nav.asztali > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	padding: 0;
}
.menu-home nav a{
	text-decoration: none;
	color:white;
}
.cart-icon{
    width: 24px;
    display: block;
    margin: 0;
}
.cart-count {
    width: 20px;
    height: 20px;
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #D92E23;
    border-radius: 50%;
    font-size: 10px;
    transform: translate(22px, -30px);
}

/* MOBIL MENU */
nav.mobil{
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
nav.mobil > div{
    display: flex;
    gap:35px;
    align-items: center;
}
nav.mobil .mobil-button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
}
nav.mobil .mobil-button div {
    width: 100%;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 300ms ease-in-out;
}
nav.mobil .mobil-button.active div {
    transform: rotate(180deg);
    background: transparent;
}
nav.mobil .mobil-button div:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    top: -12px;
    left: 0;
    transition: 300ms ease-in-out;
}
nav.mobil .mobil-button div:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    bottom: -12px;
    left: 0;
    transition: 300ms ease-in-out;
}
nav.mobil .mobil-button.active div:before {
    transform: translateY(12px) rotate(45deg);
}
nav.mobil .mobil-button.active div:after {
    transform: translateY(-12px) rotate(-45deg);
}

.mobil-menu {
    position: fixed;
    width: 100%;
    height: 0;
    background: linear-gradient(140deg, #000000ee 40%, #00000099);
    background-size: 100% 100vh;
    backdrop-filter: blur(6px);
    z-index: 1;
    overflow: hidden;
    transition: 300ms ease-in-out;
}
.mobil-menu.active {
    height: 100vh;
}
.mobil-menu ul {
    list-style: none;
    padding: 0 20px;
    margin: 200px 0 0;
}
.mobil-menu ul li {
    margin: 0 0 20px;
}
.mobil-menu ul li a {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}
.menu-page + .mobil-menu ul {
    margin: 80px 0 0;
}

/* PAGE MENU */
.menu-page {
    width: 100%;
    background: black;
    padding: 20px 0;
    margin: 0;
}
.menu-page .logo{
    display: block;
    margin: 0;
}
.menu-page nav.asztali{
    width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}
.menu-page nav.mobil{
    display: none;
}

.menu-page nav.asztali > ul{
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    padding: 0;
}
.menu-page nav.asztali > ul li{

}
.menu-page nav a{
    text-decoration: none;
    color:white;
}
.header{
	background: linear-gradient(#000000EE 10%, #00000000 100%), url("https://bergdeck.hu/wp-content/uploads/2025/08/header.jpg") center no-repeat;
	min-height: 758px;
	padding: 0 10px;
	box-sizing: border-box;
	color:white;
}
.header > div{
    max-width: 1200px;
    margin: 0 auto;
}
.header h1{
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -6px;
    line-height: 1;
    text-shadow: 0 4px 30px black;
    margin: 0;
    padding: 400px 0 0;
}
.hero2{
    padding: 100px 10px;
}
.hero2 > div{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.hero2 img{
    width: 46%;
    height: auto;
    display: block;
    margin: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0% 100%);
}
.hero2 > div > div{
    width: 50%;
}
.hero2 h3{
    font-size: 30px;
}
.hero3{
    padding: 100px 10px;
}
.hero3 h3{
    text-align: center;
    margin: 0 0 50px;
}
.hero3 > div{
    max-width: 1200px;
    margin: 0 auto;
}
.hero3 .products{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero3 .products li{
    width: calc(25% - 20px);
    position: relative;
}
.hero3 .products .tag-popular{
    background: black;
    color: white;
    padding: 5px 10px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}
.hero3 .products li img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px;
}
.products li .brand{
    color: #aaa;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 0 8px;
}
.hero3 .products li h4,
.woocommerce-loop-product__title{
    font-size: 12px !important;
    font-weight: 400 !important;
    margin: 0 0 8px !important;
    color: black !important;
}


.hero3 .cta{
    margin: 50px auto 0;
}

.hero4{
    padding: 100px 10px;
    background: black;
    color: white;
}
.hero4 > div{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.hero4 img{
    width: 46%;
    display: block;
    margin: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0% 100%);
}
.hero4 > div > div{
    width: 50%;
}
.hero4 p{
    color: #ccc;
}

.hero5{
    padding: 100px 10px;
}
.hero5 h3{
    text-align: center;
    margin: 0 0 10px;
}
.hero5 > p{
    text-align: center;
    margin: 0 0 50px;
}
.hero5 > div{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.hero5 > div .projekt-img{
    width: calc(25% - 20px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero5 > div .projekt-img:nth-child(2),
.hero5 > div .projekt-img:nth-child(6){
    width: calc(50% - 20px);
    aspect-ratio: 580 / 280;
}
.hero5 > div .projekt-img img{
    height: 100%;
    display: block;
    margin: 0;
}
.hero5 > div .projekt-img:nth-child(2) img,
.hero5 > div .projekt-img:nth-child(6) img {
    width: 100%;
    height: inherit;
}

.hero6{
    padding: 100px 10px;
    text-align: center;
}
.hero6 h3{
    text-align: center;
    margin: 0 0 50px;
}
.hero6 > div{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}
.hero6 .block{
    width: 25%;
    margin: 0 0 50px;
    padding: 0 30px;
    position: relative;
}
@media (min-width: 1024px){
    .hero6 .block:nth-child(-n+3):after{
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        border-bottom: 1px dashed #eee;
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
    }
}
.hero6 .block img{
    width: 25px;
    padding: 10px;
    margin: 0 0 15px;
    border-radius: 2px;
    border: 1px solid #eee;
}
.hero6 .block h4{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 5px;
}
.hero6 .block p{
    font-size: 14px;
    margin: 0;
}

.hero7{
    padding: 100px 10px;
    background: black;
    color: white;
    box-shadow: 0 28px 43px 6px #00000066;
    position: relative;
    z-index: 1;
}
.hero7 > div{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.hero7 iframe{
    width: 55%;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 0;
}
.hero7 > div > div{
    width: 41%;
}
.hero7 p{
    color: #ccc;
}

.hero8{
    padding: 0 10px 100px;

}
.hero8 img{
    width: 100%;
    max-width: 1115px;
    display: block;
    margin: 0 auto;
}

footer{
    padding: 100px 10px 10px;
    background: black;
    color: white;
    font-size: 14px;
}
footer > div:first-child{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer p, footer ul, footer a{
    color: #888 !important;
}

footer .logo{
    margin: 0 0 20px;
}
footer .footer-socials{
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0 0;
}
footer .footer-socials img{
    width: 30px;
    display: block;
    margin: 0;
}
footer .links{
    display: flex;
    gap: 40px;
}
footer .links ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .links ul li{
    margin: 0 0 10px;
}
footer .links ul li:first-child{
    font-weight: 600;
    font-size: 16px;
}
footer .links a{
    color: white;
}
.jog{
    max-width: 1200px;
    margin: 150px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    opacity: 0.3;
    font-size: 12px;
}
.jog a{
    color: white;
    text-decoration: underline;
}

@media (max-width: 1023px){
    nav.asztali{
        display: none !important;
    }
    nav.mobil{
        display: flex !important;
    }
    .header {
        min-height: 600px;
    }
    .header h1 {
        font-size: 48px;
        letter-spacing: -5px;
        padding: 330px 0 0;
    }
    .hero2 img,
    .hero2 > div > div,
    .hero4 img,
    .hero4 > div > div,
    .hero7 iframe,
    .hero7 > div > div{
        width: 100%;
        margin: 0 0 20px;
    }
    .hero4 > div{
        flex-direction: column-reverse;
    }
    .hero3 .products li {
        width: 100%;
        margin: 0 0 20px;
    }
    .hero5 > div .projekt-img {
        width: 100% !important;
        margin: 0 0 10px;
    }
    .hero6 .block {
        width: 44%;
        padding: 0 10px;
    }
    footer > div > div{
        width: 100%;
        margin: 0 0 30px;
    }
}