/*
Theme Name: SeaStyle
Theme URI: https://www.graphilandia.it/
Description: Il tema di SeaStyle
Version: 1.0
Author: Graphilandia
Author URI: https://www.graphilandia.it/
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root{
    /*--blue: #13131F;*/
    --blue: #0b131f;
    --dark-blue: #0d0d14;
    --light-blue: #1e1e30;

    --light-alfa-blue: #1e1e30d0;

    --gold: #d8a27a;
    --dark-gold: #bd885f;
    --light-gold: #e4af87;

    --header-desk-height: 90px;
    --header-mob-height: 90px;

    
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
}
  
::-webkit-scrollbar-track {
    background: var(--light-blue);
}
  
::-webkit-scrollbar-thumb {
    background: var(--light-gold);
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}
/* /SCROLLBAR */

/* GENERAL */
.custom-body{
    background-color: var(--blue) !important;
}

.ms_page-wrapper *, .custom-header *{
    font-family: "Lexend Deca", sans-serif !important;
}

.ms_page-wrapper{
    overflow-x: hidden;
}

.op-0{
    opacity: 0;
}

.text-blue{
    color: var(--blue);
}

.text-gold{
    color: var(--gold);
}

.text-white{
    color: rgb(216 216 216) !important;
}

.bg_blue{
    background-color: var(--blue);
}

.bg_gold{
    background-color:var(--gold);
}

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

.shape-divider-blue{
    fill: var(--blue);
}

.shape-divider-gold{
    fill: var(--gold);
}

.ms_section{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media screen and (max-width: 769px){
    .ms_section{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.section-subt{
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-title{
    text-transform: uppercase;
    font-size: 2rem;
}

.section-text{
    font-size: 1.1rem;
}

/* BUTTONS */
.ms_btn {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2em;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--blue);
    background-color: var(--gold);
}
  
.ms_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
  
.ms_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
  
.ms_btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
  
.ms_btn::after {
    background-color: var(--gold);
}
  
.ms_btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}  

/* HEADER */
.custom-header{
    height: var(--header-desk-height);
    width: 100%;
    position: fixed;
    top: -50%;
    left: 0;
    overflow: hidden;
    z-index: 990;
    background: rgb(19,19,31);
    background: -moz-linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    background: linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    backdrop-filter: blur(5px);
}

.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo{
    width: 200px;
}

#header-burger{
    padding: 5px;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

#header-burger::after{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 200ms linear;
}

#header-burger::before{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 200ms linear;
}

#header-burger:hover::after{
    left: 70%;
}

#header-burger:hover::before{
    right: 70%;
}

#header-navbar{
    height: 100svh;
    width: 25%;
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    background-color: var(--blue);
    z-index: 993;
}

#close-header{
    background-color: #13131f8e;
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 992;
    cursor: url("./imgs/cursor.png") 16 16, pointer;
    opacity: 0;
}

.navbar-container{
    position: relative;
    overflow: auto;
}

#close-burger{
    display: block;
    width: fit-content;
    padding: 5px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.4rem;
    color: var(--gold);
    transition: all 200ms linear;
}

#close-burger:hover{
    transform: scale(1.05);
}

.navbar-wrapper ul{
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none !important;
}

.navbar-wrapper ul li{
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.navbar-wrapper ul li a{
    color: white;
    text-decoration: none;
    display: block;
    width: fit-content;
    transition: all 200ms linear;
}

.navbar-wrapper ul li a:hover{
    color: var(--gold);
}

.current_page_item a{
    color: var(--gold) !important;
}

.current_page_item a::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.lang-wrapper{
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.lang-wrapper li a{
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 200ms linear;
}

.lang-wrapper li a[lang='en-GB']::after{
    content: '/';
    color: white;
}

.current-lang{
    /* TODO */
}

.mob-none{
    display: block;
}

.desk-none{
    display: none;
}

@media screen and (max-width: 1024px){
    #header-navbar{
        width: 100%;
    }

    .mob-none{
        display: none;
    }

    .desk-none{
        display: block;
    }
}

@media screen and (max-width: 769px){
    .custom-header{
        height: var(--header-mob-height);
    }

    #logo{
        width: 130px;
    }

    #header-burger{
        font-size: 1rem;
    }
}

/* Home */
.video-wrapper{
    width: 100%;
    height: 100svh;
    background-color: var(--blue);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

#close-video{
    padding: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 4rem;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

#close-video svg{
    width: 2rem;
    fill: rgba(255, 255, 255, 0.812);
    transition: all 200ms linear;
}

#close-video:hover svg{
    transform: scale(1.09);
}

#video-home{
    display: block;
}

.muted{
    cursor: url("./imgs/volume-high.png") 16 16, pointer;
}

.unmuted{
    cursor: url("./imgs/volume-mute.png") 16 16, pointer;
}

#video-home-mob{
    display: none; 
}

.adapt-video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.wrapper-container{
    position: relative;
}

.custom-shape-divider-top-1745413688{
    width: 100%;
    position: absolute;
    bottom: -20%;
    left: 0;
    /*transform: rotate(180deg);*/
}


/* first section */
.site-motto{
    font-size: 10rem;
}

#the{
    font-weight: 300;
}
/* /first section */

/* Cards */
    .ms_card{
        display: block;
        background-size: cover;
        background-position: center;
        height: 300px;
        color: inherit;
        text-decoration: none;
        transform: scale(0.1);
        opacity: 0;
    }
    
    .ms_card-overlay{
        width: 100%;
        height: 100%;
        background-color: #1e1e30d0;
        padding: 10px;
        backdrop-filter: grayscale(1);
        transition: all 200ms linear;
    }

    .ms_card-inner{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 3px solid var(--gold);
    }

    .ms_card-title{
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 1.8rem;
        text-align: center;
    }

    .ms_card-overlay:hover{
        backdrop-filter: grayscale(1) !important;
    }

/* /Cards */

@media screen and (max-width: 769px) {
    #video-home-mob{
        display: block;
    }

    #video-home{
        display: none;
    }

    .site-motto{
        font-size: 3rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Mission */
#mission{
    transform: scale(0.5);
    width: 100%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
}

.section-overlay{
    width: 100%;
    height: 100%;
}

#mission .section-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-overlay{
    background-color: var(--light-alfa-blue);
}

.grayscale{
    width: 100%;
    height: 100%;
    backdrop-filter: grayscale(0%);
}
/* /Mission */

/* Business */
.wave{
   width: 100%;
   margin: 2rem auto;
   display: block;
}

.row-map{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.spec-title{
    background-color: var(--gold);
    color: white;
    padding: 10px;
    font-size: 1.3rem;
}

.spec-text{
    font-size: 1.1rem;
}

.col-btn,  .col-spec{
    width: 20%;
}

.col-map{
    width: 50%;
    position: relative;
}

.col-map img{
    width: 100%;
    transform: scale(0.3);
}

.place-col{
    width: 100%;
    height: 90px;
    border: 2px solid var(--gold);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--blue);
}

.place-col.active{
    background-color: var(--gold);
}

.place-col.active .section-title{
    color: white;
}

.place-title{
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.place-col::after{
    content: '';
    display: block;
    width: 500px;
    height: 120px;
    position: absolute;
    top: 100%;
    left: -100%;
    transition: all 400ms linear;
    z-index: 1;
}

.place-col:hover::after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 90%;
    background-color: var(--gold);
}

.place-col:hover .place-col .section-title{
    color: var(--blue);
}

@media screen and (max-width: 769px){
    .row-map{
        flex-direction: column;
        flex-wrap: wrap;
    }

    .col-btn,  .col-spec, .col-map{
        width: 100%;
        margin-bottom: 10px;
    }

    .col-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .place-col{
        width: calc(50% - 10px);
        margin-bottom: 0;
    }

    .place-title{
        font-size: 1rem;
    }

}
/* /Business */

/* Home logo clients */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 250px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 11);
}
.slider .slide {
  height: 250px;
  width: 250px;
}
.slide img{
    filter: grayscale(1);
    height: 250px;
    width: 250px;
}
/* Home logo clients */

/* /Home */