/* Base styles */
body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
  }

  /* Navbar styles */
  .navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .nav-item{
    font-size:1.25rem;
    font-weight: 500;
  }

  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-item {
    align-items: center;
    justify-content: center;
    text-align: center;
  }


  .nav-item a:hover{
    color: #2563eb;
    background-color: #f1f5f9;
    border-radius: 8px;
  }

  .lang-icon{
    width:30px;
    height:30px;
    margin-left:2rem;
  }
  
  /* Button styles */
  .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-primary:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    transform: translateY(-1px);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }

  /* Tab styles */
  .tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
  }
  
  .tabs button {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
  }
  
  .tabs button:hover {
    color: #2563eb;
    background-color: #f1f5f9;
  }
  
  .tabs button.active {
    color: #2563eb;
    background-color: #eff6ff;
    font-weight: 600;
  }
  
  /* Form styles */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

    /* Form container visibility */
  .form-container {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .form-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Error messages */
  .text-danger {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
  /* Spinner styles */
  .spinner-border {
    width: 1.25rem;
    height: 1.25rem;
    border-width: 2px;
  }

  .content-section {
    padding: 2rem;
  }

  .content-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display:flex;
  }

  .content-section h1 section {
    color: #2563eb;
    font-weight: 700;
  }

  .content-section .hero-text{
    margin-right:0.5rem;
    color:#2563eb;
    font-weight:700;
  }

  .content-section .subtext {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.586);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.benefit-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.how-it-works {
  margin-top: 0.5rem;
}

.how-it-works h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  display:flex;
}

.steps-list{
  list-style:none;
  padding:0;
  position:relative;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2563eb;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  position:relative;
}

.step-number {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color: white;
  width: 40px;
  height: 40px;
  border-radius:50%;
  align-items: center;
  justify-content: center;
  display:flex;
  font-size: 1.25rem;
  font-weight:600;
  margin-right:1rem;
}

.form-section {
  padding:2rem;
}


.form-section .form-header {
  display:none;
}
.form-section .form-subtext{
  display:none;
  font-size:1rem;
}
.form-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.form-section .hero-text{
  color:#2563eb;
  font-weight:700;
}

  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-top:0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
  }

  .gift-icon{
    color: #2563eb;
    margin-right:0.5rem;
  }

  .offer-section .btn-primary{
    max-width: 200px;
  }
  .offer-section .btn-primary a{
    color:white;
    text-decoration:none;
  }

  .offer-section .subtext{
    font-size:1rem;
    color: #4b5563;
    margin-top:0.5rem;
    margin-bottom:0;
  }

  .active-highlight {
    animation: pulse-highlight 2s ease-in-out;
    border-color: #ff6b6b !important;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  }

  @keyframes pulse-highlight {
    0%, 100% {
      border-color: #ff6b6b;
      box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    50% {
      border-color: #2563eb;
      box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    }
  }


@media (max-width: 1023px) {
  .col-7 { order: 2; }
  .col-5 { order: 1; }

  .col-5 {
    margin-bottom:0;
    padding-bottom: 0;
  }

  .col-7 {
    margin-top:0;
    padding-top: 0;
  }

  html[lang="de"] .form-section .form-header {
    font-size: 1rem;
  }
  .form-section {
    border:none !important;
    border-radius:0 !important;
    width:100%;
  }

  .form-section .form-hero{
    display:none;
  }

  .benefits-list {
    align-items: start;
    justify-content: start;
    text-align: start;
    border-radius:0;
    padding:0;
    margin:0;
    
  }

  .benefits-content-wrapper .subtext{
    font-size:1rem;
    margin-top:0.5rem;
    margin-bottom:0;
  }

  .form-section .form-header {
    display:block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display:flex;
  }
  .form-section .form-subtext{
    display:block;
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .organizer-landing .row {
        flex-direction: column;
    }
  .content-section .firstHeader{
    display:none;
    }


  .content-section h1 {
        font-size: 1.3rem;
        
    }

  .content-section, .image-section {
        width: 100%;
        border: none !important;
        border-radius: 0 !important;
    }
  
  .benefit-item h4{
    font-size: 1.25rem;
  }


  .steps-list::before {
        left: 10px;
    }
}