
/*=============================================
=            Main comment block            =
=============================================*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Archivo Black', sans-serif;
}

:root {
    --black: #040201;    ;
    --orange: #FFA500;
    --white: #ffffff;
}

.button{
    background-color: var(--orange);
    padding: 15px 32px;
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.button:hover {
    text-decoration: none;
    color: var(--orange);
    background-color: var(--black);
    border: 1px solid var(--orange);
}

.button2{
    background-color: var(--black);
    padding: 15px 32px;
    color: var(--orange);
    text-decoration: none;
    transition: 0.3s;
}

.button2:hover {
    text-decoration: none;
    color: var(--white);
    background-color: var(--orange);
    border: 1px solid var(--black);
}

.section-title {
    color: var(--orange);
    font-size: 48px;
    margin: 0 40px;
    padding: 20px 0
}

#topgo {
    min-width: inherit;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--orange);
    color: var(--white);
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: all .3;
    border: 1px solid var(--black);
  }

  #topgo:hover{
      background-color: var(--black);
      border: 1px solid var(--orange);
  }

/*=====  End of Section top block  ======*/

/*=============================================
=            Section top block            =
=============================================*/

nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
	font-family: 'Montserrat', sans-serif;
	padding: 0 5%;
	height: 100px;
	background-color: rgb(4,2,1, 0.5);
}
nav .logo {
	float: left;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #fff;
}
nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 60%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}

/*=====  End of Section menu block  ======*/



/*=============================================
=            Section top block            =
=============================================*/



.main-img {
    background: url('/images/main1.jpg');
}

.main-box {
    max-height: 100%;
    margin: 100px 0;
    background-color: rgb(4,2,1, 0.5);
}

.main-title {
    color: var(--white);
    font-size: 64px;
    padding: 30px 0;
}

.main-title-alt {
    color: var(--white);
    font-size: 32px;
    padding-bottom: 20px
}

.main-button{
    padding: 20px 0 40px 0
}


/*=====  End of Section top block  ======*/


/*=============================================
=            Section description block            =
=============================================*/

.desc-bg {
    background-color: var(--black);
    height: 100%;
}

#description hr {
    color: var(--orange)
}

.desc-box {
    display: none;
}

@keyframes example {
    from {opacity: 0;}
    to {opacity: 1;}
}

#description .active{
    animation-name: example;
    animation-duration: 4s;
    display: block;
}

.desc-img, .desc-desc {
    padding: 40px;
    
}

.desc-desc {
    color: var(--white);
    text-align: justify;
    font-size: 25px
}

.desc-desc .button {
    margin: 20px
}

.pictures h3, .pictures p{
    color: #ffffff;
}

#images li{
    display: inline;
}

#images li img{
   width: 5%;
   margin: 15px;
    cursor: pointer;
}


.pagination {
    display: block;
    text-align: center;
    padding: 10px 0 20px 0
}

.pagination span {
    color: var(--orange);
    text-transform: uppercase;
    cursor: pointer;
    margin: 0 40px;
}

.pagination span .active {
    color: var(--white);
}



/*=====  End of Section description block  ======*/


/*=============================================
=            Section prices block            =
=============================================*/

#prices {
    background-color: var(--orange);
    color: var(--black)
}

#prices .section-title {
    color: var(--black);
}

#prices hr {
    color: var(--black)
}

.calc-error {
    border-color: red;
    background: rgb(255,0,0, 0.5)
}

#error {
    color: red;
}


/*=====  End of Section prices block  ======*/

/*=============================================
=            Section contact block            =
=============================================*/


#contact {
    background-color: var(--black);
}

#contact hr {
    color: var(--white)
}

.contact-details {
    color: var(--white);
    margin: auto 0
}

.contact-details i {
    font-size: 20px
}

.contact-details ul {
    margin: 30px 0
}

.contact-details ul li {
    text-decoration: none;
    list-style: none;
    margin: 20px 0
}

.contact-details > a {
    margin-top: 20px!important
}

/*=====  End of Section contact block  ======*/

/*=============================================
=            Section footer block            =
=============================================*/

footer {
    text-align: center;
    color: var(--black);
    background-color: var(--orange);

    bottom: 0;
    width: 100%;
    padding: 20px 0
}

footer p {
    margin: 0
}

footer a {
    text-decoration: none;
    color: var(--black)
}

footer a:hover {
    color: var(--black);
    text-decoration: underline;
}

/*=====  End of Section footer block  ======*/

/*=============================================
=            Section mobile-resp block       =
=============================================*/

@media screen and (max-width: 992px){
    
    #images li img{
        width: 15%;
        margin: 5px;

    }

    .desc-desc{
        text-align: justify;
    }

    table input{
        width: 60%
    }

    .button {
        font-size: 17px;
    }

    .main-title{
        font-size: 44px;
    }

    .main-title-alt {
        font-size: 24px;
    }

    .pagination {
        display: grid;
    }

    #contact > .container-fluid > .row > div{
        margin: 30px 0;
        text-align: center;
    }

    @media screen and (max-width: 768px) {
        nav .logo {
            float: none;
            width: auto;
            justify-content: center;
            font-size: 1em
        }
        nav .links {
            float: none;
            position: fixed;
            z-index: 9;
            left: 0;
            right: 0;
            top: 100px;
            bottom: 100%;
            width: auto;
            height: auto;
            flex-direction: column;
            justify-content: space-evenly;
            background-color: rgba(0,0,0,.8);
            overflow: hidden;
            box-sizing: border-box;
            transition: all .5s ease-in-out;
        }
        nav .links a {
            font-size: 20px;
        }
        nav :checked ~ .links {
            bottom: 0;
        }
        nav .icon-burger {
            display: block;
        }
        nav :checked ~ .icon-burger .line:nth-child(1) {
            transform: translateY(10px) rotate(225deg);
        }
        nav :checked ~ .icon-burger .line:nth-child(3) {
            transform: translateY(-10px) rotate(-225deg);
        }
        nav :checked ~ .icon-burger .line:nth-child(2) {
            opacity: 0;
        }
        
    }
    
    .youtube-link {
        position: fixed;
        left: 20px;
        bottom: 20px;
        color: #000;
        text-decoration: none;
        font-size: 12px;
    }
}

/*=====  End of Section mobile-resp block  ======*/

/*
  TODO: mobil optimalizációt meg kell csinálni.
*/

/*
  TODO: Menü kell csinálni
*/

/*
  TODO: main kép csere, mert nem parketta!!
*/