/*
Theme Name: Arc Studio
Author: Edelo
Version: 1.0
*/

/****************************************
	Reset
****************************************/

/* Change Autocomplete styles in Chrome*/
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
}

@keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

@-webkit-keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

/****************************************
	Color Palette
****************************************/

/* .black-bg {
    background-color: black;
} */

/****************************************
	Typography
****************************************/

@font-face {
	font-family: 'UntitledSans-Regular';
	src: url('./assets/fonts/UntitledSans-Regular.otf') format('opentype'),
		 url('./assets/fonts/UntitledSans-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Aeonik-Regular';
	src: url('./assets/fonts/Aeonik-Regular.otf') format('opentype'),
         url('./assets/fonts/Aeonik-Regular.woff') format('woff'),
		 url('./assets/fonts/Aeonik-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

/****************************************
	Flexbox Helper
****************************************/ 

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-right {
    justify-content: flex-end;
}

.flex-center {
    justify-content: center;
}

.flex-vcenter {
    align-items: center;
}

.flex-start {
    align-content: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.flex-1 {
    flex: 1;
}

.flex-auto {
    flex: 0 1 auto;
}

.flex-bottom {
    align-items: flex-end;
}

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

/****************************************
	Common
****************************************/

* {
    box-sizing: border-box;
}

html,
body {
    color: #EEE7E4;
    background: #443939;
    font-family: 'UntitledSans-Regular';
    height: 100%;
    font-size: 16px;
    margin: 0px;
}

a,
button {
    transition: all 0.3s;
}


a,
a:before,
a:after {
    text-decoration: none;
    cursor: pointer;
    color: #EEE7E4;
}

h1 {
    font-family: 'Aeonik-Regular';
    font-weight: 400;
    font-size: 40px;
    margin: 0px;
}

h2 {
    font-size: 32px;
    margin: 0px;
    font-family: 'Aeonik-Regular';
    line-height: 41.6px;
    letter-spacing: 0px;
    font-weight: 100;
}

p {
    margin: 0px;
}

.section-title {
    font-size: 36px;
    line-height: 41.6px;
    font-family: 'Aeonik-Regular';
}

.button-wrapper {
    position: relative;
    display: block;
    width: fit-content;
}

.button {
    width: fit-content;
    border-radius: 50px;
    border: 1px solid #D6E6FA;
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    cursor: pointer;
    background: rgba(0,0,0,0);
    color: #D6E6FA;
    position: relative;
    z-index: 1;
}

.button-basic-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 50px;
}

.button-wrapper .button-basic-bg:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -.1rem;
    bottom: 0;
    left: -.1rem;
    background-color: #D6E6FA;
    transition: .5s cubic-bezier(.19, 1, .22, 1);
    transition-property: opacity, transform;
    transform: scaleX(0);
    transform-origin: 100% 100%;
}

.button-wrapper.reverse .button-basic-bg:before {
    background-color: #443939;
}

.button-wrapper:hover .button-basic-bg:before,
a:hover .button-wrapper .button-basic-bg:before {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: 0 0;
}

.button-wrapper:hover .button {
    color: #443939;
}

.button.reverse {
    color: #443939;
    background: rgba(0,0,0,0);
    border-color: #443939;
}

.button.reverse:hover,
.button.reverse.selected { 
    background: #443939;
    color: #D6E6FA;
}

.mobile {
    display: none;
}

.container {
    max-width: 100%;
    margin: auto;
    padding: 0 var(--gap);
    position: relative;
}

header {
    padding: 50px 0px;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity .3s cubic-bezier(.165,.84,.44,1);
}

header.hidden {
    opacity: 0;
    z-index: -1;
}

header.scrolling {
    background: #443939;
}

header .brown-logo {
    display: none;
}

header .right-side .links-wrapper {
    gap: 15px 70px;
}

header .right-side .links-wrapper > a {
    font-size: 12px;
} 

header .right-side .links-wrapper > a:hover {
    opacity: 0.75;
}

header .hamburger {
    cursor: pointer;
}

header .hamburger.brown-hamburger {
    display: none;
}

footer {
    background: #D6E6FA;
    color: #443939;
    padding: 59px 0px 47px;
}

footer a {
    color: #443939;
}

footer .left-side {
    max-width: 435px;
    margin-right: 15px;
}

footer .left-side > .button-wrapper {
    margin-top: 40px;
}

footer .right-side a:hover {
    text-decoration: underline;
}

footer .right-side .upper-part a {
    font-size: 12px;
}

footer .right-side .upper-part a:not(:last-child) {
    margin-right: 70px;
}

footer .right-side .lower-part {
    margin-top: 170px;
    gap: 40px;
}

footer .right-side .lower-part a {
    font-size: 13px;
    font-family: 'Aeonik-Regular';
}

body.has-password header,
body.has-password footer {
    display: none !important;
}

.password-wrapper {
    height: 100%;
    width: 100%;
}

.property-row {
    padding-bottom: 53px;
    position: relative;
}

.property-row.hidden {
    display: none;
}

.property-row:hover {
    color: #D6E6FA;
}

.property-row:hover .redirect-button {
    fill: #D6E6FA;
}

.property-row:hover .redirect-button path {
    stroke: #443939;
}

.property-row:not(:last-child) {
    margin-bottom: 53px;
}

.property-row::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #D6E6FA;
}

.property-row .description {
    max-width: 555px;
    min-height: 127px;
    margin-bottom: 17px;
    margin-top: 15px;
    margin-right: 15px;
}

.property-row .tag-column .dot {
    margin-right: 8px;
}

.property-row .tag-column:not(:last-child) {
    margin-right: 50px;
}

.property-row .property-image {
    width: 213px;
    border-radius: 15px;
    height: auto;
    aspect-ratio: 1;
    margin-left: auto;
    object-fit: cover;
    object-position: center;
}

.property-row .redirect-button {
    margin-left: 5.5%;
}

.homepage-wrapper section.sixth-section .featured-prorperties-wrapper .property-row::after {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease-out;
}

.homepage-wrapper section.sixth-section.animate .featured-prorperties-wrapper .property-row::after {
  transform: scaleX(1);
}

/****************************************
	Common
****************************************/

:root {
    --gap: 50px;
}

@media screen and (max-width: 767px) {
    .mobile {
        display: flex;
    }

    .desktop {
        display: none;
    }

    .flex-mobile {
        flex-direction: column;
    }

    html,
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
        line-height: 38.4px;
    }

    h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: normal;
    }

    header {
        padding: 31px 0px;
    }

    header .mobile-nav-menu {
        background: #D6E6FA;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        padding: 31px 0px 0px;
        transition: 0.3s all ease-in-out;
        transform: translateX(100%);
    }

    header.expand .mobile-nav-menu {
        transform: translateX(0%);
    }

    header .mobile-nav-menu .content-wrapper {
        height: 100%;
        width: 100%;
    }

    header .mobile-nav-menu .content-wrapper .mobile-links-wrapper {
        margin-top: auto;
    }

    header .mobile-nav-menu .content-wrapper .mobile-links-wrapper a {
        color: #443939;
        width: 100%;
        display: block;
        font-size: 24px;
        border-top: 1px solid;
        padding: 21px 0 25px;
        font-family: 'Aeonik-Regular';
    }

    footer {
        padding: 48px 0px;
    }

    footer .left-side {
        max-width: unset;
        padding-right: 5px;
        margin-right: 0px;
    }

    footer .left-side > a {
        margin-top: 30px;
    }

    footer .right-side {
        margin-top: 60px;
    }

    footer .right-side .upper-part {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px 45px;
    }

    footer .right-side .upper-part a:not(:last-child) {
        margin-right: 0px;
    }

    footer .right-side .lower-part {
        margin-top: 25px;
        justify-content: flex-start;
        gap: 15px 35px;
    }

    footer .right-side .lower-part a {
        font-size: 12px;
    }

    .property-row {
        flex-direction: column-reverse;
    }

    .property-row:not(:last-child) {
        margin-bottom: 26px;
        padding-bottom: 29px;
    }

    .property-row .property-image {
        margin-left: 0;
        width: 100%;
        margin-bottom: 28px;
    }

    .property-row .left-side h2 {
        font-size: 24px;
        line-height: normal;
    }

    .property-row .description{
        min-height: unset;
        margin-top: 44px;
        max-width: 100%;
        margin-bottom: 25px;
        margin-right: 0px;
    }

    :root {
        --gap: 25px;
    }
}