/* Titan Financial Group - Custom Premium Styles */

:root {
  --titan-blue: #2563EB;
  --titan-dark: #111827;
  --titan-light: #FFFFFF;
  --titan-gray: #F9FAFB;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--titan-dark);
  background-color: var(--titan-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mercury-style spacing and clarity */
section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Buttons */
.btn-primary {
  @apply bg-titan-blue text-white px-6 py-3 rounded-lg font-medium transition-all hover:bg-opacity-90 active:scale-95;
}

.btn-secondary {
  @apply bg-transparent border border-titan-blue text-titan-blue px-6 py-3 rounded-lg font-medium transition-all hover:bg-titan-blue hover:text-white active:scale-95;
}

.btn-ghost {
  @apply text-titan-dark px-6 py-3 rounded-lg font-medium transition-all hover:bg-titan-gray active:scale-95;
}

/* Card effects */
.titan-card {
  @apply bg-white border border-gray-100 rounded-2xl p-8 shadow-sm transition-all;
}

/* Typography polish */
h1, h2, h3, h4 {
  @apply tracking-tight font-bold;
}

h1 { @apply text-4xl lg:text-6xl; }
h2 { @apply text-3xl lg:text-4xl mb-6; }

p {
  @apply text-gray-600 leading-relaxed;
}

/* Dashboard UI Mockup */
.dashboard-mockup {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 480px;
}

.db-header {
    height: 56px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
}

.db-sidebar {
    width: 200px;
    border-right: 1px solid #f3f4f6;
    background: #f9fafb;
    padding: 1.5rem 1rem;
}

.db-main {
    flex: 1;
    padding: 1.5rem;
    background: #ffffff;
    overflow-y: auto;
}

.db-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 1rem;
}

.chart-bar {
    width: 32px;
    background: var(--titan-blue);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.db-nav-item {
    height: 32px;
    border-radius: 6px;
    background: #e5e7eb;
    margin-bottom: 0.75rem;
    width: 100%;
}

.db-nav-item.active {
    background: var(--titan-blue);
    opacity: 0.1;
}

/* Hero gradient */
.hero-gradient {
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Announcement Bar Animation */
@keyframes slide-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.animate-slide-right {
  animation: slide-right 0.5s ease-out forwards;
}
