/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f6f4f0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(88, 129, 87, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #588157;
  margin-bottom: 2px;
}

.nav-logo span {
  font-size: 0.8rem;
  color: #a3b18a;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #588157;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #588157;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #588157;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #a3b18a 0%, #588157 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-style: italic;
}

.hero-author {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
}

.cta-button.primary_banner {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.cta-button.primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #588157;
  color: #588157;
  backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.placeholder-image {
  width: 300px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  background-image: url(./kinga_zych.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 2px solid #a0b497;
}

.placeholder-image i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.placeholder-image p {
  font-size: 1rem;
  opacity: 0.8;
}

.placeholder-image2 {
  width: 300px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  background-image: url(./kinga_zych2.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 2px solid #a0b497;
}

.placeholder-image2 i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.placeholder-image2 p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #588157;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a3b18a, #588157);
  border-radius: 2px;
}

/* Services Section */
.services {
  background: #e9e5dc;
}

.service-content {
  max-width: 1000px;
  margin: 0 auto;
}

.service-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.service-intro h3 {
  font-size: 1.8rem;
  color: #588157;
  margin-bottom: 1rem;
}

.service-intro p {
  font-size: 1.2rem;
  color: #2c3e50;
  max-width: 800px;
  margin: 0 auto;
}

.service-benefits {
  margin-bottom: 4rem;
}

.service-benefits h3 {
  font-size: 1.8rem;
  color: #588157;
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: #f6f4f0;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.benefit-item i {
  font-size: 2.5rem;
  color: #588157;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.3rem;
  color: #588157;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #2c3e50;
  line-height: 1.6;
}

.service-text {
  max-width: 800px;
  margin: 0 auto;
}

.service-text h3 {
  font-size: 1.8rem;
  color: #588157;
  margin-bottom: 1.5rem;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.cta-section {
  background: #f6f4f0;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h3 {
  font-size: 1.8rem;
  color: #588157;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

/* Trainings Section */
.trainings {
  background: #f6f4f0;
}

.training-content {
  max-width: 1000px;
  margin: 0 auto;
}

.training-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.training-intro h3 {
  font-size: 1.8rem;
  color: #588157;
  margin-bottom: 1rem;
}

.training-intro p {
  font-size: 1.2rem;
  color: #2c3e50;
  max-width: 800px;
  margin: 0 auto;
}

.training-topics {
  margin-bottom: 4rem;
}

.training-topics h3 {
  font-size: 1.8rem;
  color: #588157;
  text-align: center;
  margin-bottom: 3rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.topic-item {
  background: #e9e5dc;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.topic-item:hover {
  transform: translateY(-5px);
}

.topic-item i {
  font-size: 2.5rem;
  color: #588157;
  margin-bottom: 1rem;
}

.topic-item h4 {
  font-size: 1.3rem;
  color: #588157;
  margin-bottom: 1rem;
}

.topic-item p {
  color: #2c3e50;
  line-height: 1.6;
}

.training-cta {
  text-align: center;
  background: #e9e5dc;
  padding: 3rem;
  border-radius: 15px;
}

.training-cta h3 {
  font-size: 1.8rem;
  color: #588157;
  margin-bottom: 1rem;
}

.training-cta p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: #e9e5dc;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image .placeholder-image {
  width: 250px;
  height: 300px;
  border: 2px solid #a3b18a;
}

.about-image .placeholder-image i {
  color: #588157;
}

.about-text h3 {
  font-size: 2rem;
  color: #588157;
  margin-bottom: 0.5rem;
}

.credentials {
  font-size: 1.1rem;
  color: #a3b18a;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.experience-section,
.education-section,
.approach-section {
  background: #f6f4f0;
  padding: 2rem;
  border-radius: 15px;
}

.experience-section h3,
.education-section h3,
.approach-section h3 {
  font-size: 1.5rem;
  color: #588157;
  margin-bottom: 1.5rem;
}

.experience-section ul,
.education-section ul {
  list-style: none;
}

.experience-section li,
.education-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #a3b18a;
  color: #2c3e50;
}

.experience-section li:last-child,
.education-section li:last-child {
  border-bottom: none;
}

.approach-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
  background: #f6f4f0;
}

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

.pricing-intro p {
  font-size: 1.2rem;
  color: #2c3e50;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-item {
  background: #e9e5dc;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(88, 129, 87, 0.1);
  border-color: #588157;
}

.pricing-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #588157;
  margin-bottom: 1rem;
}

.pricing-item .duration {
  font-size: 0.9rem;
  color: #a3b18a;
  margin-bottom: 0.5rem;
}

.pricing-item .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #588157;
  margin-bottom: 0.5rem;
}

.pricing-item .description {
  font-size: 0.9rem;
  color: #2c3e50;
  font-style: italic;
}

/* Contact Section */
.contact {
  background: #e9e5dc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #588157;
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #588157;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.2rem;
}

.contact-item .note {
  font-size: 0.9rem;
  color: #a3b18a;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  background: #f6f4f0;
  padding: 2rem;
  border-radius: 15px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #588157;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #a3b18a;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #588157;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

/* Footer */
.footer {
  background: #588157;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }
}

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

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

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .placeholder-image {
    width: 250px;
    height: 350px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for sections */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
