/*
Theme Name: Melurna
Description: Privacy Risk Intelligence for Modern Enterprises - A professional WordPress theme for Melurna's business website
Version: 1.0
Author: Melurna Team
Text Domain: melurna
*/

/* Import Tailwind CSS via CDN for development - replace with compiled CSS in production */
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css");

/* Custom CSS Variables */
:root {
  --primary: 225 90% 60%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222 47% 11%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222 47% 11%;
  --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: 225 90% 60%;
  --radius: 0.5rem;
  --background: 210 50% 98%;
  --foreground: 222 47% 11%;
}

/* Custom Styles */
.melurna-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

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

.melurna-gradient-text {
  background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #13da2e, #ef4444, #3b82f6);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.melurna-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.melurna-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.melurna-btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.melurna-btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
  text-decoration: none;
}

.melurna-btn-secondary {
  background-color: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.melurna-btn-secondary:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-decoration: none;
}

/* WordPress specific styles */
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-heading {
  margin-bottom: 1rem;
}

/* Hero section styles */
.melurna-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.melurna-hero-content {
  text-align: center;
  color: white;
}

/* Feature cards */
.melurna-feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.melurna-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Testimonial styles */
.melurna-testimonial {
  background: #f8fafc;
  border-left: 4px solid hsl(var(--primary));
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* Footer menu styles */
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #111827;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .melurna-hero-title {
    font-size: 2.5rem;
  }

  .melurna-section-padding {
    padding: 3rem 1rem;
  }

  .melurna-hero {
    min-height: 60vh;
  }
}

@media (min-width: 769px) {
  .melurna-hero-title {
    font-size: 4rem;
  }

  .melurna-section-padding {
    padding: 5rem 2rem;
  }
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
