:root {
    --font-size-base: 16px;
    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-dark-grey: #2B2B2B;
    --clr-light-grey: #F7F7F9;
    --clr-light-grey2: #DfD7D2;
    --clr-orange: #EC753D;
    --clr-dark-orange: #D8612B;
    --clr-purple: #492778; 
    --ff-quicksand: 'Quicksand', sans-serif;
    --ff-marcellus: 'Marcellus', sans-serif;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    font-size: var(--font-size-base);
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
    font-family: var(--ff-quicksand);
    color: var(--clr-dark-grey);
    font-weight: 500;
    background-color: #fff;
    line-height: 1.5;
}

a {
    color: var(--clr-purple);
    text-decoration: none;
    transition: .3s;
}

a:hover {
	color: var(--clr-black);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-marcellus);
	font-weight: normal;
}

.ff-marcellus {
    font-family: var(--ff-marcellus);
    font-weight: normal;
}

.ff-quicksand {
    font-family: var(--ff-quicksand);
    font-weight: normal;
}

.rotate {
    display: inline-block;
    animation: rotating 2s linear infinite;
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
    Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 1rem;
    bottom: 3.2rem;
    z-index: 996;
    background: var(--clr-orange);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top span {
    font-size: 1.6rem;
    color: var(--clr-dark-grey);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--clr-dark-orange);
    color: var(--clr-dark-grey);
    text-decoration: none;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
    Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
    HEADER
--------------------------------------------------------------*/
header {
	background-color: var(--clr-purple);

}
.header-logo {
	width: clamp(3.4375rem, 2.7232rem + 3.5714vw, 5.9375rem);
}

.navbar-brand-company {
	color: var(--clr-orange);
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 1rem;
	font-size: clamp(1rem, 0.8286rem + 0.8571vw, 1.6rem);
	line-height: 2rem;
}

.navbar-brand-company a {
    color: var(--clr-orange);
}

.navbar-brand-company a:hover {
    color: var(--clr-dark-orange);
    text-decoration: none;
}

/*--- NAVBAR ---*/

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

nav.navbar {
	margin: 2rem 0;
}
div#navbarNav {
	/*margin-left: 4.5rem;*/
	font-weight: 500;
}
div#navbarNav ul.navbar-nav li.active {
	text-transform: uppercase;
}
div#navbarNav ul.navbar-nav li a {
	color: var(--clr-orange);
	white-space: nowrap;
}
div#navbarNav ul.navbar-nav li a.nav-link:hover {
	color: var(--clr-dark-orange);
	text-decoration: none;
}
div#navbarNav ul.navbar-nav li {
	margin-left: clamp(0.1rem, -4.1071rem + 6.7857vw, 2rem);
}
button.navbar-toggler span {
	font-size: 2rem;
	color: var(--clr-orange);
    transition: .3s;
}

button.navbar-toggler span:hover {
    color: var(--clr-dark-orange);
}

.dropdown-toggle::after {
    display:none;
}
.dropdown-menu {
	top: auto !important;
	left: auto !important;
}

#dismiss {
	font-size: 2rem;
	color: var(--clr-dark-grey);
	padding: 0 !important;
    text-decoration: none;
}
#dismiss:hover {
	text-decoration: none;
	color: var(--clr-black);
}

.subnav {
	font-weight: 600;
	border-radius: 0;
	background-color: var(--clr-light-grey);
	text-align: center;
	border: 0;
	-webkit-box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.25);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content:"";
    position:absolute;
    left:0;
    bottom:5px;
    width:0;
    height:1px;
    background: var(--clr-orange);
    transition: width .3s ease;
}

.nav-link:hover::after {
    width:100%;
}

/* MOBILE SIDEBAR MENU */
@media (max-width: 991px) {

    #navbarNav {
        position: fixed;
        top: 0;
        width: 320px;
        right: -320px;
        height: 100vh;
        background: var(--clr-light-grey);
        z-index: 1050;
        transition: right .35s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,.15);
    }

    #navbarNav.show {
        right: calc(60px - (60 * (100vw - 320px) / (992 - 320)));
    }

    #navbarNav ul.navbar-nav {
        padding: 2rem;
        flex-direction: column;
    }

    #navbarNav li {
        padding: 0 2rem 0 0 !important;
        margin: 0 0 1rem 0 !important;
    }

    #navbarNav .dropdown-menu {
        max-width: 80%;
    }

}

/*-----------------------------------
    MAIN
-----------------------------------*/
main {
    padding: 0 !important;
    margin: 0 !important;
}

/*-----------------------------------
    MAIN SECTIONS
-----------------------------------*/
#hero, #services, #contact {
    background-color: var(--clr-light-grey2);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
}

/*-----------------------------------
    SECTION HOME STAGING
-----------------------------------*/
#home-staging {
    background: linear-gradient(to bottom, var(--clr-white) 0%, var(--clr-white) 75%, var(--clr-light-grey2) 75%, var(--clr-light-grey2) 100%);
}

.home-staging-title {
    font-weight: 700;
    padding: 2rem 0px 1rem;
}

.home-staging-inner-box {
    background-color: var(--clr-light-grey);
}

#home-staging .icon {
    font-size: 5rem;
    color: var(--clr-purple);
}

/*-----------------------------------
    SECTION SERVICES
-----------------------------------*/
.service-block {
    border-top: 2px solid var(--clr-dark-grey);
    border-bottom: 2px solid var(--clr-dark-grey);
}

.service-block p {
    font-weight: 700;
}

.service-icon {
    font-size: 5rem;
    color: var(--clr-dark-grey);
}

/*-----------------------------------
    SECTION PORTFOLIO
-----------------------------------*/
.hr {
    width: 100%;
    height: 10px;
    margin: 30px 0;
    background: #dfd7d2; /* Old browsers */
    background: -moz-linear-gradient(left,  #dfd7d2 0%, #ffffff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#dfd7d2), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  #dfd7d2 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  #dfd7d2 0%,#ffffff 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  #dfd7d2 0%,#ffffff 100%); /* IE10+ */
    background: linear-gradient(left,  #dfd7d2 0%,#ffffff 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfd7d2', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */    
}

/*-----------------------------------
    SECTION CONTACT
-----------------------------------*/
.btn-chs {
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--clr-dark-grey);
    color: #000;
    border-radius: 0 !important;
    padding: 15px 30px;
}
.btn-msg-chs {
    text-transform: uppercase;
    font-weight: 600;
    border: 0;
    color: var(--clr-dark-grey);
    border-radius: 0 !important;
    padding: 25px 45px;
    background-color: var(--clr-light-grey);
    letter-spacing: 1px;
}
.btn-msg-chs:hover {
    color: var(--clr-white);
    background-color: var(--clr-dark-grey);
    text-decoration: none;
}
.chs-input {
    border-radius: 0 !important;
    border: 0 !important;
    padding: 30px;
    font-weight: 600;
}
textarea.chs-input:focus, input.chs-input:focus {   
    border-color: rgba(51, 51, 51, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 51, 51, 0.6);
    outline: 0 none;
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

.big-checkbox {
    width: 2rem;
    height: 2rem;
}


/*-----------------------------------
	FOOTER
-----------------------------------*/
footer {
	background-color: var(--clr-dark-grey);
	color: var(--clr-light-grey);
}
footer a {
	color: var(--clr-white);
}
footer a:hover {
	color: var(--clr-orange);
	text-decoration: none;
}
footer a.brand {
	color: var(--clr-white);
}
footer a.brand:hover {
	color: var(--clr-orange);
	text-decoration: none;
}
footer .footer-social {
	font-size: 2.6rem;
}
footer .footer-logo span {
    font-size: 8rem;
}
footer .footer-brand {
    color: var(--clr-white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: left;
}
.copyright {
    background-color: #1C1C1C;
    text-align: center;
    font-size: .8rem;
    color: var(--clr-light-grey);
}
.copyright a {
    color: var(--clr-light-grey);
}
.copyright a:hover {
    color: var(--clr-orange);
    text-decoration: none;
}


/*-----------------------------------
    PRIVACY
-----------------------------------*/
.privacy {
    padding: 60px 20px;
    background: #f9f9f9;
}

.privacy .container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Fő cím */
.privacy h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Szekciók */
.privacy-section {
    margin-bottom: 3rem;
}

/* Alcímek */
.privacy h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #c9a46c;
    padding-left: 1rem;
}

/* Szöveg */
.privacy p {
    line-height: 1.7;
    color: #444;
}

/* Lista */
.privacy ul {
    padding-left: 1rem;
}

.privacy li {
    margin-bottom: .5rem;
}

/* Kiemelések */
.privacy strong {
    color: #000;
}


/*-----------------------------------
    ERROR PAGE
-----------------------------------*/
#error-page {
    height: 50vh;
}