/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Header and Navigation */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e91e63;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

/* Hero Section */
.hero {
  display: grid;
  padding: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  margin-top: -2rem;
  min-height: 100vh;
}

.hero-content h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.hero-claim {
  font-size: 1.3rem;
  color: #e91e63;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #c2185b;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

/* Image Placeholder */
.image-placeholder {
  width: 100%;
  min-height: 350px;
  background-color: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  border: 2px dashed #ddd;
}

/* About Section */
.about {
  background-color: #f9f9f9;
  padding: 6rem 20px;
}

.about .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Kurs Section */
.outdoor-kurs {
  background-color: #fff;
  padding: 6rem 20px;
}

.outdoor-kurs .container {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  align-items: center;
}

.outdoor-kurs h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.outdoor-kurs p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Outdoor course image sizing */
.kurs-image img {
  width: 100%;
  max-width: 420px; /* 👈 controls size */
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Journey Section */
.journey {
  background-color: #f9f9f9;
  padding: 6rem 20px;
}

.journey .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.journey-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.journey-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Qualifications Section */
.qualifications {
  background-color: #fff;
  padding: 6rem 20px;
}

.qualifications h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.qualification-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.qualification-item .icon {
  font-size: 2rem;
}

.qualification-item span:last-child {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* Courses Section */
.courses {
  background-color: #f9f9f9;
  padding: 6rem 20px;
}

.courses h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

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

.course-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.course-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.course-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.course-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Approach Section */
.approach {
  background-color: #fff;
  padding: 6rem 20px;
}

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

.approach-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.approach-list li .icon {
  font-size: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  padding: 6rem 20px;
}

.contact h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 700;
}

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

/* Form container */
form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f9f9f9; /* light background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Input and textarea styling */
form input,
form textarea {
  font-family: inherit;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #e91e63; /* violet-ish focus */
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

/* Placeholder styling */
form input::placeholder,
form textarea::placeholder {
  color: #999;
}

/* Button styling */
form .btn-primary {
  padding: 0.85rem 1.5rem;
  background-color: #e91e63;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

form .btn-primary:hover {
  background-color: #e91e63;
  transform: translateY(-2px);
}

form .btn-primary:active {
  transform: translateY(0);
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 4rem 20px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .journey .container {
    grid-template-columns: 1fr;
  }

  .journey-image {
    order: -1;
  }

  .approach .container {
    grid-template-columns: 1fr;
  }

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

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 15px;
    margin-top: 0;
  }

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

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

  .about,
  .journey,
  .qualifications,
  .courses,
  .approach,
  .contact {
    padding: 4rem 15px;
  }

  .about-content h2,
  .journey-content h2,
  .qualifications h2,
  .courses h2,
  .approach-content h2,
  .contact h2 {
    font-size: 2rem;
  }

  .about-content p,
  .journey-content p {
    font-size: 1rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-list li {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .nav-links a {
    padding: 0.3rem 0;
  }

  .hero-content h2 {
    font-size: 1.75rem;
  }

  .about-content h2,
  .journey-content h2,
  .qualifications h2,
  .courses h2,
  .approach-content h2,
  .contact h2 {
    font-size: 1.75rem;
  }

  .qualification-item {
    padding: 1rem;
  }

  .qualification-item span:last-child {
    font-size: 1rem;
  }

  .course-card {
    padding: 1.5rem;
  }

  form {
    padding: 1.5rem;
  }
}
