@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #F2A413;
  --secondary: #F27D16;
  --accent: #F2541B;
  --dark: #0D0D0D;
}

body {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Premium Card Style */
.premium-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

/* Glassmorphism utility */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Gradients */
.bg-gradient-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
}

/* Fluid animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Button */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-premium:hover::after {
  opacity: 0.1;
}

/* Form Styling */
input,
select,
textarea {
  border-radius: 0.75rem !important;
  transition: all 0.3s ease !important;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(242, 164, 19, 0.2) !important;
}

/* =============================================
   NAVBAR STYLES — must override Tailwind CDN
   ============================================= */

.glass-nav {
  background-color: #0D0D0D !important;
  border-bottom: 1px solid rgba(242, 164, 19, 0.2) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  position: relative;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: color 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #F2A413 !important;
  opacity: 1 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F2A413, #e8550a);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}



.mobile-nav-link {
  display: flex !important;
  align-items: center;
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600;
  border-radius: 0.875rem;
  transition: all 0.2s ease;
  gap: 0.75rem;
  text-decoration: none;
}

.mobile-nav-link:hover {
  background: rgba(242, 164, 19, 0.12) !important;
  color: #F2A413 !important;
}

.mobile-nav-link .nav-icon {
  width: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3) !important;
  transition: color 0.2s;
}

.mobile-nav-link:hover .nav-icon {
  color: #F2A413 !important;
}

#mobile-menu {
  background-color: #0D0D0D !important;
}