* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #ffffff;
  color: #003049;
}

.site-header {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1000; /* että näkyy kaiken päällä */
}

.site-logo {
  height: 80px; /* voit säätää kokoa */
}

.hero {
  background-image: url('meri3.jpg');
  background-size: cover;
  background-position: left center;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 52, 56, 0.425);
}

.hero-text {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #f97316;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #c24700;
}

section.info {
  padding: 2rem 2rem;
  text-align: center;
}

.secondary-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border: 2px solid #f97316;
  color: #f97316;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #f97316;
  color: #ffffff;
}


.carousel-section {
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 60vh;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.slide.active {
  opacity: 1;
}

.jets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.jet-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.jet-card:hover {
  transform: translateY(-10px);
}

.jet-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.jet-info {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jet-info h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #003049;
}

.jet-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555;
  text-align: left;
}

.jet-prices {
  margin-top: 1.5rem;
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}


.contact-wrapper {
  background-color: #ffffff; /* Tummansininen tausta */
  padding: 10px 5px; /* Väliä ylös ja alas */
}


.contact-section {
  background-color: #ffffff; /* tummempi sininen */
  color: #003049; /* vaaleampi sininen */
  padding: 40px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.5rem;
  color: #002f49d3; /* tummansininen */
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 20px;
}

.contact-grid h4 {
  font-size: 1.3rem;
  color: #003049;
  margin-bottom: 5px;
}

.contact-grid p, .contact-grid a {
  font-size: 1.1rem;
  color: #f97316; /* oranssi */
  text-decoration: none;
}

.contact-grid a:hover {
  text-decoration: underline;
}


body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Estää turhan vaakascrollauksen */
}

.faq-section {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  gap: 50px;
}
.faq-header {
  flex: 1;
}
.faq-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.faq-header p {
  font-size: 18px;
  color: #666;
}
.faq-content {
  flex: 2;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003049; /* normaali väri */
  -webkit-tap-highlight-color: transparent; /* poistaa iOS sinisen vilkahduksen */
  -webkit-user-select: none; /* estää korostuksen painettaessa */
  user-select: none;
}
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 18px;
  color: #444;
}
.faq-question.active .arrow {
  transform: rotate(180deg);
}
.arrow {
  transition: transform 0.3s;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    background-position: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .site-header {
    top: 10px;
    left: 10px;
  }

  .site-logo {
    height: 60px;
  }

  .jets {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .jet-card {
    width: 90%;
  }

  .carousel {
    height: 40vh;
  }

  .faq-section {
    flex-direction: column;
    padding: 20px;
  }

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-header p,
  .faq-answer,
  .faq-question {
    font-size: 1rem;
  }

  .contact-section {
    padding: 20px;
  }

  .contact-grid {
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .jet-card {
    width: 90%;
  }

  .jet-info h3 {
    font-size: 1.5rem;
  }

  .jet-info p {
    font-size: 0.95rem;
  }
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}