        html {
          overscroll-behavior: contain; /* Estää selaimen omat pykäisytoiminnot */
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            padding-top: 70px;
        }
/* Estä overflow ongelmia */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  touch-action: pan-y;
}
/* Varmista overlayn näkyvyys */
[style*="position: fixed"] {
  transform: translateZ(0); /* Kiihdytys mobiililaitteille */
}

/* Paranna kosketuskokemusta */
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}		

        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 30px;
        }

        /* Header */
        header {
            max-width: 960px; /* Määritetään maksimileveys */
            /*min-width: 310px; /* Estää some-ikonien rivittymisen */
            height: 70px;
            width: 100%; /* Leveys 100% näytön leveydestä */
            margin: 0 auto; /* Keskitetään header */
            position: fixed; /* Kiinnitetään header */
            top: 0; /* Kiinnitetään yläreunaan */
            left: 0; /* Asetetaan vasen reuna */
            right: 0; /* Asetetaan oikea reuna */
            background: white; /* Taustaväri */
            padding: 15px 20px; /* Sisäiset marginaalit */
            display: flex; /* Flexbox asettelu */
            justify-content: space-between; /* Tasaa sisällön välille */
            align-items: center; /* Keskitä sisältö pystysuunnassa */
            z-index: 1000; /* Varmista, että header on päällimmäisenä */
            transition: transform 0.8s; /* Lisää siirtymäefekti */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Lisää varjo */
        }        
        .header-hidden {
            transform: translateY(-60px); /* Tämä lisätään */
        }
        .logo {
            height: 50px;
            margin-right: 10px;
        }

        .social-icons a {
            margin-left: 15px;
            color: #333;
            font-size: 26px;
            transition: opacity 0.3s;
        }

        .social-icons a:hover {
            opacity: 0.7;
            transform: translateX(5px);
        }

        /* Banner video */
        .video-container {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            background: #000;
        }

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

        .booking-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 10px 20px;
            color: #fff;
            font-weight: bold;
            background: rgba(10, 115, 230, 0.5);
            border: 1px solid white;
            border-radius: 0 8px 8px 15px;
            cursor: pointer;
            font-size: 1.4em;
            transition: background 0.3s;
            text-decoration: none;
        }

        .booking-btn:hover {
            background: rgba(0, 91, 181, 0.5);
        }
        /* Booking-napin uudet tyylit */
        .booking-btn2 {
            position: absolute;
            bottom: -50px; /* Siirrä headerin alapuolelle */
            right: 3px;
            padding: 10px 20px;
            font-size: 1.4em;
            border: 1px solid white;
            background: rgba(10, 115, 230, 0.5);
            color: #fff;
            font-weight: bold;
            border-radius: 8px 0 15px 8px;
            z-index: 1001; /* Varmista että nappi on päällimmäisenä */
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            white-space: nowrap;
            transition: background 0.3s;
            text-decoration: none;
        }
        .booking-btn2:hover {
            background: rgba(0, 91, 181, 0.5);
        }
        /* Desktop menu */
        .desktop-menu {
            position: sticky;
            top: 100px;
            align-self: start;
            background: white;
            padding: 20px;
            border-radius: 0 8px 8px 15px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            margin-top: 30px;
        }

        .desktop-menu a {
            display: block;
            margin: 15px 0;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .desktop-menu a.active {
            background-color: #f8f8f8; /* Taustaväri */
            color: #0073e6; /* Tekstin väri */
            border-radius: 5px; /* Pyöristetyt kulmat */
            transform: translateX(5px);
        }
        .desktop-menu a:hover {
            background: #f5f5f5;
            transform: translateX(5px);
        }

        /* Mobile menu */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0px;
            left: 0;
            width: 100%;
            height: calc(100% + 100px);
            background: rgba(0,0,0,0.8);
            z-index: 998;
        }

        .mobile-overlay.active {
            display: block;
        }

        .mobile-menu {
            position: fixed;
    top: -100%;
    left: 0px;
    width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    background: white;
    border-radius: 0 8px 8px 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
    transition: top 0.8s ease;
        }

        .mobile-menu.active {
            top: 63px;
        }
.header-hidden ~ .mobile-menu.active {
        top: 3px; /* Kun header on piilotettu */
    transition: top 0.8s ease;
    }
        .mobile-menu a {
            display: block;
            margin: 8px 0;
            text-decoration: none;
            color: #333;
            font-size: 0.95em;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.2s;
            
        }

        .mobile-menu a.active {
            background-color: #f8f8f8; /* Taustaväri */
            color: #0073e6; /* Tekstin väri */
            border-radius: 5px; /* Pyöristetyt kulmat */
            transform: translateX(5px);
        }
        .mobile-menu a:hover {
            background: #f8f8f8;
            transform: translateX(5px);
        }

        /* Main content */
        .main-content {
            margin: 50px 0;
            line-height: 1.6;
            color: #444;
			background-color: #fff;
			z-index: 900;
        }

        .main-content h1 {
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.5em;
        }

        .main-content p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        /* Footer */
        footer {
            text-align: left;
            margin: 50px auto 0;       /* Ylämarginaali 50px, vaakasuora auto */
            max-width: 960px;
            width: 100%;
            background: #f5f5f5;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .hamburger {
    display: none; /* Piilotetaan aluksi */
	width: 37px;
    height: 32px;
    position: fixed;
    top: calc(60px + 3px); /* Headerin korkeus + väli */
    left: 3px;
    font-size: 30px;
    cursor: pointer;
    padding: 4px 7px;
    border: none;
    border-radius: 0 8px 8px 15px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    /*background: white;*/
            border: 1px solid white;
            background: rgba(10, 115, 230, 0.5);
    z-index: 1001; /* Korkeampi kuin header */
    transition: all 0.3s;
        }
.hamburger span {
  position: absolute;
  height: 2px;
/*  background: #333;*/
            background: #fff;
  transition: all 0.3s ease;
}

/* Yläviiva (paksumpi) */
.hamburger span:nth-child(1) {
  width: 60%;
  top: 20%;/*25%*/
  left: 25%;
}

/* Keskiviiva (kapeampi ja lyhyempi) */
.hamburger span:nth-child(2) {
  width: 60%;/*60%*/
  top: 45%;/*43% & 39%*/
  left: 25%;/*50%;
  transform: translate(-50%, -50%);*/
  height: 2px;
}

/* Alaviiva (paksumpi) */
.hamburger span:nth-child(3) {
  width: 60%;
  top: 70%;/*25%*/
  left: 25%;
}

/* Valinnainen hover-efekti */
/*.hamburger:hover span {
  background: #007BFF;
}*/

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
			header {
				   padding: 0px 0px;
				   height:60px; }
			body {
				 padding-top:60px; }

            .desktop-menu {
                display: none;
            }

	            .hamburger {
                display: block;
            }

            .logo {
                margin-left: auto;
                margin-right: 10px;
                height: 43px;
                /*display: none;*/
            }
            .booking-btn2 {
                bottom: -35px;
                font-size: 1em;
                padding: 6px 15px;
            }

            .social-icons {
                margin-left: 0px;
            }

            .main-content h1 {
                font-size: 2em;
            }

            .mobile-menu {
                width: 150px;
                left: 43px;
                max-width: 200px;
                border-radius: 0 8px 8px 15px;
                padding: 10px 5px;
            }
            
            .mobile-menu a {
                padding: 8px 12px;
                font-size: 0.9em;
            }
        }
		
/* Sivunosoitin täplät alkaa */
.page-indicator {
  position: absolute;
  bottom: 5px;
  border-radius: 0 8px 8px 15px;
  left: 50%;
  transform: translateX(-50%);
/*  background-color: rgba(0,0,0,0.2);*/
  border-radius: 8px;
  z-index: 997;
  text-align: center;
  display: none;/*: flex;*/
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 90vw;
  overflow: hidden;
}

.nav-dot {
  width: 13px;
  height: 13px;
  border-radius: 55%;
  background: rgba(0,0,0,0.0);
  border: 2px solid rgba(0,0,0,0.1);
  transition: all 0.3s;
  flex-shrink: 0;
}

.nav-dot.active {
  background: rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.0);/*rgba(0,115,228,1); /*#0073e6;*/
  transform: scale(1.2);
}

.swipe-hint {
  color: white;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  opacity: 0.9;
  animation: pulse 4s infinite;
  white-space: nowrap;
  font-weight: 500;
  background: rgba(0,0,0,0.1);
  padding: 4px 12px;
  border-radius: 25px;
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(0.95); }
}

@media (max-width: 768px) {
   .page-indicator {
       display: flex;
   }

  @media (max-width: 480px) {
    .swipe-hint {
      font-size: 12px;
      padding: 3px 10px;
    }
    .nav-dot {
      width: 12px;
      height: 12px;
    }
  }
}
/* Sivunosoitin täplät loppuu */

/* Nuoli */
        .nuoli {
            content: '';
            position: absolute;
            left: 8px;
            bottom: 15%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid rgba(215, 215, 215, 0.8);
            transition: transform 0.8s;
        }

