/* Partner Page Specific Styles */

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav-menu .active {
  color: #a0e6d2;
  font-weight: 600;
}

/* Partner Hero Section */
.partner-hero {
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(160, 230, 210, 0.1), rgba(205, 230, 110, 0.1));
}

.partner-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partner-hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2d3748;
  line-height: 1.2;
}

.partner-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a5568;
  line-height: 1.6;
}

.partner-hero-image {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.partner-hero-image .laptop-mockup {
  width: 400px;
  height: auto;
}

.partner-hero-image .mobile-mockup {
  width: 200px;
  height: auto;
}

/* Problems Section */
.problems-section {
  padding: 80px 0;
  position: relative;
  background: white;
}

.problems-content {
  position: relative;
}

.problems-text {
  text-align: center;
  margin-bottom: 3rem;
}

.problems-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.problems-text p {
  font-size: 1.2rem;
  color: #4a5568;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.problem-card p {
  color: #4a5568;
  line-height: 1.6;
}



/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(160, 230, 210, 0.1), rgba(205, 230, 110, 0.1));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.benefit-card p {
  color: #4a5568;
  line-height: 1.6;
}


/* Prijavite se odmah Section */
.prijavite-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(160, 230, 210, 0.1), rgba(205, 230, 110, 0.1));
}

.prijavite-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prijavite-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a202c;
  font-weight: 700;
}

.prijavite-content p {
  font-size: 1.3rem;
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.prijavite-content a {
  color: #1a202c;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.prijavite-content a:hover {
  color: #2d3748;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a5568;
  line-height: 1.6;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.2rem;
}

.sport-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sport-images img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .partner-hero-content,
  .problems-grid,
  .benefits-grid,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .prijavite-content h2 {
    font-size: 2rem;
  }

  .prijavite-content p {
    font-size: 1.1rem;
  }

  .partner-hero-image {
    flex-direction: column;
    gap: 1rem;
  }

  .partner-hero-image .laptop-mockup {
    width: 300px;
  }

  .partner-hero-image .mobile-mockup {
    width: 150px;
  }

  .sport-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-hero-text h1 {
    font-size: 2rem;
  }


  .sport-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
