/* Vispārējais stils */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
}

/* Navigācija */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(248, 253, 249, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(72,185,88,0.08);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: #48B958;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #48B958;
}

/* Hero sekcija */
.hero {
  text-align: center;
  padding-top: 120px;
  background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 100%);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: #48B958;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #38A146;
}

/* Features */
.features {
  background: #fff;
  text-align: center;
}

.features h2 {
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #f8fdf9;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8f5ea;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(72,185,88,0.15);
  border-color: #48B958;
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #48B958;
}

/* About */
.about {
  background: #f8fdf9;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Contact */
.contact {
  background: #fff;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e8f5ea;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #48B958;
  box-shadow: 0 0 0 3px rgba(72,185,88,0.1);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* Izstrādātājs */
.developer {
  font-size: 0.9rem;
  color: #777;
}

/* Animācijas */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}
