/* -------------- Main -------------- */

/*Header*/
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    transition: all 0.3s ease;
  }
  nav.show {
    display: flex;
  }
  
  /* Hamburger matomas tik telefone */
  .hamburger {
    display: block;
    margin-left: 15px;
  }
  
  .header-buttons .button-pink {
    padding: 10px 18px;   /* mažesnis padding */
    font-size: 0.9em;    /* mažesnis tekstas */
  }

  .header-buttons {
    top: 20px; /* šiek tiek aukščiau */
  }

  
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 20px;
  }
}

/* -------------- Index -------------- */

.hero-image-slider::-webkit-scrollbar {
  display: none; /* paslėpti scroll juostą telefone */
}

@media (min-width: 768px) {
  .how-steps {
    flex-direction: row;
  }
  .step {
    flex: 1;
  }
  .hero {
    justify-content: flex-start;
  }
  .hero-text h1 {
    font-size: 2.6em;
  }
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------- Kontaktai -------------- */

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column; 
    gap: 20px; 
  }
  .contact-image {
    text-align: center;
  }
}

/* -------------- Coming Soon -------------- */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .coming-soon-content h2 {
    font-size: 2em;
  }
  .coming-soon-content p {
    font-size: 1em;
  }
}
