/*
Theme Name: BluePeak Solutions
Theme URI: https://bluepeaksolutions.me
Author: Irfan
Author URI: 
Description: A premium WordPress theme for BluePeak Solutions, inspired by Deloitte Middle East.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blue-peak
*/

:root {
  --blue-peak: #004996;
  --blue-peak-dark: #003a78;
  --gray-900: #111827;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.bg-blue-peak {
  background-color: var(--blue-peak);
}
.text-blue-peak {
  color: var(--blue-peak);
}

/* Basic grid and container fallbacks if Tailwind fails */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.grid {
  display: grid;
}
.gap-8 {
  gap: 2rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Hero animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

/* Ensure images fit */
img {
  max-width: 100%;
  height: auto;
}
