/* CSS START */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --animation-duration: 0.3s;
  --border-radius: 0.75rem;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --navbar-height: 60px;
  --primary: #0ea5e9;
  --accent: #f59e0b;
}

.font-bebas {
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.05em;
}

.font-dmsans {
  font-family: "DM Sans", sans-serif;
}

/* MEGA NAVBAR STYLES */
.navbar {
  min-height: var(--navbar-height);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%);
}

[data-theme="dark"] .navbar {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.dropdown-content {
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
}

[data-theme="dark"] .dropdown-content {
  background: rgba(55, 65, 81, 0.95);
}

.btn-sm {
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.btn-sm:hover {
  transform: scale(1.05);
}

.btn-sm.btn-circle {
  width: 2rem;
  height: 2rem;
}

/* Glass Morphism For Dark Mode */
[data-theme="dark"] .card,
[data-theme="dark"] .btn {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* BUTTON */
.btn-hover-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-hover-effect:hover::before {
  left: 100%;
}

/* FORM */
.input:focus,
.select:focus,
.textarea:focus {
  transform: scale(1.02);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.1);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--b2));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: darken(var(--primary), 10%);
}

/* LOADING STATES */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* GRADIENT */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* CARD */
.card-hover {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

/* DARK THEME */
[data-theme="dark"] {
  --b1: #1f2937;
  --b2: #374151;
  --bc: #ffffff;
  --p: #60a5fa;
  --a: #a78bfa;
  .text-base-content {
    color: #ffffff;
  }
}

/* LIGHT THEME */
[data-theme="light"] {
  --b1: #ffffff;
  --b2: #f3f4f6;
  --bc: #1f2937;
  --p: #0ea5e9;
  --a: #f59e0b;
}

.hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.footer {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

/* Payment */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.payment-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 100%;
}

[data-theme="dark"] .payment-card {
  background: #1f2937;
  color: #ffffff;
}

.payment-card input {
  margin-bottom: 1rem;
}

* {
  transition: color 0.3s ease, background-color 0.3s ease;
}

body {
  line-height: 1.6;
  font-size: 1rem;
}

/* CSS END */
