@charset "utf-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; /* Το snap ορίζεται πλέον εδώ */
    overflow-y: scroll; 
}
body {font-family: "sofia-pro", sans-serif;font-weight: 300;font-style: normal;padding: 0;margin: 0;color: #000;font-size: min(0.9vw, 17px);line-height: min(1.35vw, 27px);background-color: #fafafa;}

::backdrop {background-color: #00000088;}

.left-col, .right-col {
    width: 20%;

}

.middle-col {
    flex-basis: 60%;
    flex-grow: 1;

    display: flex;

}

.row {
    display: flex;
    justify-content: space-between;
    gap: 0;
    height: 100vh;
    scroll-snap-align: start;
    border-bottom: 1px solid #929497;
}



img {
    width: 100%;
    height: intrinsic;
}

.mainmenu {
    font-size: min(1.2vw, 18px);
    gap: 2vw;
    display: flex;
    flex-direction: column;
    width: fit-content;
	position:fixed;
	z-index:10;
}
.mainmenu.open {
	background-color:#fafafadd;
}
.mainmenu.open.white {
	background-color: transparent;
}

a {
    text-decoration: none;
    padding-bottom: 0px;
    color: #000;
    position: relative;
    background-image: linear-gradient(to left, #000, #000);
    background-size: 100% 1px; /* Hidden state: width 0, height 2px */
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease-in-out;
	-webkit-tap-highlight-color: transparent;
}
.white a {
    color: #fff;
    background-image: linear-gradient(to left, #fff, #fff);
}

.show-mob-menu img {
    transform: rotate(90deg);
    width: 13px;
	transition: 300ms all ease-in-out;
}

.show-mob-menu a {
    border: 0;
    display: flex;
    padding: 0 7px;
    box-sizing: border-box;
    background: none;
}

.col-padding {
    padding: 4vw 3vw;
    box-sizing: border-box;
}

img.logo-img {
    width: 75%;
    max-width: 270px;
	filter: none;
	transition: 300ms all;
}
.white img.logo-img{
	filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(75deg) brightness(111%) contrast(100%);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: calc(20% - 6vw);
    height: 50px;
    cursor: pointer;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.open .show-mob-menu {
	 opacity: 0;
	 transition: 300ms all ease-in-out;
}
.show-mob-menu, .show-mob-menu.up {
	opacity: 1;
}
.show-mob-menu.up img {
	transform: rotate(-90deg);
}
.white .show-mob-menu.up img, .white .show-mob-menu img {
	opacity:1;
	filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(75deg) brightness(111%) contrast(100%);
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mainmenu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
	max-height: 0px;
	opacity: 0;
	overflow: hidden;
	transition: 300ms all ease-in-out;
}
.mainmenu.open ul {
	max-height: 250px;
	opacity:1;
}

.middle-col-hero {
    position: relative;
    padding: 0 !important;
    display: flex;
    align-items: baseline;
    overflow: hidden;
}

img.hero-photo {
    position: absolute;
    object-fit: cover;
    height: 100%;
}

.left-col {
    border-right: 1px solid #929497;
    text-align: right;
    display: flex;
    justify-content: end;
}

.right-col {
    border-left: 1px solid #929497;
}

.hero-content {
    color: #fff;
    z-index: 1;
    max-width: 300px;
    position: absolute;
    left: 1vw;
    bottom: 1vw;
    font-size: min(1.5vw, 20px);
    line-height: min(1.75vw, 30px);
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

html {
    height: 100%;
}

.row-header .right-col {
    z-index: 1;
    position: absolute;
    right: 0;
    height: 100%;
}

.row-header {
    position: relative;
}

.hero-heading {
    font-size: min(8vw, 120px);
    line-height: min(7vw, 100px);
    margin-bottom: 20px;
}

.left-col-menu {padding-top: 2vw !important;justify-content: flex-start;text-align: left;}

.left-col-title {
    color: #929497;
    font-size: min(1.1vw, 17px);
    line-height: min(1.25vw, 25px);
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 100%;
    max-width: 190px;
	padding-top: 60px;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: min(1.5vw, 25px);
    line-height: min(1.75vw, 35px);
    font-weight: 300;
    color: #000;
}

.controls {
    display: flex;
    gap: 10px;
	padding-top:1vw;
}

.controls a {
    width: 12px;
    border: 0;
    padding: 0 5px;
    display: flex;
    background: none;
    transition: all 0.25s ease-in-out;
}

.prev {
    transform: rotate(180deg);
}

.controls .inactive {
    opacity: 0.35;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 2vw;
	width:100%
}

.tabbed-menu {
    font-size: min(1.5vw, 25px);
    line-height: min(1.75vw, 35px);
    display: flex;
}

.tabbed-menu .item {
    flex-grow: 1;
    padding-left: 1vw;
    border-left: 1px solid #000;
}

.tabbed-menu .item:first-child {
    padding-left: 0;
    border-left: 0;
}

.tabbed-menu .active a {
    opacity: 0.5;
    border-bottom: 0;
}

.about .controls {
    /* position: absolute; */
    margin-top: -2vw;
}



.about-text-space ul li {
    margin-bottom: min(2vw, 20px);
    margin-left: min(2vw, 20px);
}

p {
    padding: 0;
    margin: 0;
    margin-bottom: min(2vw, 20px);
    break-inside: avoid;
}

strong {
    font-weight: 700;
}

.content2columns {
    column-count: 2;
    column-gap: 4vw;
}

.second-col {
    break-before: column;
    column-break-before:always;
}

.person-photo {
    display: flex;
    overflow: hidden;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    background: url(../templateimages/person-disk.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: calc(-50px - 3vw);
    top: -1.45vw;
}

.col-middle {
    display: flex;
    justify-content: end;
    align-items: center;
}

h3 {
    margin: 0;
    padding: 0;
    color: #929497;
    font-size: min(1.5vw, 20px);
    line-height: min(1.75vw, 22px);
    font-weight: 300;
}

.right-person {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: min(0.9vw, 14px);
    line-height: min(1.35vw, 22px);
    position: relative;
    hyphens: auto;
}

.person-photo img {
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(1);
}

.row-real-estate {
    background: url(../templateimages/real-estate.jpg) no-repeat;
    background-position-y: bottom;
    background-size: 120vw;
    background-position-x: center;
}

.portfolio-header {
    background-color: #929497;
    color: #fff;
    padding: 1vw 3vw 1vw 3vw;
    margin-left: -3vw;
    margin-right: -3vw;

    box-sizing: border-box;
}

.portfolio {
    position: relative;
    flex-grow: 1;
    align-content: center;
}

.content3columns {
    column-count: 3;
    column-gap: 2vw;
    column-width: 10vw;
}

.portfolio-items {
/*    display: flex;
    justify-content: space-between;
    gap: 1vw;
    flex-wrap: wrap;*/
    z-index: 2;
    padding: 1vw 0;
    overflow: scroll hidden;
    width: 1028px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}
.portfolio-items-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 1850px;
    gap: 1vw;
}
.portfolio-items .item {
    flex-basis: 20%;
	scroll-snap-align:start;
}

.portfolio-items .controls {
    flex-basis: 100%;
}

.portfolio-header h2 {
    color: #fff;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: min(1.1vw, 17px);
    line-height: min(1.7vw, 27px);
    margin-bottom: 1vw;
}

.porfolio-header-text {
    width: 50%;
    text-align: left !important;
}

.row-private-equity .middle-col {flex-direction: column;padding-bottom: 0;}

.right-col-lifestyle {
    padding: 0 !important;
    display: flex;
}

.right-col-lifestyle img {
    height: 100%;
    object-fit: cover;
    object-position: -3vw;
}

.rows {
    -webkit-scroll-snap-type: y mandatory;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.lifestyle-col-pomelo {
    background: url(../templateimages/project1.jpg) no-repeat;
    height: 100%;
    background-size: cover;
    padding: 3vw;
    box-sizing: border-box;
}

.middle-col-lifestyle {
    padding: 0 !important;
}

.lifestyle-col {
    padding: 4vw 3vw;
    box-sizing: border-box;
}

.left-col-footer {
    /* background: url(../templateimages/bg-footer.jpg) no-repeat; */
    background-size: cover;
    position: relative;
}

.middle-col-footer {
    background-color: #929497;
    color: #fff;
    padding: 6vw 3vw 1vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer-row1 img {
    max-width: 180px;
}

.footer-row1, .footer-row2, .footer-row3 {
    display: flex;
}

.pxws {
    width: 60px;
    border: 0;
    display: flex;
}

.footer-row3 {
    justify-content: space-between;
    align-items: end;
    flex-grow: 1;
}

.footer-row2 {
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 2vw; */
}

.footer-row2 h2 {
    flex-basis: 100%;
    margin-bottom: 10px;
}

.contact-box {
    padding-right: 3vw;
}

.footer-slogan {
    flex-grow: 1;
    text-align: right;
    color: #231f20;
    opacity: 0.3;
    font-size: min(7vw, 120px);
    line-height: min(6vw, 120px);
    margin-top: -1vw;
}

.footer-row1 {
    align-items: flex-start;
}

.footer-row3 a {
    font-size: 13px;
    color: #fff;
    line-height: 16px;
    border-color: #fff;
    background-image: linear-gradient(to left, #fff, #fff);
}

li {
    margin: 0;
    padding: 0;
    break-inside: avoid;
}

.hero-video {
    position: absolute;
    object-fit: cover;
    height: 100%;
}






a:hover {
    background-size: 0% 1px;
}

a.pxws {
    background-image: none;
}

a.next:hover {
    margin-left: 5px !important;
}

a.prev:hover {
    margin-left: -5px;
    margin-right: 5px;
}

.left-col-footer .hero-video {
    z-index: -1;
    width: 100%;
}
.tabitems {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.about-text-space {
    grid-area: 1 / 1 / 2 / 2; /* Τοποθέτηση στο πρώτο κελί */
    visibility: hidden;       /* Κρυφό αλλά κρατάει το χώρο του */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;     /* Για να μην εμποδίζουν τα κρυμμένα κείμενα */
}

/* Το ενεργό κείμενο */
.about-text-space.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

dialog#my-dialog {
    width: 80vw;
    border: 1px solid #000;
    border-radius: 8px;
}
dialog#my-dialog button.close {
	background:transparent;
	border:none;
	position:absolute;
	top: 10px;
	right:10px;
}
dialog#my-dialog button.close::after {
	content:"x";
	background:#000;
	color:#fff;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius:50%;
	cursor:pointer;
}