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

body,
html {
  height: 100%;
  font-family: sans-serif;
  scroll-behavior: smooth;
}







.hero {
  height: 100vh;
  background-image: url('./images/havsbild.jpg');
  /* Replace with your image or GIF */
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 3rem;
}

/*.hero img {
  width: 120px; 
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
*/

.subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #f0f0f0;
  opacity: 0.85;
  text-align: center;
  max-width: 80%;
}


.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  /* 👈 This is key */
  justify-content: center;
  margin-top: 40px;
  /*width: 100%;*/
  /*max-width: 600px; /* optional: limit max width */
  margin-left: auto;
  margin-right: auto;
}



/*Buttons*/
.scroll-button {
  padding: 12px 30px;
  background-color: rgba(33, 150, 243, 1);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  /*border-radius: 12px;*/
  text-decoration: none;
  text-shadow: none;
  /*box-shadow: 0 4px 8px rgba(74, 144, 226, 0.4);*/
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  text-align: center;
  flex: 1;
  /* 👈 Make buttons grow equally */
  min-width: 230px;
}

.scroll-button:hover {
  background-color: #357ABD;
  /* darker blue on hover */
  box-shadow: 0 6px 12px rgba(53, 122, 189, 0.6);
}

.scroll-button:active {
  background-color: #2a5d8f;
  /* even darker on click */
  box-shadow: 0 2px 4px rgba(42, 93, 143, 0.8);
  transform: translateY(1px);
}





.about-boatle {
  /*background: linear-gradient(135deg, rgb(214, 236, 253), rgb(2, 125, 224));*/

  /*background-color: rgba(33, 150, 243, 1);*/
  background-color: #f9f9f9;
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56zm-39 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm40-40a2 2 0 1 1 0-4 2 2 0 0 1 0 4zM15 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm40 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'%3E%3C/path%3E%3C/svg%3E");
  */
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
}





.form-wrapper {
    display: flex;
  justify-content: center;
  padding-bottom: 50px;
}



.google-form-button {
  
  background-color: #673ab7; /* Google Forms purple */
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  padding: 22px 34px;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.google-form-button:hover {
  background-color: #5e35b1; /* Slightly darker purple on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}



















.first-text-strip {
  background-color: white;
  color: #333;
  text-align: center;
  padding: 30px 20px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  /*min-height: 100vh;*/
  max-width: 1000px;
  /* FULL HEIGHT */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.first-text-strip-text {
  text-align: left;
}

.first-text-strip-text ul {
  padding-left: 20px;
}















.parallax-secondary {
  background-image: url('./images/pic1.jpg');
  /* replace with your image path */
  min-height: 30vh;
  /* or whatever height feels right */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.parallax-secondary {
  background-color: rgba(0, 0, 0, 0.5);
  /* optional dark overlay */
  padding: 40px;
  border-radius: 10px;
}













.info-section {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.info-section h2 {
  margin-bottom: 20px;
}

.info-section p {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}






/*Carouselle*/

.carousel-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.carousel-heading {
  font-size: 2rem;
  margin-bottom: 30px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 40px;
}

.carousel-item {
  flex: 0 0 300px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  scroll-snap-align: start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
















.install-section {
  background-image: url('./images/boat.jpg');
  /* use your background */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  position: relative;
}

.install-overlay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}






.install-box {
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  flex: 1 1 300px;
  min-height: 300px;
}

.install-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.install-box ol {
  padding-left: 20px;
  font-size: 1rem;
}










/* Button styling */
.info-button {
  background-color: rgba(33, 150, 243, 1);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.info-button:hover {
  background-color: #357ABD;
}

/* Modal base styling */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Close button (×) */
.close-button {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-button:hover {
  color: #000;
}














.creators-footer {
  text-align: center;
  background-color: #f8f8f8;
  color: #333;
  padding: 20px;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
}

.creators-footer a {
  color: rgba(33, 150, 243, 1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.creators-footer a:hover {
  color: #357ABD;
  text-decoration: underline;
}























@media (max-width: 768px) {
  .install-box {
    max-width: 100%;
  }
}



@media (min-width: 768px) {
  .google-form-button {
    font-size: 25px;
  }
  
  .subtitle {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .button-group {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .subtitle {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .carousel {
    justify-content: center;
  }

  .first-text-strip {
    padding: 50px 100px;
  }
}