.form-container {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
margin:0 5%;
}
.form-container h2{font-family: 'Chewy', cursive;color:white;}
.form-container {font-family: sans-serif;}
.input-group {
  position: relative;
  margin-bottom: 25px;
}
.form-container button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #fecf44 ;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

.form-container  button:hover {
    transform: scale(1.05);
    background: #fe4474;
  }
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 2px solid #555;
  color: white;
  font-size: 14px;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 12px;
  color: #aaa;
  transition: 0.3s;
  pointer-events: none;
}

/* floating */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -10px;
  font-size: 11px;
  color: #00ffcc;
}

/* error */
.input-group.error input,
.input-group.error textarea {
  border-bottom: 2px solid #ff4d4d;
}

.input-group.success input,
.input-group.success textarea {
  border-bottom: 2px solid #00ffcc;
}

/* error message */
.error-msg {
  font-size: 11px;
  color: #ff4d4d;
  margin-top: 5px;
  display: none;
}

.input-group.error .error-msg {
  display: block;
}

/* shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s;
}



.success-msg {
  display: none;
  color: #00ffcc;
  margin-top: 15px;
  text-align: center;
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: sans-serif;
  color: white;
  letter-spacing: 2px;
  font-size: 12px;
  opacity: 1;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 8px;
  animation: fadeText 2s infinite;
}

.arrow {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: arrowMove 1.5s infinite;
}

/* Arrow animation */
@keyframes arrowMove {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-5px, 10px);
    opacity: 0;
  }
}

/* Text fade */
@keyframes fadeText {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
/* MAP */
.map-section {
  height: 80vh;
  position: relative;
}

.map-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.map-img {
  width: 100%;
  object-fit: cover;
  height:100%;
}

/* SVG route */
.route {
  position: absolute;

  left: 0;
  width: 100%;

}
.adress{position:absolute;left:0;}
.adress h2{font-size:40px;background:#fecf44;padding:20px;font-family: 'Chewy', cursive;}
.adress p{font-family: 'Open Sans', sans-serif;font-size:14px;background:white;padding:10px;opacity:0.8;}
.route path {
  fill: none;
  stroke: #111;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;

  /* glow effect */
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}

/* Pin */
.pin {
  position: absolute;
  top: 20%;
  left: 85%;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}


/* SECTION testimonials*/
section.testimonials {
    min-height: 90vh;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
section.testimonials h2{font-size:40px;font-family: 'Chewy', cursive}
  .photos {
    position: relative;
    width: 100%;
    height: 500px;
  }
.photobg1{
right: 15%;
width:147px;
height:113px;
z-index: 1;
position:absolute;
background:url(../images/cl1.png);
background-repeat:no-repeat;
}
.photobg2{
width:100px;
left:20%;
top:20%;
z-index: 1;
height:87px;
position:absolute;
background:url(../images/cl2.png);
background-repeat:no-repeat;
}
.photomain{position:absolute;bottom: 0;z-index: 0;left:15%;}
.photomain2{position:absolute;bottom: 0;z-index: 0;right:15%;}
  .photo {
    width: 250px!important;
    height: 240px!important;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    transform: translateY(-200vh);
opacity: 0;
  }

  .photo img {
border-radius: 100px;
    object-fit: cover;
    
  }

  .photo.show {
    animation: dropBounce 1.2s cubic-bezier(.25,1.5,.5,1) forwards;
    opacity: 1;
  }

  @keyframes dropBounce {
    0% {
      transform: translateY(-200vh);
      opacity: 0;
    }
    60% {
      transform: translateY(30px);
      opacity: 1;
    }
    80% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }

/* PARALLAX SECTION */
.parallax {
  position: relative;
  padding:10% 0;
  width: 100%;
  background-image: url('https://images.unsplash.com/photo-1550547660-d9450f859349'); /* βάλε δική σου */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 🔥 το σημαντικό */
}

/* BLUR + DARK OVERLAY */
/* BLUR OVERLAY */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.4);

  transition: backdrop-filter 0.6s ease, background 0.6s ease;
}

/* 🔥 HOVER = UNBLUR */
.parallax:hover::before {
  backdrop-filter: blur(0px);
  background: rgba(0,0,0,0.1);
}

/* CONTENT πάνω από image */
.overlay {
padding: 0 5%;
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.overlay h1 {
  color: white;
  font-size: 6vw;
  font-weight: 800;
  letter-spacing: 4px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.overlay p {
  color: white;
  font-size: 1.3vw;
  font-weight: 400;
font-family: 'Open Sans', sans-serif;
  text-align: center;
}

/* extra content */
.content {
font-family: 'Open Sans', sans-serif;
  padding: 50px 0;
}




/* WARDS */

/* FULL WIDTH */
.ticker {

  overflow: hidden;
  display: flex;
  align-items: center;
}

/* TRACK */
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 8s linear infinite;
}

/* TEXT */
.ticker span {
  font-size: 17vw; /* responsive size */

  flex-shrink: 0;
   font-family: 'Chewy', cursive;
}
.word {
  font-size: 8vw;
  font-weight: 700;
  margin-right: 2vw;
  white-space: nowrap;
}

/* COLORS */
.red { color: #ff3b3b; }
.yellow { color: #ffd93b; }
.green { color: #3bff88; }
.blue { color: #3bbdff; }
.pink { color: #ff3bbd; }
.orange { color: #ff8c3b; }

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (min-width:768px) and (max-width:1200px) {
.map-section{height: 450px;}
.map-container{height: 450px}
}
/* DESKTOP */
@media (min-width: 768px) {
.map-img{height:auto;}
.route{top: 0;}
  .word {
    font-size: 6vw!important;
  }

  .ticker-track {
    animation-duration: 10s;
  }
}


/* MOBILE 🔥 */
@media (max-width: 767px) {
.adress h2{padding: 10px;font-size: 20px;}
.adress p{font-size: 11px;}

.route{bottom: 0!important;}
.map-section{height: 500px;}
.map-container{height: 300px}
.scroll{display:none;}
.photo img{display:none;}
.photomain img{display:block;}
.photomain2 img{display:block;}

.overlay h1{font-size: 10vw;}
.overlay p {font-size: 2.5vw;}
  .word {
    font-size: 12vw; /* readable */
    margin-right: 8vw;
  }

  .ticker-track {
    animation-duration: 14s; /* πιο αργό για mobile */
  }
}

.absolute{position:absolute!important;width:100%!important;}
.burger-card {
  perspective: 1000px;
}

.burger-card img {
  width: 100%;
  transition: transform 0.2s ease;
  transform: rotateX(0) rotateY(0) scale(1);
  will-change: transform;
}


/* CARDS */

.card-img{margin:0 auto;}
.card-img img{width:100%;}
.card-content{ text-align:center;}
.card-content p{ font-family: 'Open Sans', sans-serif;}
/* πολύ scroll για timing */
body, html{background:#121213; scroll-behavior: smooth;font-family: 'Open Sans', sans-serif;}
.section {

  background:#121213;
}

.menu-bg{position:fixed;
bottom: 9%;
background: url('../images/menu-bg.png');
height:180px;
width: 100%;
}
.sticky {
  position: sticky;
  top: 0;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden; /* 🔥 ΚΛΕΙΔΙ */
}
.cards-menu{position:absolute;
right:10%;
z-index:999;

}

/* wrapper για mask effect */
.cards-wrapper {

  width: 80%;
  height: 700px;
  position: relative;
  overflow: hidden; /* 🔥 κρύβει τα cards πριν μπουν */

}
footer{position:fixed;bottom:0;width:100%;}
/* cards */
.card {
padding-top: 0 !important;
  width: 100%;
  height: 100%;
  background: #ffd500;
  color: black;
  padding: 30px;
  border-radius:50px;
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* initial positions */
.card1 { z-index: 1; transform: rotate(10deg);top: 15%;width: 80%;left: 10%;background:url(../images/black-pattern.jpg);}
.card2 { z-index: 2; transform: translateY(100%) rotate(4deg); width: 85%;left: 10%;background:url(../images/yellow-pattern.jpg);}
.card3 { z-index: 3; transform: translateY(100%) rotate(-4deg); width: 85%;left: 10%;background:url(../images/black-pattern.jpg);}
.card4 { z-index: 4; transform: translateY(100%) rotate(4deg); width: 85%;left: 10%;background:url(../images/yellow-pattern.jpg);}
.card5 { z-index: 5; transform: translateY(100%) rotate(-4deg); width: 85%;left: 10%;background:url(../images/black-pattern.jpg);}
.card6 { z-index: 5; transform: translateY(100%) rotate(4deg); width: 85%;left: 10%;background:url(../images/yellow-pattern.jpg);}


.titles .logo{width:120px;height:120px;border-radius: 120px;margin:2%;}
.titles .logo img{width:100px;margin-top:13px;}


.absolute1{position: absolute;top: 20%;}
.absolute2{position: absolute;top: 40%;}


/* video */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* simple spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #222;
  border-top: 5px solid yellow;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* όταν φορτώσει */
.loader.hidden {
  opacity: 0;
  visibility: hidden;

}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
      width: 100%;
    height: 100%;
        border-radius: 30px;
}
@media (max-width:1000px) {
.hero{display:none!important;}
.cards-wrapper {width:100%!important;}
}

@media (min-width:490px) and (max-width:1000px) {
.right{text-align:right;}
.scroll {margin-left: auto!important;margin: unset;font-family: 'Chewy', cursive;font-size: 15px !important;width: 100px;}

.absolute1{position: relative;top: 30%;}
.absolute2{position: relative;top: 30%;}


.titles{
z-index:999!important;
top: 45%!important;
left: 35%!important;
max-width: 80% !important;
}

}

#bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0; /* αρχικά κρυφό */
  transition: opacity 0.5s ease;
}

.hero.loaded #bgVideo {
  opacity: 1;
}


/* HAMBURGER */
#menu-btn {
width:40px;
float:left;

}
.menu-all{
  position: fixed;
  top: 5%;
  right: 5%;
  z-index: 1001;
  background:black;
  padding: 20px 30px;
 border-radius: 20px;
}

#menu-btn span {
  display: block;
  height: 3px;
  background: #ffc107;
  margin: 6px 0;
  transition: 0.4s;
  box-shadow: 0 0 10px #ffc107;
}

/* X ANIMATION */
#menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-btn.active span:nth-child(2) {
  opacity: 0;
}
#menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* FULLSCREEN MENU */
#menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top:0;
  left:0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}

#menu.active {
  opacity: 0.9;
  visibility: visible;
}

/* NEON TEXT */
#menu a {
  color: #ffc107;
  text-decoration: none;
  font-size: 3.5rem;
  margin: 15px 0;
  letter-spacing: 2px;
  font-family: 'Chewy', cursive;
  opacity: 0;

  text-shadow:
    0 0 5px #ffc107,
    0 0 10px #ffc107,
    0 0 20px #ffc107,
    0 0 40px #ff9800;

  transition: 0.3s;
}

/* SHOW LINKS WITH DELAY */
#menu.active a {

  animation: fadeIn 0.5s forwards;
}

#menu.active a:nth-child(1) { animation-delay: 0.2s; }
#menu.active a:nth-child(2) { animation-delay: 0.4s; }
#menu.active a:nth-child(3) { animation-delay: 0.6s; }
#menu.active a:nth-child(4) { animation-delay: 0.8s; }

/* HOVER EFFECT */
#menu a:hover {
  transform: scale(1.15);
  text-shadow:
    0 0 10px #ffc107,
    0 0 20px #ffc107,
    0 0 40px #ff9800,
    0 0 80px #ff9800;
}

/* FADE IN */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* 🔥 FLICKER EFFECT */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #ffc107,
      0 0 10px #ffc107,
      0 0 20px #ffc107,
      0 0 40px #ff9800;
  }
  20%, 24%, 55% {
    opacity: 0.3;
    text-shadow: none;
  }
}

/* APPLY FLICKER RANDOMLY */
#menu.active a:nth-child(2),
#menu.active a:nth-child(4) {
  animation: flicker 1.5s infinite alternate;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #menu a {
    font-size: 1.8rem;
  }
}



#colorbtn{
background: none;border: none;float:left;margin-left:20px;
}

html, body, * {
  cursor: none !important;
}
.neons{
width: 100px;
    height: auto;
    position: absolute;
    left: 20%;
    bottom: 10%;
}
#playNeon,
#stopNeon {
float: left;
  background: none;
  color: #ffe72e;
  border: none;
  transition: all 0.3s ease;

}

#playNeon:hover,
#stopNeon:hover {

  transform: translateY(-4px);
}

#playNeon:active,
#stopNeon:active {


  transform: translateY(1px);
}
.cursor {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;

  transition: opacity 0.3s ease;
  background: url('../images/hand-mouse.png') no-repeat center;
  background-size: contain;

}

/* Button hover optional effect */
.hover-target {
  margin-top: 50px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer; /* θα κρυφτεί λόγω * { cursor:none } */
}

#myHeader {
  background-color:#121213;
  transition: background-color 0.7s ease;
}

#myTitle {
  color: black;
  transition: color 0.7s ease;
}

/* κατάσταση αλλαγής */
.active-bg {
  background: #fecf44!important;
}

.active-text {
  color: #121213!important;
}
  
.pin-spacer{width:100%!important;}
.chewy-regular {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
}

.slogan{font-family: 'Chewy', cursive!important;}

.titles{
position:absolute;
z-index:0;
 opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.8s ease forwards;
  animation-delay: 3.5s; /* ⬅ καθυστέρηση */
   top: 45%;
  left: 45%;
  max-width: 60% !important;
  transform: translate(-50%, -50%) translateX(60px);
  
    padding: 0 !important;

    height: 500px;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
   transform: translate(-50%, -50%) translateX(25%);
  }
}
.logo {
  position:absolute;
  top:0;
  left:0;
  transition: opacity 0.1s;
    background-image: url('../images/logobg.png');
  background-repeat: no-repeat;

  width:260px;
  height:246px;
}
.margin-top{margin-top:50px;}
.expand{background:#121213;padding:10px;border-radius: 15px;}
.man{
width:398px!important;
height:480px;
  background-image: url('../images/man.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position:absolute;
  right:0;
  bottom:0;
}
@media (max-width:1000px) {
.titles .logo{display:none;}
}

@media (min-width:300px) and (max-width:350px) {
.scroll{display:block!important;margin: 200px 0px 0 20px;font-family: 'Chewy', cursive;font-size: 15px !important;width: 100px;}
.man{
width:250px!important;
height:300px!important;
}
.cursor {display: none !important;}
.burger{background-image:none !important;}
.burger1 {
  top:10%!important;
  width: 100%!important;
}

.burger2 {
width: 100%!important;
top:27%!important;
}
.burger3 {
width: 100%!important;
top:32%!important;
}

.burger4 {
width: 100%!important;
top:40%!important;
left:10%!important;
}
.titles .absolute1{display:none!important;}
.titles .slogan{display:none!important;}
}

@media (min-width:351px) and (max-width:490px) {
.cursor {display: none !important;}
.burger{background-image:none !important;}
.burger1 {
  top:7%!important;
  width: 90%!important;
}

.burger2 {
width: 90%!important;
top:27%!important;
}
.burger3 {
width: 90%!important;
top:32%!important;
}

.burger4 {
width: 90%!important;
top:43%!important;
left:5%!important;
}
.titles{display:block!important;top: 80%!important;left:35%!important;}
.man{
width:250px!important;
height:300px!important;
}

}


@media (min-width:492px) and (max-width:600px) {
.cursor {display: none !important;}
.burger1 {
  top:5%!important;
  width: 90%!important;
}

.burger2 {
width: 90%!important;
top:35%!important;
}
.burger3 {
width: 90%!important;
top:42%!important;
}

.burger4 {
width: 90%!important;
top:57%!important;
left:5%!important;
}


.titles{display:none!important;}
.man{
width:250px!important;
height:300px!important;
}
}

@media (min-width:491px) and (max-width:779px) {
.cursor {display: none !important;}
.hbtn{}
.titles{top:35%!important;}
.burger {
background-image:none !important;

  }
}

@media (min-width:780px) and (max-width:990px) {
.cursor {display: none !important;}
 .burger {
	left:-2%!important;

   bottom:0%!important;

  }
}



.burger {
  padding: 20px;
  z-index: 999;
  position:relative;
  max-width:650px!important;
  height:600px;
  top:0%;
  left:0%;
  background-image: url('../images/hand-holding.png');
  background-repeat: no-repeat;
  background-position: 0% 100%;
  opacity: 0;
  transform: scale(1.05);
  animation: fadeInBg 3s ease forwards;

}

@keyframes fadeInBg {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.piece:not(.burger4) {
  position: absolute;
  bottom: 7vw;
  
}
.burger1 {
  width: 60%;
  left: 10%;
  top:22%;
}
.burger2 {
  width: 60%;
  left: 10%;
  top:45%;
   z-index:-1;
}
.burger3 {
  width: 60%;
  left: 10%;
  top:50%;
}
.burger4 {
  width: 60%;
  top:61%;
  left:-10%;
  position: relative;
  z-index:-1;
}

h1,
h2,
p,
li {
  max-width: none;
}

img {
  z-index: 999;
}

.spacer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}


#loader {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-text {
  color: white;
  font-size: 24px;
  font-family: sans-serif;
}

