@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

body {
  background: linear-gradient(135deg, #382ca0, #2a1f7a);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section {
  padding: 8rem 2rem 4rem;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.expierence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.expierence-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.expierence-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
}

.expierence-image-right {
  width: 100%;
  height: 200px;
  object-fit: none;
  transition: transform 0.4s ease;
}
.expierence-image-left {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expierence-card:hover .expierence-image-left {
  transform: scale(1.05);
}

.berufserfahrung-info {
  padding: 1.5rem;
}

.berufserfahrung-info h3 {
  color: #64ffda;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.berufserfahrung-info h4 {
  color: #ccd6f6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.berufserfahrung-info p {
  color: #8892b0;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: #382ca0f2;
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  position: relative;
  opacity: 0.8;
  transition: all 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #64ffda;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #ccd6f6;
  font-size: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .expierence-grid {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    padding: 1rem;
  }

  nav a {
    margin: 0.5rem 0;
  }
}
