/* Custom styles for HTML/PHP version */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* CSS Variables */
:root {
  --ocean-deep: 200 100% 18%;
  --turquoise: 196 100% 45%;
  --aqua-light: 195 69% 73%;
  --gold: 43 65% 52%;
  --gold-light: 43 65% 70%;
  --sand: 35 55% 91%;
  --sand-dark: 35 30% 85%;
  --crypto-purple: 263 85% 43%;
  --tech-blue: 218 97% 57%;
  --success: 158 100% 41%;
  --background: 0 0% 100%;
  --foreground: 200 100% 18%;
  --border: 35 30% 85%;
  --muted-foreground: 200 30% 40%;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.font-display {
  font-family: 'Poppins', sans-serif;
}

.font-mono {
  font-family: 'Space Mono', monospace;
}

/* Utility Classes */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(43, 65%, 52%) 0%, hsl(43, 65%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-ocean {
  background: linear-gradient(135deg, hsl(200, 100%, 18%) 0%, hsl(196, 100%, 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-ocean {
  background: linear-gradient(135deg, hsl(200, 100%, 18%) 0%, hsl(196, 100%, 45%) 100%);
}

.bg-gradient-gold {
  background: linear-gradient(135deg, hsl(43, 65%, 52%) 0%, hsl(43, 65%, 70%) 100%);
}

.bg-gradient-hero {
  background: linear-gradient(180deg, rgba(0, 59, 92, 0.9) 0%, rgba(0, 59, 92, 0.4) 50%, rgba(0, 165, 227, 0.3) 100%);
}

.card-luxury {
  background: hsl(var(--background));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 4px 24px -4px hsla(200, 100%, 18%, 0.1);
  transition: all 0.3s;
}

.card-luxury:hover {
  box-shadow: 0 8px 40px -8px hsla(200, 100%, 18%, 0.2);
  border-color: hsl(43 65% 52% / 0.3);
  transform: translateY(-4px);
}

.card-glass {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
}

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

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

/* Color Utilities */
.text-ocean { color: hsl(196, 100%, 45%); }
.text-gold { color: hsl(43, 65%, 52%); }
.text-success { color: hsl(158, 100%, 41%); }
.bg-ocean-deep { background-color: hsl(200, 100%, 18%); }
.bg-gold { background-color: hsl(43, 65%, 52%); }
.bg-success { background-color: hsl(158, 100%, 41%); }
.border-gold { border-color: hsl(43, 65%, 52%); }
.bg-secondary\/30 { background-color: hsl(35 55% 91% / 0.3); }

/* Navbar Text Color Fixes - Ensure text is always visible */
/* Force white text on navbar links when navbar has background */
#navbar.navbar-scrolled nav a,
#navbar.navbar-scrolled nav span:not(.text-gold):not(.text-ocean-deep),
#navbar.navbar-scrolled button:not([class*="text-ocean"]):not([class*="text-gold"]) {
  color: white !important;
}

/* Also target navbar with inline background style */
#navbar[style*="background-color"] nav a,
#navbar[style*="background-color"] nav span:not(.text-gold):not(.text-ocean-deep),
#navbar[style*="background-color"] button:not([class*="text-ocean"]):not([class*="text-gold"]) {
  color: white !important;
}

/* Professional styling for content sections */
main {
  color: hsl(var(--foreground));
}

section.bg-background {
  color: hsl(var(--foreground));
}

/* Ensure proper text contrast on all pages */
.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}