/* Google Fonts einbinden */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #282b4a;
  --accent: #ce6c60;
  --light-bg: #f8f9fa;
  --text-dark: #2d3748;
  --text-light: #718096;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #343867;
  border-color: #343867;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: #b85c51;
  border-color: #b85c51;
  color: white;
}

.guest-container {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.auth-card-header {
  text-align: center;
  padding: 2rem 2rem 1rem 2rem;
}

.auth-card-body {
  padding: 2rem;
}

.logo-container {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }
  45% {
    opacity: 0.7;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-25px);
  }
  67% {
    transform: translateY(15px);
  }
  74% {
    transform: translateY(-12px);
  }
  81% {
    transform: translateY(9px);
  }
  87% {
    transform: translateY(-6px);
  }
  92% {
    transform: translateY(4px);
  }
  96% {
    transform: translateY(-2px);
  }
  98% {
    transform: translateY(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container img {
  max-height: 3rem;
  width: auto;
  max-width: calc(100% - 4rem);
  animation: slideUp 1.7s cubic-bezier(0.25, 0.1, 0.25, 1.2) forwards;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

@media (max-width: 576px) {
  .logo-container img {
    max-height: 2.5rem;
  }
}

/* Navbar Styles */
.navbar-brand img {
    height: 30px;
    width: auto;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
}

.nav-link.active {
    color: var(--accent) !important;
}

.navbar .dropdown-item:active {
    background-color: var(--primary);
}

/* Auth Card Styles */
.auth-card-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-card-header p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.form-label {
  font-weight: 400;
  color: var(--text-dark);
}

.form-text {
  color: var(--text-dark);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #b85c51;
  text-decoration: underline;
}

.btn {
  font-weight: 400;
} 