/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 6px -1px rgba(17, 24, 39, 0.1);
}

.btn-default:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 4px 6px -1px rgba(17, 24, 39, 0.1);
}

.btn-accent:hover {
  opacity: 0.9;
}

.btn-hero {
  background: linear-gradient(135deg, #FFD43F, #8A8580);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(17, 24, 39, 0.1);
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

.btn-hero:hover {
  opacity: 0.9;
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  padding: 0.5rem;
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-sm {
  padding: 0.5625rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Card Styles */
.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
      padding-left: 10px;
}

.card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* Input Styles */
.input,
.textarea {
  display: flex;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(255, 212, 63, 0.1);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--muted-foreground);
}

.textarea {
  min-height: 5rem;
  resize: vertical;
  font-family: inherit;
}

/* Label Styles */
.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-logo img {
  height: 2.5rem;
  width: auto;
}

.header-nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.header-nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-desktop a:hover,
.header-nav-desktop a.active {
  color: var(--accent);
}

.header-cta {
  display: none;
  flex: 1;
  justify-content: flex-end;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  max-width: 24rem;
  background-color: var(--background);
  overflow-y: auto;
  box-shadow: -1px 0 3px rgba(0, 0, 0, 0.1);
  top: 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mobile-menu-links a {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
  color: var(--foreground);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  background-color: rgba(255, 212, 63, 0.1);
  color: var(--accent);
}

/* Footer Styles */
footer {
  background-color: var(--gray-900);
  color: white;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: var(--primary-brand);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-brand);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  height: 24rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
}

/* Full screen hero section (for homepage) */
.hero-section.hero-fullscreen {
  height: 100vh;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section.hero-fullscreen .hero-video {
  object-fit: cover;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 212, 63, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background-color: white;
  color: var(--foreground);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast.info {
  border-left: 4px solid #3b82f6;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast.removing {
  animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Styles */
section {
  padding: 5rem 1.5rem;
}

section.py-12 {
  padding: 3rem 1.5rem;
}

/* Responsive adjustments for components */
@media (max-width: 1023px) {
  .header-nav-desktop {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header-nav-desktop {
    display: flex;
  }
  
  .header-cta {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

