@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 2rem;
  height: 110px;
  box-sizing: border-box;
}

.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar .logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar .nav-links a:hover {
  background-color: #fff5e6;
  color: #ffbf00;
}

.nav-profile-picture {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 5px;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.navbar .nav-links a:hover .nav-profile-picture {
  border-color: #ffbf00;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
    height: 140px;
  }

  .navbar .logo img {
    height: 2.8rem;
  }

  .navbar .nav-links {
    gap: 1rem !important;
  }

  .navbar a {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 0;
  }

  .navbar .nav-links {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }

  .navbar a {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }

  .container {
    padding: 1rem;
  }
}

/* Accent color helper */
.accent {
  color: #ffbf00;
}

/* Button styles */
button, input[type="button"], input[type="submit"] {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover:not(:disabled), input[type="button"]:hover:not(:disabled), input[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
}

button:active:not(:disabled), input[type="button"]:active:not(:disabled), input[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
}

/* Form styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ffbf00;
  box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

.btn {
  background: #ffbf00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  border: 3px solid black;
  box-shadow: 4px 4px black;
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn:active:not(:disabled) {
  transform: translateX(4px) translateY(4px);
  box-shadow: none;
}

.btn:disabled {
  color: #ababab !important;
  border-color: #ababab;
  box-shadow: 4px 4px #ababab !important;
  background: #ffffff !important;
  cursor: not-allowed;
}

.btn-alt {
    background: #ffffff;
    color: #000;
}

/* modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 #000;
  width: 90%;
  max-width: 500px;
}

.modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* nav additional stuff */
.navbar .nav-links i {
  font-size: 1.25rem;
  vertical-align: middle;
}

.navbar .nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.navbar .nav-links a:hover i {
  transform: scale(1.1) !important;
}