* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'CFModGrotesk-Regular';
  src: url(./assets/fonts/CFModGrotesk-Regular.otf)format("opentype");
}

@font-face {
  font-family: 'CFModGrotesk-LightExtExp';
  src: url(./assets/fonts/CFModGrotesk-LightExtExp.otf)format("opentype");
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #E5E6E7;
  --color-dark-grey: #999999;
  --color-blue: #160D47;
  --color-gold: #B99B80;
  --color-beige: #F4EFE9;

  --color-text: var(--color-black);
  --color-text-grey: var(--color-dark-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  
  overflow-x: hidden;


  /* scroll-behavior: smooth; */
}

img {
  width: 100%;
}
body {
  /* padding: 0 10vw; */
  /* max-width: 70rem; */
  /* width: 100vw; */
  margin: 0 auto;

  background-color: var(--color-white);

}

li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  background-color: var(--color-grey);
}

.header {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  width: 96vw; /* TO WORK ON */

  color: var(--color-white);

  z-index: 99999;
}

.header-cover {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  /* margin: 0 -1rem ; */
  padding: 0 2vw;
  width: 96vw; /* TO WORK ON */

  color: var(--color-white);
  background-color: var(--color-blue);

  z-index: 99999;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  
  display: none;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  width: 96vw; /* TO WORK ON */

  color: var(--color-white);
  background-color: var(--color-blue);
  z-index: 99999;

  transition: transform 0.6s ease; /* Add smooth transition effect */
}

.header-sticky.hidden {
  transform: translateY(-100%);
}

.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  margin-right: auto;
}

.logo img {
	width: 300px;
}



/************** NAV MENU */



.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.menu > li {
  list-style-type: none;
}
.menu > li a {
  text-decoration: none;
  color: #efefef;
  cursor: pointer;
}
.nav > #nav-check, .nav > #nav-check-sticky {
    display: none;
}
@media (max-width: 780px) {
  .nav {
    padding: .5rem 2vw;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    /* padding-top: 0.2rem; */
    z-index: 10;
  }
  .nav > .nav-btn > label {
    display: flex;
    width: 50px;
    height: 70px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: var(--color-blue);
    height: 0;
    transition: all 0.3s ease-in;
    /* top: 80px; */
    top: 8vh;
    left: 0;
    overflow: hidden;
  }

  .menu::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    display: none;
    backdrop-filter: blur(6px); 
    z-index: -10; 
  }

  .menu > li {
    width: 100%;
    margin-top: 1.5rem;
  }
  .nav > #nav-check:checked ~ .menu,
  .nav > #nav-check-sticky:checked ~ .menu {
    height: 40vh;
  }

  .nav > #nav-check:checked ~ .menu::after,
  .nav > #nav-check-sticky:checked ~ .menu::after {
    opacity: 1;
    display: inline-block;
  }

  /* Disable scrolling when the menu is active */
  .no-scroll {
    overflow: hidden;
  }
  

  .header .menu {
    opacity: 0 !important;
    top: 0 !important;
  }

  .header > #nav-check:checked ~ .menu {
    height: 50vh !important;
    opacity: 1 !important;
  }

  .logo {
    width: 55vw;
    height: auto;
    z-index: 5;
  }
	
	.logo img {
	width: 60vw;
}


  .nav > .nav-btn > label > .burger {
    
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    display: block;
    margin: 3px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .nav > #nav-check:checked ~ .nav-btn > label > .burger:nth-child(2),
  .nav > #nav-check-sticky:checked ~ .nav-btn > label > .burger:nth-child(2) {
    opacity: 0;
  }
  
  .nav > #nav-check:checked ~ .nav-btn > label > .burger:nth-child(1),
  .nav > #nav-check-sticky:checked ~ .nav-btn > label > .burger:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav > #nav-check:checked ~ .nav-btn > label > .burger:nth-child(3),
  .nav > #nav-check-sticky:checked ~ .nav-btn > label > .burger:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  

  .footer .logo {
    margin-right: 0 !important;
  }

  .footer .bottom-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}




/************** MENU */








.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 2rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-row-gap: 7rem;
  grid-template-columns: 1fr;

  width: 100%;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

/* loading slide up */
.grid li {
  opacity: 0;
  transform: translateY(80px); /* Initial position below the grid */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Transition properties */
}

.grid li.visible {
  opacity: 1;
  transform: translateY(0); /* Move to the final position */
}

.autogrid {
  --gutter: 2rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: .5rem;
}
.img[data-contain] img {
  object-fit: contain;
}


.footer {

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;

  background-image: url(/content/home/zen-SeabedMining.jpg); /* no-repeat center center fixed */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;  
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;

  height: calc(100vh - 100px);
  padding: 50px 0;
	
}



.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}




/* -------- */
.cover-section {
  height: 80vh; /* Full viewport height */
/* height: 120vh; Full viewport height */
  width: 100vw; /* Full viewport width */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-blue);
}
@media screen and (max-width: 758px) {
    .cover-section {
     /*  height: 155vh; */
		 height: 80vh;
    }
}
.cover-content {
  position: relative;
}

.cover-image {
  width: 65vw; /* Ensure image doesn't exceed container width */
  height: 70vh; /* Subtract padding from height */
  display: block;
  margin: 0 auto; /* Center image horizontally */
  border-radius: 20px;
  object-fit: cover;
  opacity: 0; /* Initially hide the image */
  animation: fadeInUpImage 1.5s ease forwards 0.5s; /* Animation for the image with delay */
}

.cover-title {
  font-family: 'CFModGrotesk-LightExtExp';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  margin: 0;
  color: var(--color-white); /* Adjust text color as needed */
  font-size: 4vw; /* Adjust font size as needed */
  text-align: center;
  line-height: 4vw;
  opacity: 0; /* Initially hide the title */
  animation: fadeInUpTitle 1.5s ease-out forwards 0.8s; /* Animation for the title with delay */
}

/* Animation */
@keyframes fadeInUpImage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpTitle {
  from {
    opacity: 0;
    transform: translate(-50%, 10%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.padded-section {
  padding: 10vh 10vw;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- */
.two-columns-section {
  display: flex;
  gap: 8vw;
  align-items: center;
  /* height: 70vh; */
}

@media only screen and (max-width: 800px) {
  .two-columns-section {
    flex-direction: column;
  }
	
  .footer {
  background-image: url(/content/home/zen-SeabedMining.jpg); /* no-repeat center center fixed */
  background-repeat: no-repeat;
  background-position: center;  
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;

  height: calc(100vh - 100px);
  padding: 50px 0;
  }
}

.left-column {
  display: grid;
  flex: 1;
  gap: 30px;
}

.right-column {
  flex: 1.2;
  display: flex;

  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
}

.fleet-info {
  padding: 0 50vw 0 10vw;
}

.image-container {
  text-align: center;
  /* margin-bottom: 20px; */
}


.round-image {
  border-radius: 50%;
  width: 11vw; /* Adjust image size as needed */
  height: 11vw; /* Adjust image size as needed */
}

.image-caption {
  margin-top: 30px;
}



/*****  destinations */
.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;

  filter: brightness(0.8);

}
/* .container > ul > li:first-child .image {
  opacity: 1;
  visibility: visible;
} */

.container-destinations {
	position: relative;
	display: grid;
  justify-items: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100vh;
  z-index: 99;
  
}
.container-destinations > ul {
  list-style: none;
  width: 95%;
  margin: 0 auto;
  padding: 0;
}

.container-item {
  padding: 15px 0;
  /* opacity: 0; 
  transform: translateY(50px); 
  transition: opacity 1s ease-out, transform 1s ease-out; 
}
.container-item.visible {
  opacity: 1;
  transform: translateY(0);  */
}

.link {
  text-decoration: none;
  color: var(--color-blue);
  transition: color .3s ease-in-out;
}
.link:hover h2{
  color: var(--color-white);
}
/* .container-item.active .destination-image {
  opacity: 1;
  visibility: visible;
} */
.container-item.active .link + .destination-image {
  opacity: 1;
  visibility: visible;
}

.container-destinations.hover .link {
  opacity: 1;
}
.container-item.active .link {
  opacity: 1;
  text-decoration: none;
}

/*****  destinations */



/*Fleet */
.filter {
  margin: 50px 0;
}

.filter a{
  padding: 0 10px;
}





/*Swiper */

.swiper-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: -50px 0;
  gap: 50px;

  position: relative;
}

.swiper-wrapper-container {
  position: relative;

}



.swiper-container {
  width: 100vw;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto !important;
  height: auto !important;
}

.swiper-slide img {
  display: block;
  width: 30vw;
  height: 20vw;
  object-fit: cover;
  border-radius: 15px;
}

.swiper-slide:nth-child(1) {
  padding-left: 10vw;

}

/* .custom-slide {
  padding-left: 10vw;
} */

.swiper-button-next, .swiper-button-prev  {
  position: absolute;
  top: -60px !important; 
  right: 20px !important; 
  z-index: 1000 !important; 
  cursor: pointer;
  /* display: flex !important;
  align-items: center !important;
  justify-content: center !important; */
  color: var(--color-dark-grey) !important;
}

.swiper-button-prev  {
  left: auto !important;
  right: 100px !important; 

}


.space-line {
  position: relative;
  width: 100%; /* Adjust width as needed */
}
.space-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw; /* Adjust width as needed */
  height: 1px;
  background-color: var(--color-gold); /* Adjust color as needed */
}






/*yacht page */

.charter-info img {
  padding: 50px 0 80px;
  width: 90%;
}

.yacht-info-booking {
  width:fit-content;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  margin-top: 50px;
}

.yacht-info-booking:hover {
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.yachts-cover{
  height: calc(100vh - 100px);
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yachts-cover img{
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100vh; 
  object-fit: cover;  
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 13%, rgba(0,0,0,0) 100%);
}

.album-gallery {
  columns: 2 !important;
}

.album-gallery img {
  border-radius: 10px;
}

.img {
  background: var(--color-white) !important;
}

@media screen and (min-width: 60rem) {
  .album-gallery {
    columns: 3 !important;
    gap: 2rem;
  }
}


.footer-booking-btn {
  width: max-content;
}




/* FAQ */

.faq {
  flex-direction: column;
  row-gap: 60px;
  padding: 10vh 15vw 11vh;
}

/* Define common styles */
.transition {
  transition: all 0.25s ease-in-out;
}

.flipIn {
  animation: flipdown 0.5s ease both;
}

.no-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq h2 {
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq p {
  /* 
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px; */
  position: relative;
  overflow: hidden;
  max-height: 800px;
  transition: all 0.25s ease-in-out;
  opacity: 1;
  transform: translate(0, 0);
  margin: 20px 0;
  padding: 0 10vw;
  z-index: 2;
}

/* Unordered list styles */
.faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}

.faq ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-gold);

  animation: flipdown 0.5s ease both;
}


.faq ul li:last-child {
  border-bottom: 1px solid var(--color-gold);
}

.faq ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.faq ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}

.faq ul li:nth-of-type(3) {
  animation-delay: 1s;
}

.faq ul li:last-of-type {
  padding-bottom: 0;
}

.faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}

.faq ul li i:before,
.faq ul li i:after {
  content: "";
  transition: all 0.25s ease-in-out;
  position: absolute;
  background-color: var(--color-gold);
  width: 3px;
  height: 9px;
}

.faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

/* Checkbox input styles */
.faq input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.faq input[type="checkbox"]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.faq input[type="checkbox"]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.faq input[type="checkbox"]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/* Animation keyframes */
@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}



/* FAQ */




/* About section */

.about-container {
  display: flex;
  height: 70vh;
  align-items: center;
  color: var(--color-white);
}

.about-container > div {
  flex: 1;
}

.about-image {
  height: 70vh;
  display: block;
  object-fit: cover;
}

.about-content {
  text-align: center;
  color: var(--color-blue);
}

.about-content a  {
  color: var(--color-blue);
}

.about-content a:hover  {
  text-decoration: underline;  
}


.about-content p {
  padding: 0 5vw;
  margin: 30px 0 20px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    height: auto;
  }

  .about-image {
    height: 40vh;
  }

  .about-content {
    padding: 80px 0;
  }
}


#destination-map {
  width: 80vw; 
  height: 70vh; 
  /* display: block; */
  margin: 0 auto 120px; 
  border-radius: 15px;
  /* object-fit: cover; */
}

#reset-view-btn {
  position: absolute;
  top: 110px;
  right: 8px;
  z-index: 1000;
  padding: 9.5px;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  cursor: pointer;

  font-size: 17px;
  line-height: 10px;

  z-index: 100;
}

.marker {
  /* background-image: url('https://docs.mapbox.com/help/demos/custom-markers-gl-js/mapbox-icon.png');
  background-size: cover; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.mapboxgl-popup {
  max-width: 200px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.mapboxgl-popup-close-button {
  right: 10px !important;
  top: 5px !important;
}

.mapboxgl-ctrl-bottom-left, .mapboxgl-ctrl-bottom-right {
  display: none;
}


.contact {
  padding: 0 10vw 10vh !important;
  border: none !important;
}


/* contact form */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* Styling for the contact form overlay */
.contact-form-overlay {
  display: block;
  position: fixed;
  z-index: 999 !important;
  top: -150vh;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  
  cursor: pointer;

  transition: top 1s ease-out;
}



#bg-overlay {
  display: block;
  position: fixed;
  /* z-index: 998; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  visibility: hidden;  
}

.contact-form-overlay h1 {
  text-align: center;
  padding-top: 20px;
}

/* Styling for the contact form */
.contact-form {
  background-color: #fefefe;
  margin: 0 auto auto;
  padding: 30px;
  width: 92vw;
  border-radius: 0 0 10px 10px;
  /* padding-top: 100px; */

  padding-bottom: 2vh;
}

/* Close button style */
.close-btn {
  color: var(--color-dark-grey);
  float: right;
  font-size: 3rem;
  font-weight: light;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Styling for form rows and columns */
.contact-form-overlay .row {
  display: flex;
  margin-bottom: 35px;
}

.contact-form-overlay .col {
  flex: 1;
  margin-right: 10px;
}

#contact-form {
  margin-top: 50px;
  margin-bottom: 0px;
}


/* Styling for form labels and inputs */
.contact-form-overlay label {
  display: block;
  margin-bottom: 5px;
}

.contact-form-overlay input[type='text'],
.contact-form-overlay input[type='email'],
.contact-form-overlay input[type='tel'],
.contact-form-overlay textarea,
.contact-form-overlay #boat-name,
#start-date, #end-date {
  font-family: 'PlayfairDisplay-Regular';
  font-size: 16px;
  color: var(--color-dark-grey);


  width: 100%;
  padding: 10px;
  border-bottom: 1px solid var(--color-dark-grey);
  border-top: 0;
  border-left: 0;
  border-right: 0;

  box-sizing: border-box;
  resize: vertical;
}

.contact-form-overlay input[type=text]:focus,
.contact-form-overlay input[type=email]:focus,
.contact-form-overlay input[type=tel]:focus,
.contact-form-overlay textarea:focus,
.contact-form-overlay #boat-name:focus,
#start-date:focus, #end-date:focus {
  border-bottom: 1px solid var(--color-gold) !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
	
	  border-radius: 0px;

}

.contact-form-overlay button[type='submit'] {
  color: var(--color-blue);
  padding: 10px 40px;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  cursor: pointer;

  font-size: 'CFModGrotesk-Regular', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-form-overlay button[type='submit']:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

#boat-name {
  color: var(--color-dark-grey);
}

.contact-form-overlay select {
  font-family: 'PlayfairDisplay-Regular';
  font-size: 14px;
  color: var(--color-dark-grey);
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-dark-grey);
  border-radius: 0px;
  box-sizing: border-box;
  appearance: none; /* Reset default appearance */
  -webkit-appearance: none; /* WebKit/Blink browsers */
  -moz-appearance: none; /* Firefox */
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="1" d="M19 9l-7 7-7-7"></path></svg>'); /* Custom arrow icon */
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

/* Reset Safari-specific input styling */
@media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) {
  .contact-form-overlay select {
    font-size: 14px; /* Adjust font size for select in Safari */
  }
}}

/* Reset Firefox-specific input styling */
@-moz-document url-prefix() {
  .contact-form-overlay select {
    font-size: 14px; /* Adjust font size for select in Firefox */
  }
}


.contact-form-overlay input[type="date"]:not(.has-value):before {
  color: var(--color-dark-grey);
  content: attr(placeholder);
}

.col-consent {
  display: flex;
  align-items: center; /* Align items vertically */
}

.col-consent input[type="checkbox"] {
  margin-right: 10px; /* Adjust spacing between checkbox and label */
}

.col-consent label {
  font-size: 10px;
  margin: 0;
}

.col-submit {
  display: flex;
  justify-content: flex-end
}


/* HOME styles */

.form-page form input, .form-page form select, .form-page form textarea {
  background-color: var(--color-grey) !important;
}

.form-page form {
  width:70vw !important;
  margin:50px auto !important;

}
@media screen and (min-width: 769px) and (max-width: 1605px) {
       .cover-title {
            /* Sets the min-height to 38% of the viewport height (38vh) */
            margin-top: 30vh;
        }
    }

/* Responsive styles */
@media screen and (max-width: 768px) {
 .cover-title {
  font-size: 9vw;
  line-height: 9vw;
 /*margin-top: 35vh;*/
	 margin-top: 0vh;
 }

  .contact-form-overlay .row {
    flex-direction: column;
  }

  #destination-map {
    width: 80vw; 
    height: 50vh; 
  }

  .container-destinations {
    height: 70vh;
  }

  .swiper-slide img {
    width: 60vw;
    height: 40vw;
  }

  .right-column {
    align-items: flex-start;
    padding-top: 50px;
  }

  .padded-section {
    padding-bottom: 5vh;
  }

  .round-image {
    width: 25vw;
    height: 25vw;
  }


  .grid-fleet {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Adjust gap as needed */
  }

  .grid  {
    grid-row-gap: 2rem;
  }
  
  .padded-section {
    padding: 5vh 5vw;
  }

  h1 {
    font-size: 1.3rem ;
  }

  h2 {
    font-size: 1.02rem ;
  }

  .yacht-info-group-1, .yacht-info-group-2 {
    width: 50%;
  } 

  .yacht-info-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-form-overlay .row {
    display: flex;
    margin-bottom: 0px;
  }
  .contact-form-overlay {
    overflow: visible;
  }
  .contact-form {
    padding: 10px;
  }

  .col-submit {
    padding-top: 30px;
  }

  .col #boat-name option {
  font-size: 16px !important;
  }
}






/* amenities yacht */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Three columns on desktop, two columns on mobile */
  gap: 20px;
  padding-bottom: 50px ;
}

.amenities-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.amenities-item img {
  border-radius: 50%; /* Round the corners of the image */
  object-fit: cover;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-right: 20px;
}

.amenities-item p {
  margin-top: 10px;
  text-align: left;
}


@media screen and (max-width: 768px) {


.amenities-grid {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
}

.layout-image {
  width: 100% !important;
}

.yacht-info-price {
  width: 100%;
}
}





/* Cookies box */
.termsfeed-com---palette-light.termsfeed-com---nb {
  background-color: var(--color-beige);
  color: var(--color-black);
  border-radius: 15px;
  margin: 2rem;
}

.termsfeed-com---nb .cc-nb-main-container {
  padding: 2rem;
}

.termsfeed-com---palette-light .cc-nb-okagree {
  color: #fff;
  background-color: var(--color-gold);
}

.termsfeed-com---palette-light .cc-nb-reject {
  color: var(--color-black);
  background-color: #eaeaea;
}

.cc-nb-buttons-container button:hover {
  color: #fff;
  background-color: var(--color-gold);
}

/* --- ΝΕΑ ΚΛΑΣΗ ΓΙΑ ΤΟ WBM POPUP (ΧΩΡΙΣ CONFLICT ΜΕ ΤΟ ΠΑΛΙΟ FORM) --- */

.wbm-popup-overlay {
    /* Κρύβεται αρχικά με display: none */
    display: none; 
    
    /* Θέση και διαστάσεις */
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important; /* Πολύ υψηλό Z-index */
    
    /* Εμφάνιση */
    background-color: rgba(0, 0, 0, 0.7); 
    align-items: center;
    justify-content: center;
    
    /* Για να κεντράρει το περιεχόμενο (τη φόρμα) */
    display: flex;
}

/* Στυλ για τη φόρμα μέσα στο popup */
.wbm-popup-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 90vw;
    max-width: 750px;
    height: 90vh;
    max-height: 800px;
}

/* Στυλ για το κουμπί κλεισίματος */
.wbm-popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #000; /* Μαύρο στο λευκό φόντο της φόρμας */
    cursor: pointer;
    z-index: 100000;
}