@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Tenderness';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Tenderness.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    margin: 0px;
    padding: 0px;
    font-family: 'Manrope';
    background-color: var(--background-color);
}

:root{
    --background-color: #f4f4f4;
    --black-color: #000;
    --text-color: #54595f;
}

h1{font-size: clamp(32px, 7vw, 58px);font-weight: 400;font-family: 'Tenderness';}
h2{font-size: clamp(28px, 7vw, 42px);font-weight: 400;}
h3{font-size: clamp(24px, 7vw, 36px);font-weight: 400;}
h4{font-size: clamp(18px, 4vw, 24px);font-weight: 400;}
h5{font-size: clamp(16px, 4vw, 20px);font-weight: 400;}
p{font-size: 16px;line-height: 24px;font-weight: 400;}

.pagewrap{
    width: 100%;
    position: relative;
    padding: 0px 20px;
}

.grid-2-elements{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.grid-3-elements{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


/*Header code starts*/
header{
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 20px 0px;
    background-color: var(--background-color);
    z-index: 11;
}

.header-grid{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 30px;
}

.header-element-left img{
    width: 210px;
}

.header-element-right{
    display: flex;
    gap: 20px;
    justify-content: end;
    align-items: center;
}

.header-element-right .menu ul{
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-element-right .menu ul li a{
    font-size: 28px;
    line-height: 32px;
    font-family: 'Tenderness';
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.2s ease;
}

.header-element-right .menu ul li a:hover{
    color: var(--black-color);
    transition: 0.2s ease;
}

.header-element-right .menu-mobile{
    width: 28px;
    height: 28px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    transition: 0.2s ease;
}

.header-element-right .menu-mobile span{
    width: 28px;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.2s ease;
}

.header-element-right .menu-mobile.active span:nth-child(1){
    transform: translateY(3px) rotate(-45deg);
    transition: 0.2s ease;
}

.header-element-right .menu-mobile.active span:nth-child(2){
    transform: translateY(-4px) rotate(45deg);
    transition: 0.2s ease;
}

.header-element-right .menu-mobile.active span:nth-child(3){
    display: none;
}

.header-element-right .social a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-element-right .social a img{
    width: 28px;
}

/*Header code ends*/

/*Homepage code starts*/
.swiper-element{
    position: absolute;
    top: 94px;
    bottom: 44px;
    left: 0;
    right: 0;
    height: auto;
}

.mySwiper{
    height: 100%;
}

.swiper-element .desktop{
    display: block;
}

.swiper-element .mobile{
    display: none;
}

.swiper-slide{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 700;
    color: var(--background-color);
}

#homepage .title{
    width: 100%;
    position: absolute;
    bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
    z-index: 3;
}

#homepage .title h1{
    color: var(--background-color);
}
/*Homepage code ends*/

/*Archive page code starts*/
#page-archive{
    width: 100%;
    position: relative;
    padding: 120px 0px 80px 0px;
}

.archive-element {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.archive-element .image{
    overflow: hidden;
}
  
.archive-element img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 535/356;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.archive-element a{
    text-decoration: none;
}
  
.archive-element:hover img {
    transform: scale(1.05); /* ελαφρύ zoom στην εικόνα */
}
  
.archive-element .title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background: var(--background-color);
    color: black;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.archive-element .title h4{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Tenderness';
    color: var(--text-color);
}
  
.archive-element:hover .title {
    opacity: 0.7;
    transform: translateY(0);
}
/*Archive page code ends*/

/*Archive inside page code starts*/
.page-inside-archive-content{
    width: 100%;
    position: relative;
    padding: 120px 0px;
}

.archive-inside-content{
    max-width: 800px;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.content-inside-title{
    display: flex;
    flex-direction: column;
    gap: 0px;
    text-align: center;
}

.content-inside-title h2{
    font-family: 'Tenderness';
}

.content-inside{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.content-inside ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-inside{
    max-width: 1280px;
    margin: 100px auto 0px auto;
}
/*Archive inside page code ends*/

/*About page code starts*/
.about-page-inside{
    max-width: 1660px;
    position: relative;
    margin: auto;
    padding: 120px 0px;
}

.about-page-left .super-big-text{
    text-align: center;
}

.about-page-left .super-big-text p{
    font-size: 128px;
    line-height: 128px;
}

.about-page-left .about-content{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.about-page-left .about-links{
    padding-top: 20px;
    text-align: center;
}

.about-page-left .about-form{
    padding-top: 40px;
}

.about-page-left .about-form h4{
    font-family: 'Tenderness';
    padding-bottom: 15px;
}

.about-page-left .about-form .fluentform fieldset{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.ff-el-input--content input,
.ff-el-input--content textarea{
    border-color: var(--black-color)!important;
    border-radius: 0px!important;
    color: var(--black-color);
    font-family: 'Manrope';
    font-size: 14px;
    line-height: 20px;
}

.ff-default textarea{
    min-height: 40px!important;
}

.ff-el-group:last-child{
    grid-column: 1/4;
    margin: 0px;
}

.ff-el-group:last-child button{
    width: 180px!important;
    height: 45px!important;
    border-radius: 0px!important;
    background-color: var(--black-color)!important;
    transition: 0.2s ease;
}

.ff-el-group:last-child button:hover{
    opacity: 0.7;
    transition: 0.2s ease;
}

.about-page-left .about-links ul{
    list-style: none;
    display: flex;
    flex-direction: column;
}

.about-page-left .about-links ul li a{
    color: var(--black-color);
    text-decoration: none;
}

.about-page-left .about-links ul li a:hover{
    opacity: 0.7;
}

.about-page-right{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-right img{
    width: 100%;
    max-width: 550px;
    aspect-ratio: 550/720;
    height: auto;
    object-fit: cover;
}
/*About page code ends*/

/*Footer code starts*/
footer{
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    padding: 10px 0px;
    background-color: var(--black-color);
    z-index: 2;
}

footer p{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--background-color);
}

footer p a{
    color: var(--background-color);
    text-decoration: none;
    transition: 0.2s ease;
}

footer p a:hover{
    opacity: 0.7;
    transition: 0.2s ease;
}

footer .footer-element-right{
    text-align: right;
}
/*Footer code ends*/

/*Overlay code starts*/
#overlay{
    width: 100%;
    height: 0vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background: var(--background-color);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: 1s ease;
}

#overlay.open{
    height: 100vh;
    opacity: 1;
    visibility: visible;
    transition: 1s ease;
}

.overlay-inside{
    width: 100%;
    height: 100%;
    padding: 110px 20px 0px 0px;
}

#overlay .menu-elements ul{
    list-style: none;
}

#overlay .menu-elements ul li a{
    font-size: 32px;
    line-height: 40px;
    font-family: 'Tenderness';
    color: var(--text-color);
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.2s ease;
}

#overlay .menu-elements ul li a:hover{
    color: var(--black-color);
    transition: 0.2s ease;
}

#overlay .information-elements{
    margin-top: 40px;
    padding: 0px 20px;
}

#overlay .information-elements ul{
    list-style: none;
}


#overlay .information-elements ul li,
#overlay .information-elements p,
#overlay .information-elements a{
    color: var(--text-color);
    text-decoration: none;
    transition: 0.2s ease;
}

#overlay .information-elements a:hover{
    color: var(--black-color);
    transition: 0.2s ease;
}
/*Overlay code ends*/

/*Media Query starts*/
@media screen and (max-width:1280px) and (min-width:1119px){
    .header-element-right .menu ul li a{font-size: 28px;line-height: 32px;}
}
@media screen and (max-width:1118px) and (min-width:200px){
    .header-element-right .menu-desktop{display: none;}
    .header-element-right .menu-mobile{display: flex;}
}

@media screen and (max-width:810px) and (min-width:200px){
    .swiper-element .desktop{display: none;}
    .swiper-element .mobile{display: block;}
}

@media screen and (max-width:1322px) and (min-width:1018px){
    .page-archive-content .grid-3-elements{
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
    }
}
@media screen and (max-width:1017px) and (min-width:200px){
    .page-archive-content .grid-3-elements{
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
    }
    .archive-element .title{
        position: relative;
        width: 100%;
        height: auto;
        padding: 10px 0px 0px 0px;
        opacity: 1;
        background-color: transparent;
    }
    .archive-element .title h4{
        justify-content: start;
    }
}
@media screen and (max-width:670px) and (min-width:200px){
    #page-archive{
        padding: 120px 0px;
    }
    .page-archive-content .grid-3-elements{
        grid-template-columns: repeat(1,1fr);
        row-gap: 40px;
    }
    .archive-element .title{
        position: relative;
        width: 100%;
        height: auto;
        padding: 10px 0px 0px 0px;
        opacity: 1;
        background-color: transparent;
    }
    .archive-element .title h4{
        justify-content: start;
    }
}
@media screen and (max-width:760px) and (min-width:200px){
    .archive-element .title h4{font-size: 22px;}
}

@media screen and (max-width:785px) and (min-width:450px){
    .about-page-inside .grid-2-elements{
        grid-template-columns: 1fr;
    }
    .about-page-left{order: 1;}
}

@media screen and (max-width:449px) and (min-width:200px){
    .about-page-inside .grid-2-elements{
        grid-template-columns: 1fr;
    }
    .about-page-left{order: 1;}

    .about-page-left .super-big-text p{
        font-size: clamp(80px, 20vw, 128px);
    }
}

@media screen and (max-width:666px) and (min-width:200px){
    footer .grid-2-elements{grid-template-columns: 1fr;gap: 10px;}
    footer .footer-element-left, footer .footer-element-right{text-align: center;}
}

@media screen and (max-width:600px) and (min-width:200px){
    .about-page-left .about-form .fluentform fieldset{
        display: block;
    }
}
/*Media Query ends*/