/*
Theme Name: PARK LOFTS
Theme URI: https://www.parkloftsparaguay.com
Author: KMD Medien GmbH
Author URI: https://www.kmd.de
Description: PARK LOFTS PY
Version: 1.0
*/


  /*----------------------------------------------------------------------
build in: 07-2025
last-update: 07-2025
copyright: KMD Medien GmbH – www.kmd.de
----------------------------------------------------------------------*/

/*----------------------------------------------------------------------
Fonts
----------------------------------------------------------------------*/

/* montserrat-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-v30-latin-regular.woff2') format('woff2');
    }

/* montserrat-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/montserrat-v30-latin-700.woff2') format('woff2');
    }


/*----------------------------------------------------------------------
colors
----------------------------------------------------------------------*/

:root {
    --pl-black: #000000;
    --pl-white: #FFFFFF;
    --pl-blue: #143C64;
    --pl-darkblue: #0A283C;
    --pl-lightgrey: #F9F7F7;
    --pl-gold: #BEA587;
    --pl-darkgold: #AA8C69;
    }

/*----------------------------------------------------------------------
global structure & normalize
----------------------------------------------------------------------*/

html {
    overflow-x: hidden;
    font-size: 10px;
    }

body {
    margin: 0;
    border: 0 none;
    padding: 0;
    color: var(--pl-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

p, form, img, legend, ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd {
    margin: 0;
    border: 0 none;
    padding: 0;
    }
 
input, textarea, button, input[type="submit"], select {
    margin: 0;
    font: inherit;
    text-transform: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
    }

button, input[type="submit"], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }

textarea {
    overflow: auto;
    }

a {
    color: var(--pl-darkgold);
    text-decoration: underline;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    }

a:hover, a:focus, a:active {
    color: var(--pl-darkblue);
    outline-width: 0;
    text-decoration-style: wavy;
    }

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    }

mark {
    background-color: var(--pl-darkgold);
    color: var(--pl-white);
    padding: 1px 3px;
    border-radius: 5px;
    }

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }

sub {
    bottom: -0.25em;
    }

sup {
    top: -0.5em;
    }
    
strong {
    font-weight: 700;
    }        

small {
    font-size: 1.4rem;
    line-height: 1.5;
    }

.wrapper {
    margin: 0px auto;
    max-width: 1400px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
    }

*, ::after, ::before {
    scroll-behavior: smooth;
    }


/*----------------------------------------------------------------------
Forms
----------------------------------------------------------------------*/

form *,
.su-button {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    }

input[type=button],
input[type=submit] {
    background: transparent;
    outline: 0 none;
    cursor: pointer;
    border: 0;
    display: inline-block;
    line-height: 2;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--pl-white);
    background: url(img/icon-arrow-right.svg) right 10px no-repeat var(--pl-darkgold);
    background-size: auto 25px;
    padding: 5px 35px 5px 10px;
    }

input[type=button]:hover,
input[type=submit]:hover {
    color: var(--pl-white) !important;
    background: url(img/icon-arrow-right.svg) right 10px no-repeat var(--pl-darkblue);
    background-size: auto 25px;
    padding: 5px 40px 5px 10px;
    text-decoration: none;
    text-decoration: none !important;
    outline-width: 0 !important;
    }

.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    }

span.wpcf7-list-item {
    margin: 0 15px 0 0 !important;
    }

.forms-section {
    line-height: 26px;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: calc(100% + 30px);
    }
    
.forms-section select,
.forms-section input[type=text],
.forms-section input[type=email],
.forms-section input[type=date],
.forms-section input[type=file] {
    width: 100%;
    margin: 0 15px 0 0;
    padding: 10px;
    border: 1px solid var(--pl-gold);
    background: transparent;
    color: var(--pl-blue);
    }

.forms-section textarea,
.forms-section textarea:focus,
.forms-section textarea:hover {
    width: 100%;
    margin: 0;
    padding: 10px;
    height: 200px;
    border: 1px solid var(--pl-gold);
    background: transparent;
    }

.forms-section select::placeholder,
.forms-section input::placeholder,
.forms-section textarea::placeholder {
    color: var(--pl-gold);
    }

.forms-sideby {
    margin: 0 30px 0 0;
    width: calc(50% - 30px);
    }
    
.forms-full {
    width: calc(100% - 30px);
    }

input[type=checkbox] {
    width: 20px;
    height: 20px;
    border: 1px solid var(--pl-gold);
    border-radius: 0;
    }    

.wpcf7 form .wpcf7-response-output {
    margin: 30px 0;
	padding: 30px;
    }

a.button-first,
a span.button-first,
span.button-first a {
    display: inline-block;
    line-height: 2;
    text-transform: uppercase;
    color: var(--pl-darkgold);
    background: url(img/icon-arrow-right-gold.svg) right 6px no-repeat;
    background-size: auto 25px;
    padding: 0 30px 5px 0;
    text-decoration: none !important;
    border-bottom: 2px solid var(--pl-darkgold);
    }

a.button-first:hover,
a:hover span.button-first,
span.button-first a:hover {
    color: var(--pl-darkblue) !important;
    background: url(img/icon-arrow-right-blue.svg) right 6px no-repeat;
    background-size: auto 25px;
    padding: 0 35px 5px 0;
    border-bottom: 2px solid var(--pl-darkblue);
    text-decoration: none !important;
    outline-width: 0 !important;
    }

a.button-second,
a span.button-second,
span.button-second a {
    display: inline-block;
    line-height: 2;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--pl-white);
    background: url(img/icon-arrow-right.svg) right 10px no-repeat var(--pl-darkgold);
    background-size: auto 25px;
    padding: 5px 35px 5px 10px;
    }

a.button-second:hover,
a:hover span.second-first,
span.button-second a:hover {
    color: var(--pl-white) !important;
    background: url(img/icon-arrow-right.svg) right 10px no-repeat var(--pl-darkblue);
    background-size: auto 25px;
    padding: 5px 40px 5px 10px;
    text-decoration: none;
    text-decoration: none !important;
    outline-width: 0 !important;
    }
    
    
/*----------------------------------------------------------------------
Header
----------------------------------------------------------------------*/

header * {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    }

.header-items {
    background: var(--pl-darkblue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    transition: all 0.5s;
    }

.scrollUp {
    top: -150px;
    }
 
 .header-items .header-meta {
    color: var(--pl-white);
    display: table;
    width: 100%;
    padding: 20px 0;
    visibility: visible;
    border-bottom: 1px solid var(--pl-white);
    }
 
 .header-items .language-switch {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    }

.language-choose {
    background: url(img/icon-world.svg) left center no-repeat;
    background-size: auto 20px;
    padding: 0 0 0 30px;
    }

 .header-items .meta-contact {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 50%;
    }
 
.header-items .header-meta a {
    color: var(--pl-white);
    text-decoration: none;
    }

.meta-callus {
    background: url(img/icon-phone.svg) left center no-repeat;
    background-size: auto 20px;
    padding: 0 0 0 30px;
    }

.header-items .header-meta a:hover {
    color: var(--pl-gold);
    }
 
 .header-items .header-main {
    display: table;
    width: 100%;
    padding: 40px 0;
    transition: all 0.5s;
    }
 
.header-items .nav-and-info {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    }
    
.header-items nav li {
    display: inline-block;
    position: relative;
    margin: 0 0 -30px 20px;
    }

.header-items nav a {
    color: var(--pl-white);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
    }

.header-items nav a:hover {
    color: var(--pl-gold);
    }

.header-items nav ul ul {
    background-color: var(--pl-blue);
    padding: 0;
    list-style: none;
    position: absolute;
    left: -9999px;
    z-index: 100;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    }

.header-items nav ul ul li {
    border-bottom: 1px solid var(--pl-white);
    display: block;
    text-align: left;
    margin: 0;
    }
 
 .header-items nav ul ul li:last-child {
    border-bottom: 0px;
    }   
    
.header-items nav li:hover ul {
    left: -100%;
    }

.header-items nav ul ul a {
    padding: 10px 10px 10px 15px;
    color: #fff;
    display: block;
    width: 220px;
    margin: 0;
    }
    
.header-items nav ul li:hover ul li a:hover {
    color: var(--pl-gold);
    }

.header-items nav input[type=checkbox],
.header-items nav label {
    display: none;
    }

.header-items nav .current-menu-item a {
    color: var(--pl-gold);
    }

.header-items nav .current-menu-item .sub-menu a {
    color: var(--pl-white);
    border-bottom: 0 solid transparent;
    }

.header-items nav .current-menu-ancestor .current-menu-item a {
    color: var(--pl-gold);
    }

.portal-logo {
    display: table-cell;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    background: url(img/logo-park-lofts-white.svg) left center no-repeat;
    background-size: auto 50px;
    }

.portal-logo a {
    display: block;
    width: 285px;
    height: 50px;
    }

.while-scrolling .header-main {
    padding: 25px 0;
    }

.while-scrolling .header-meta {
    visibility: hidden;
    padding: 0;
    line-height: 0;
    color: transparent;
    border-bottom: 1px solid transparent;
    }

.while-scrolling .header-meta * {
    opacity: 0.2;
    }

.while-scrolling .header-meta a {
    color: transparent !important;
    }

/*----------------------------------------------------------------------
Main
----------------------------------------------------------------------*/

main::before {
    display: block;
    content: "";
    margin-top: 180px;
    padding: 80px 0 0 0;
    }

.main-content h1 {
    font-size: 3.2rem;
    margin: 0 0 30px 0;
    }

.main-content h2 {
    font-size: 3.2rem;
    margin: 0 0 10px 0;
    }

.main-content h3 {
    font-size: 2.4rem;
    margin: 0 0 10px 0;
    }

.main-content h4 {
    text-transform: uppercase;
    color: var(--pl-darkgold);
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    }

.main-content p {
    margin: 0 0 20px 0;
    }

.main-content ul,
.main-content ol {
    margin: 0 0 20px 20px;
    }
    
.main-content img {
    max-width: 100%;
    height: auto;
    }

.main-content .alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
    }

.main-content .alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
    }

.main-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    }

.main-content .hero-opener {
    position: relative;
    background: var(--pl-darkblue);
    background-size: 50% auto !important;
    background-repeat: no-repeat !important;
    background-position: left bottom !important;
    background-attachment: unset !important;
    color: var(--pl-white);
    margin: -240px 0 60px 0;
    padding: 300px 0 140px 0;
    }

.main-content .hero-opener::before,
.main-content .light-ground::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 40px;
    height: 80px;
    background-color: white; /* gleiche Farbe wie Hintergrund */
    transform: rotate(30deg);
    border-top-left-radius: 10px;
    }

.main-content .hero-opener::after,
.main-content .light-ground::after {
    content: "";
    position: absolute;
    bottom: -29px;
    right: 0;
    width: calc(50% - 20px);
    height: 80px;
    background-color: white; /* gleiche Farbe wie Hintergrund */
    border-top-left-radius: 10px;
    }

.main-content .hero-opener h2 {
    font-size: 3.2rem;
    font-weight: 400;
    text-transform: uppercase;
    }

.main-content .hero-opener h2 strong {
    font-size: 4.2rem;
    font-weight: 700;
    }

.main-content .light-ground {
    position: relative;
    background: var(--pl-lightgrey);
    padding: 80px 0;
    }
    
.main-content .is-calltoaction {
    border: 1px solid var(--pl-gold);
    padding: 30px 30px 10px 30px;
    }

.main-content .iframe-container {
    position: relative;
    aspect-ratio: 16 / 7;
    }

.main-content .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    }

.main-content .caption-item {
    border-left: 1px solid var(--pl-darkgold);
    color: var(--pl-darkgold) !important;
    margin: -30px 0 0 0;
    padding: 15px 0 0 15px;
    }


/*----------------------------------------------------------------------
Video
----------------------------------------------------------------------*/

.wp-video,
video.wp-video-shortcode,
.mejs-container,
.mejs-overlay.load {
	width: 100% !important;
	height: 100% !important;
    }
    
.mejs-container {
	padding-top: 56.25%;
    }
    
.wp-video, video.wp-video-shortcode {
	max-width: 100% !important;
    }
    
video.wp-video-shortcode {
	position: relative;
    }
    
.mejs-mediaelement {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    }
    
.mejs-controls {
	display: none;
    }
    
.mejs-overlay-play {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto !important;
	height: auto !important;
    }
    

/*----------------------------------------------------------------------
News
----------------------------------------------------------------------*/

.here-news-items {
    margin: 30px 0 0 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    }

.news-item {
    width: calc(33.3333% - ( 0.66666666666667 * 30px ) );
    position: relative;
    margin-bottom: 30px;
    }

.here-news-items::after {
    content: " ";
    width: calc(33.3333% - ( 0.66666666666667 * 30px ) );
    }

.ni-header {
    width: 100%;
    }

.ni-body {
    margin: 15px 0;
    }

.ni-body h3 {
    margin: 0 0 5px 0;
    }

.single-item-image {
    display: block;
    width: 100%;
    height: 300px;
    }

.news-date {
    opacity: 0.5;
    }

.single-news-main {
    border-bottom: 1px solid var(--pl-gold);
    padding: 0 0 90px 0;
    }

.single-post-image {
    border-radius: 100px;
    width: 200px;
    height: 200px;
    display: block;
    overflow: hidden;
    margin: 90px auto 30px auto;
    }

.single-post-image img {
    width: 150%;
    height: auto;
    display: block;
    margin: -10% 0 0 -25%;
    }

.blog-item-info {
    text-align: center;
    list-style: none;
    }

    
/*----------------------------------------------------------------------
Footer
----------------------------------------------------------------------*/

footer * {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    }

footer {
    background: var(--pl-darkblue);
    color: var(--pl-white);
    position: relative;
    margin: 80px 0 0 0;
    }

footer::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 50%;
    width: 40px;
    height: 80px;
    background-color: white; /* gleiche Farbe wie Hintergrund */
    transform: rotate(30deg);
    border-bottom-right-radius: 10px;
    }

footer::after {
    content: "";
    position: absolute;
    top: -29px;
    left: 0;
    width: calc(50% - 20px);
    height: 80px;
    background-color: white; /* gleiche Farbe wie Hintergrund */
    border-bottom-right-radius: 10px;
    }

footer a {
    color: var(--pl-white);
    text-decoration: none;
    }

footer a:hover {
    color: var(--pl-gold);
    text-decoration: underline;
    text-decoration-style: wavy;
    }

.footer-news-date {
    opacity: 0.5;
    }

footer a:hover .footer-news-date {
    opacity: 1;
    }

footer h2 {
    font-size: 3.2rem;
    line-height: 1.5;
    padding: 0 0 20px 0;
    }

footer h3 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 0 0 20px 0;
    }

footer address {
    padding: 0 0 20px 0;
    font-style: normal;
    }

.footer-main {
    padding: 160px 0 0 0;
    display: flex;
    justify-content: space-between;
    }

.footer-main article {
    width: 25%;
    }

.footer-main article:first-child {
    width: 50%;
    }

.footer-main ul {
    padding: 0;
    margin: 0;
    }

.footer-main li {
    list-style: none;
    }

.footer-button {
    display: inline-block;
    line-height: 2;
    text-transform: uppercase;
    color: var(--pl-gold);
    background: url(img/icon-arrow-right-gold.svg) right 6px no-repeat;
    background-size: auto 25px;
    padding: 0 30px 5px 0;
    border-bottom: 2px solid var(--pl-gold);
    }

.footer-button:hover {
    color: var(--pl-white);
    background: url(img/icon-arrow-right.svg) right 6px no-repeat;
    background-size: auto 25px;
    padding: 0 35px 5px 0;
    border-bottom: 2px solid var(--pl-white);
    text-decoration: none;
    }

.footer-ground {
    padding: 40px 0 80px 0;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

.social-media-links ul {
    margin: 20px 0 0 0;
    }

.social-media-links li {
    list-style: none;
    display: inline-block;
    padding: 0 15px 0 0;
    }

.social-media-links img {
    width: 25px;
    height: 25px;
    }


/*----------------------------------------------------------------------
Small-Desktop
----------------------------------------------------------------------*/

@media only screen and (max-width: 1480px) { 

    .wrapper {
        margin: 0px 30px;
        max-width: 100%;
        }

    .main-content .hero-opener {
        margin: -240px 0 60px 0;
        padding: 160px 0 120px 0;
        }
}


/*----------------------------------------------------------------------
Tablet-Styles (Landscape)
----------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) { 
   
   .wrapper {
        margin: 0px 20px;
        }

    .header-items .nav-and-info {
        line-height: 0;
        }
    
    .header-items nav label {
        background: url(img/icon-menu.svg) no-repeat center center;
        background-size: 30px 30px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        text-align: left;
        font-size: 0;
        line-height: 0;
        font-weight: 700;
        }

    .header-items nav label:hover {
        background: url(img/icon-menu.svg) no-repeat center center;
        }
    
    .header-items nav div ul {
        display: none;
        margin: 0 0 0 0;
        line-height: 1.5;
        }

    .header-items nav div ul li {
        letter-spacing: inherit;
        }    
    
    .header-items nav div ul li a {
        text-decoration: none;
        padding: 10px 0;
        display: block;
        }
    
    .header-items nav input[type=checkbox]:checked ~ label {
        background: url(img/icon-close.svg) no-repeat center center;
        background-size: 30px 30px;
        }

    .header-items nav input[type="checkbox"]:checked ~ label:hover {
        transform: rotate(180deg);
        }

    .header-items nav input[type=checkbox]:checked ~ div ul {
        display: block;
        position: absolute;
        z-index: 101;
        background-color: var(--pl-darkblue);
        height: 110vh;
        width: 100%;
        overflow: auto;
        right: 0;
        text-align: left;
        margin-top: 25px;
        }

    .header-items nav input[type=checkbox]:checked ~ div ul ul::before {
        left: 0;
        top: 0;
        border-left: 0 none;
        border-right: 0 none;
        border-bottom: 0 none;
        }

    .header-items nav input[type=checkbox]:checked ~ div ul li {
        display: block;
        margin: 0 20px;
        }

    .header-items nav input[type=checkbox]:checked ~ div ul li a {
        font-weight: 700;
        background: transparent;
        margin: 0;
        }

    .header-items nav input[type=checkbox]:checked ~ div ul li a {
        display: block;
        }

    .header-items nav input[type=checkbox]:checked ~ div ul ul.sub-menu {
        background: transparent;
        position: relative !important;
        left: 20px;
        margin: 0;
        display: block;
        height: auto;
        }
    
    .header-items nav input[type=checkbox]:checked ~ div ul ul.sub-menu li {
        padding: 0;
        margin: 0;
        background: transparent;
        border: 0;
        }

    .main-content .hero-opener {
        background-size: 90% auto !important;
        margin: -240px 0 60px 0;
        padding: 180px 0 80px 0;
        }

    .here-news-items {
        margin: 30px 0 0 0;
        display: block;
        }
    
    .news-item {
        width: 100%;
        margin-bottom: 30px;
        }

    .footer-main {
        padding: 120px 0 0 0;
        display: block;
        }
    
    .footer-main article,
    .footer-ground article {
        margin: 0 0 40px 0;
        }
    
    .footer-main article,
    .footer-main article:first-child {
        width: 100%;
        }

    .footer-main ul {
        border-bottom: 1px solid var(--pl-white);
        }

    .footer-main li a {
        display: block;
        padding: 5px 0;
        border-top: 1px solid var(--pl-white);
        }

    .footer-ground {
        padding: 0 0 20px 0;
        display: block;
        }
}

/*----------------------------------------------------------------------
Mobile-Styles
----------------------------------------------------------------------*/

@media only screen and (max-width: 700px) { 

    html {
        font-size: 9px;
        }

   .wrapper {
        margin: 0px 15px;
        }

    .portal-logo {
        background-size: auto 35px;
        }
    
    .portal-logo a {
        display: block;
        width: 200px;
        height: 35px;
        }

    .main-content .hero-opener {
        background-size: 90% auto !important;
        padding: 180px 0 120px 0;
        }

    .main-content .hero-opener p,
    .main-content .hero-opener h2 {
        text-align: left !important;
        }

}
