/*--------------------------------------------------
Variables
--------------------------------------------------*/

:root{
    --global-border-radius: 4px;
}

body,
html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------
Custom
--------------------------------------------------*/

/*--------------------------------------------------
General
--------------------------------------------------*/
a {
    font-size: inherit;
}
.is-hidden {
    display: none;
}
.wp-block-section {
	padding: 80px 48px;
}

.is-relative{
    position: relative;
}

.extra-margin{
    margin-left: 48px;
    margin-right: 48px;
}


.has-text-transform-uppercase{
    text-transform:uppercase;
}

.trp-language-switcher {
    z-index: 10 !important;
}

/*--------------------------------------------------
Navigation
--------------------------------------------------*/

/* Navigation Styles */

.wp-block-template-part.header-dark .wp-block-navigation__responsive-container-open svg rect {
    fill: var(--wp--preset--color--black);
    color: var(--wp--preset--color--black);
}

.wp-block-navigation__responsive-container-close svg{
    width: 60px;
    height: 60px;
    margin-top: 84px;
    margin-right: 25px;
}

.wp-block_navigation nav.wp-block-navigation a {
  transition: color 0.3s ease;
  margin-top: 31px;
}

.wp-block_navigation nav.wp-block-navigation a:hover {
  color: var(--wp--preset--color--blue) !important;
}

nav.wp-block-navigation ul {
    text-align: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  border: 40px solid var(--wp--preset--color--orange);
  pointer-events: none;
  z-index: 9999;
  box-sizing: border-box;
}

header{
    position: absolute;
    top: 60px;
    z-index: 1000;
    width: 100%;
}

.wp-block_navigation nav{
    position:fixed;
    right: 64px;
}

header svg{
    fill: black;
}

.wp-block-navigation__responsive-container-open svg{
    height: 80px;
    width: 80px;
}

.wp-block-site-logo.is-default-size img {
    width: 264px;
}

@media (max-width: 768px) {

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        border: 24px solid var(--wp--preset--color--orange);
        pointer-events: none;
        z-index: 9999;
        box-sizing: border-box;
    }
        
   .wp-block_navigation nav{
        position:fixed;
        right: 55px;
    }
   .wp-block-navigation__responsive-container-content {
    gap: 24px !important;
   }
   .wp-block-site-logo.is-default-size img {
        width: 164px;
    }
   .wp-block-navigation__responsive-container-open svg{
        height: 50px;
        width: 50px;
    }
    .wp-block-navigation__responsive-container-close svg{
        width: 40px;
        height: 40px;
        margin-top: 78px;
        margin-right: 12px;
    }
    .wp-block-navigation__container {
        gap: 10px;
        top: 60px;
    }

}

/*--------------------------------------------------
Hero
--------------------------------------------------*/

/* Hero Styles */



@media (min-width: 1440px) {
    .wp-hero-content-block{
        width: 30%;
    }
}

/*--------------------------------------------------
Buttons
--------------------------------------------------*/

/* Button Styles */
.wp-block-button .wp-block-button__link {
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
}
.is-style-action .wp-block-button__link {
    background-color: var(--wp--preset--color--black);
    border: 1px solid var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
}
.is-style-outline .wp-block-button__link {
    background-color: transparent;
    color: var(--wp--preset--color--black);
    border: 1px solid var(--wp--preset--color--black);
}
.is-style-text .wp-block-button__link {
    background-color: transparent;
    color: var(--wp--preset--color--black);
    border: 1px solid transparent;
}

/* Button Hover Styles */
.wp-block-button .wp-block-button__link:hover{
    background-color: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
}
.is-style-action .wp-block-button__link:hover{
    background-color: var(--wp--preset--color--blue);
    color: var(--wp--preset--color--white);
}
.is-style-outline .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--black);
}
.is-style-text .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--blue);
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--blue);
}

/* Button General */
.wp-block-button a {
    transition: all 0.1s ease-in-out;
}
.wp-block-button__link.wp-element-button{
    border-radius: 0px;
}

/*--------------------------------------------------
Details
--------------------------------------------------*/
details {
    border-radius: var(--global-border-radius);
    border: 1px solid #202020;
}
details summary {
    display: block; /* Hide summary's ::marker pseudo-element */
    cursor: pointer;
    transition: margin 0.2s ease-out;
    padding: 32px;
}
details summary::-webkit-details-marker {
    display: none; /* Hide marker in Safari */
}
details summary::after,
details[open] summary::after {
    font-family: "Material Symbols Outlined";
    vertical-align: middle;
    float: right;
    padding: 14px 16px;
    border-radius: var(--global-border-radius);
    background: #000;
    color: #fff;
    margin-top: -14px;
}
details summary::after {
    content: "\e313";
}
details[open] summary::after {
    content: "\e316";
}
details p {
    padding: 0 32px 32px 32px;
    margin-top: 0;
}
details summary:hover {
    color: #000
}
details[open] summary ~ * {
    animation: sweep 0.3s ease-in-out;
}
@keyframes sweep {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Details Responsive */

@media (max-width: 479px) {
    details summary::after {
        display: none !important;
    }
}

/*--------------------------------------------------
Contact Form 7 – Contact Section
--------------------------------------------------*/
.wpcf7-form {
	max-width: 760px;
	color: #0b2b37;
	font-size: 24px;
	line-height: 1.4;
    border-top: 2px solid #0b2b37;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .wpcf7-form {
        font-size: 16px;
    }
}


.wpcf7-form p {
	margin: 0 0 16px;
}

.wpcf7-form label {
	font-weight: 500;
	letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #0b2b37;
}

@media (max-width: 768px) {
    .wpcf7-form label{
        display: block;
    }
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form-control:not(.wpcf7-submit),
.wpcf7-select,
.wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label {
	font: inherit;
}

.wpcf7-form-control:not(.wpcf7-submit),
select,
textarea {
	width: 100%;
	border: none;
	border-radius: 0;
	background: transparent;
	padding: 14px 0 12px;
	color: #0b2b37;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

textarea.wpcf7-form-control {
	resize: vertical;
    height: 16px;
}

.wpcf7-form-control::placeholder {
	color: rgba(11, 43, 55, 0.5);
}

.wpcf7-form-control:focus,
.wpcf7-form-control:active {
	outline: none;
	border-bottom-color: #000;
}

.wpcf7-form-control:disabled,
.wpcf7-form-control[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
	border-bottom-color: rgba(11, 43, 55, 0.4);
}

.wpcf7-form-control:autofill,
.wpcf7-form-control:-webkit-autofill {
	box-shadow: 0 0 0px 1000px transparent inset;
	-webkit-text-fill-color: #0b2b37;
}

.wpcf7-form-control.wpcf7-not-valid {
	border-bottom-color: #c2392b;
}

.wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 18px;
	color: #c2392b;
	font-weight: 500;
}

.wpcf7-list-item {
	margin: 0 32px 16px 0;
	display: inline-flex;
	align-items: center;
}

.wpcf7-list-item input[type="checkbox"],
.wpcf7-list-item input[type="radio"],
.wpcf7-acceptance input[type="checkbox"] {
	appearance: none;
	width: 20px;
	height: 10px;
	border: 1px solid #0b2b37;
	border-radius: 2px;
	margin-right: 10px;
	position: relative;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.wpcf7-list-item input[type="radio"] {
	border-radius: 50%;
}

.wpcf7-list-item input[type="checkbox"]:checked,
.wpcf7-acceptance input[type="checkbox"]:checked {
	background: #0b2b37;
	border-color: #0b2b37;
}

.wpcf7-list-item input[type="radio"]:checked {
	border-width: 6px;
	border-color: #0b2b37;
}

.wpcf7-list-item input[type="checkbox"]:disabled,
.wpcf7-list-item input[type="radio"]:disabled,
.wpcf7-acceptance input[type="checkbox"]:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.wpcf7-form-control.wpcf7-file {
	border: 2px dashed #0b2b37;
	padding: 18px 24px;
	font-size: 16px;
}

.wpcf7-form .required-note {
	text-align: right;
	font-size: 14px;
	color: #0b2b37;
}

.wpcf7-submit {
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	border: none;
	border-radius: 0;
	padding: 16px 48px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
	display: inline-block;
    margin-top: 16px;
}

.wpcf7-submit:hover {
	background: var(--wp--preset--color--blue);
}

.wpcf7-submit:active {
	transform: translateY(1px);
}

.wpcf7-submit:disabled {
	background: rgba(0,0,0,0.4);
	cursor: not-allowed;
}

.wpcf7-spinner {
	margin-left: 20px;
}

.wpcf7-response-output {
	margin-top: 32px;
	border-width: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
}

.wpcf7-response-output[data-status="sent"] {
	color: #1e7c2f;
}

.wpcf7-response-output[data-status="invalid"],
.wpcf7-response-output[data-status="validation_failed"],
.wpcf7-response-output[data-status="aborted"] {
	color: #c2392b;
}

.wpcf7-response-output[data-status="spam"],
.wpcf7-response-output[data-status="mail_failed"] {
	color: #b35f00;
}

@media (min-width: 768px) {
	.wpcf7-form .wpcf7-form-control-wrap.inline-field {
		width: calc(50% - 24px);
		float: left;
	}

	.wpcf7-form .wpcf7-form-control-wrap.inline-field:nth-of-type(2n) {
		margin-left: 48px;
	}

	.wpcf7-form p:after {
		content: '';
		display: block;
		clear: both;
	}
}

.contact-form__submit-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------------------------------------------
Custom Card styles
--------------------------------------------------*/


.card-custom {
    display: flex;
    flex-direction: column; 
    background: #ffffff;
    height:100%;

}

.card-custom__content {
    padding: 32px 32px 8px  32px;

    .card-custom__heading {
        margin: 0;
    }
}

.card-custom__figure {
    margin: 0;
}

.card-custom__image {
    aspect-ratio: 4/3;
    display: block;
    width: 100%;
    height:auto;
    object-fit: cover;
}

.card-custom__button-wrapper {
    margin-top: auto;
    padding: 8px 32px 32px 32px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.wp-block-blocks-card{
    height:100%;
}

/*--------------------------------------------------
'PAR' SVG styles
--------------------------------------------------*/

/* 'PAR' SVG Styles */

/*P letter*/
 .wp-par-svg-p{
    z-index: 0;
    position: absolute;
    bottom: -320px;
    right: -44px;
}
/*A letter*/
 .wp-par-svg-a{
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
 }

 .wp-par-svg-a-content{
    width: 30%;
 }

  .wp-par-svg-content{

 }

@media (max-width: 1024px) {
    .wp-par-svg-a{
        position: absolute;
        z-index: 1;
        bottom: 0;
        right: 0;
    }

    .wp-par-svg-a-content{
    width: 80%;
    }
}

/*R letter*/
.wp-par-svg-r{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
@media (min-width: 1024px) {
    .PAR-R-svg-spacing{
    padding: 220px 48px;
    }
}

/*bottom rectangle svg*/
.wp-par-svg-rectangle{
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.wp-par-svg-content{
    z-index: 20;
    position: relative;
}

/*--------------------------------------------------
Custom Responsive
--------------------------------------------------*/
@media (max-width: 768px) {
    .is-mobile-column{
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 1024px) {
    /* Small desktop styles */
}
@media (max-width: 768px) {
    /* Tablet styles */
}
@media (max-width: 479px) {
    /* Mobile styles */
}