/* -------------- MAIN -------------- */

:root {
  --primary: #00c0a7;
  --dark: #444;
  --light: #f9f9f9;
  --gray: #e0e0e0;
  --pink: #ff4d8a;
  --blue-pastel-bg: #bbc9dd;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--dark);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo img {
  height: 60px; 
  width: auto;
  display: block;
}
.header-buttons {
  display: flex;
  gap: 15px;
}
nav {
  position: relative;
  left: 50px; /* paslinkimas į dešinę */
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
nav a:hover {
  color: var(--primary);
}

.button-pink {
  background-color: var(--pink);
  color: white;
  border: none;
  padding: 10px 25px; /*(pading sutvarkyti)*/
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1em;
  text-decoration: none; 
}
.button-pink:hover {
  background-color: #e03e79;
}


/* Footer */
footer {
  background: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #666;
}


/* -------------- Index -------------- */

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-image-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: var(--gray);
  padding: 10px;
  border-radius: 10px;
  max-width: 320px; 
}
.hero-image-slider img {
  flex-shrink: 0;
  width: 300px;
  height: 390px;
  object-fit: cover;
  border-radius: 5% / 5%;
  scroll-snap-align: center;
}

.hero-text {
  max-width: 620px;
  flex-grow: 1;
}
.hero-text h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.2em;
  color: #555;
}


/* How */
.how-section {
  background: var(--blue-pastel-bg);
  padding: 80px 20px;
}
.how-section h2 {
  color: var(--dark);
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px; /* tarpai */
  max-width: 1450px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 1px;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s ease;
}
.step-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 60px;
  background: rgba(122, 135, 146, 0.514);
  border-radius: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 25px;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
.step div p {
 font-size: 1em;
}

.section-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/*About*/
.about-section {
  background: #fff0f5; /* Pastelinė spalva, galima keisti */
  padding: 80px 20px;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #333;
}
.about-content p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.6em;
} 

/* -------------- Kaip tai veikia -------------- */

/* How section */
.how-it-works-page {
  background: var(--blue-pastel-bg);
  padding: 60px 20px;
}
.how-it-works-page h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}
.stepai {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.number {
  width: 50px;
  height: 50px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
}
.content h3 {
  margin-bottom: 8px;
}
.content p {
  color: #555;
  line-height: 1.5em;
}

/* -------------- Kontaktai -------------- */

/* Contact section */
.contact-section {
  background: rgb(218, 201, 255);
  padding: 60px 20px;
}
.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-text {
  flex: 1;
}
.contact-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.contact-text p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 10px;
}
.contact-info {
  margin-top: 20px;
}
.contact-info p {
  font-size: 1.1em;
  margin: 8px 0;
}
.contact-info span {
  font-weight: bold;
  color: var(--primary);
}
.contact-section a {
  position: relative;
  font-weight: 500;
  color: #1f0855;
  text-decoration: none;
}

.contact-section a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ff5722;
  transition: all 0.3s ease;
}
.contact-icon {
  width: 20px;   /* pasikeiti pagal poreikį */
  height: 20px;
  margin-right: 8px; /* kad tekstas neliptų ant ikonos */
  vertical-align: middle;
}

.contact-section a:hover::after {
  left: 0;
  width: 100%;
}


/* Image */
.contact-image {
  flex: 1;
  text-align: center;
}
.contact-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* -------------- Coming Soon -------------- */


/* Coming Soon Section */
.coming-soon-section {
  background: #ffe4f0;
  padding: 200px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon-content {
  max-width: 700px;
}

.coming-soon-content h2 {
  font-size: 2.5em;
  color: var(--primary);
  margin-bottom: 20px;
}

.coming-soon-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.coming-soon-content .button-pink {
  background-color: var(--pink);
  color: rgb(255, 255, 255);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;

}

.coming-soon-content .button-pink:hover {
  background-color: #e03e79;

}
