@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%; /* White background */
    --foreground: 39 98% 50%; /* Gold text as default */
    --card: 222 47% 11%; /* Navy blue for card background */
    --card-foreground: 39 98% 50%; /* Gold text for cards */
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 221 83% 53%; /* Original primary blue, can be adjusted if needed */
    --primary-foreground: 39 98% 50%; /* Gold for primary button text */
    --secondary: 210 40% 96%;
    --secondary-foreground: 222.2 84% 4.9%;
    --muted: 210 40% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 39 98% 50%; /* Gold for accents */
    --accent-foreground: 222 47% 11%; /* Navy for accent text */
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 39 98% 50%; /* Gold for rings */
    --radius: 0.5rem;
  }

  .dark {
    --background: 222 47% 11%; /* Navy blue background for dark mode */
    --foreground: 39 98% 50%; /* Gold text for dark mode */
    --card: 222 47% 11%; /* Navy blue for card background */
    --card-foreground: 39 98% 50%; /* Gold text for cards */
    --popover: 222 47% 11%;
    --popover-foreground: 39 98% 50%;
    --primary: 39 98% 50%; /* Gold for primary in dark mode */
    --primary-foreground: 222 47% 11%; /* Navy for primary button text in dark */
    --secondary: 217 33% 17%;
    --secondary-foreground: 39 98% 50%;
    --muted: 217 33% 17%;
    --muted-foreground: 215 20% 65%;
    --accent: 39 98% 50%;
    --accent-foreground: 222 47% 11%;
    --destructive: 0 63% 31%;
    --destructive-foreground: 39 98% 50%;
    --border: 217 33% 17%;
    --input: 217 33% 17%;
    --ring: 39 98% 50%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
    font-family: 'Poppins', sans-serif; /* Adding a more modern font */
  }
}

/* Remove gradient-bg, use plain background */
.main-background {
  @apply bg-background;
}

.gold-text {
  color: #D4AF37; /* A specific gold hex code */
}

.navy-bg {
  background-color: #001f3f; /* Navy blue hex code */
}

.gold-gradient-text {
  background: linear-gradient(135deg, #AE8625 0%, #F7EF8A 50%, #D2AC47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button-gold {
  background: linear-gradient(135deg, #AE8625 0%, #F7EF8A 50%, #D2AC47 100%);
  color: #001f3f; /* Navy text on gold button */
}

.button-gold:hover {
  background: linear-gradient(135deg, #D2AC47 0%, #F7EF8A 50%, #AE8625 100%);
}

.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.slide-in {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
    text-decoration: none !important;
  }


