@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors - White, Gray-Black, and Yellow Theme */
  --primary-yellow: #F2B705;       /* Clean Solar Yellow */
  --primary-hover: #D99E04;        /* Darker Solar Yellow */
  --secondary-black: #111111;      /* Rich Gray-Black for dark sections */
  --card-bg: #FFFFFF;              /* Pure white card background for contrast */
  --card-border: #E5E7EB;          /* Light gray border */
  --text-primary: #1C1C1C;         /* Dark gray-black for main text */
  --text-secondary: #222222;       /* Very dark gray/black body text for maximum clarity and visibility */
  --text-muted: #888888;           /* Muted text */
  --bg-dark: #F7F3EB;              /* Noticeable soft creamy warm off-white background to prevent eye strain */
  --shadow-color: rgba(0, 0, 0, 0.05);
  --yellow-glow: 0 0 15px rgba(242, 183, 5, 0.2);
  --yellow-glow-strong: 0 0 25px rgba(242, 183, 5, 0.4);
  
  /* Fonts - Matching the modern geometric sans-serif logo */
  --font-display: 'Montserrat', 'Prompt', sans-serif;
  --font-body: 'Prompt', 'Montserrat', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-yellow);
}

/* Common Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--primary-yellow);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* High Quality Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: #000000;
  box-shadow: var(--yellow-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--yellow-glow-strong);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--yellow-glow);
}

.btn-danger {
  background-color: #ff4d4d;
  color: #ffffff;
}

.btn-danger:hover {
  background-color: #ff3333;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.btn-dark:hover {
  background-color: #252525;
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

/* Glowing text and objects */
.text-glow {
  /* removed glow */
}

.border-glow-hover {
  transition: var(--transition-normal);
}

.border-glow-hover:hover {
  border-color: var(--primary-yellow);
  box-shadow: var(--yellow-glow);
}

/* Input Fields styling */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.form-control {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: var(--yellow-glow);
}

/* Page transitions */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness helper */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* bg-dark-section Utility Class for Dark Gray/Black backgrounds */
.bg-dark-section {
  background-color: #0c0c0c !important;
  color: #FFFFFF !important;
}

.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5,
.bg-dark-section h6,
.bg-dark-section .section-title {
  color: #FFFFFF !important;
}

.bg-dark-section p,
.bg-dark-section span:not(.yellow-text):not(.brand-badge) {
  color: #CCCCCC !important;
}

.bg-dark-section .glass-panel {
  background: rgba(30, 30, 30, 0.6) !important;
  border: 1px solid rgba(212, 175, 55, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.bg-dark-section .glass-panel h3,
.bg-dark-section .glass-panel h4,
.bg-dark-section .glass-panel h5 {
  color: #FFFFFF !important;
}

.bg-dark-section .glass-panel p,
.bg-dark-section .glass-panel span {
  color: #CCCCCC !important;
}

.bg-dark-section .brand-badge {
  background-color: #1A1A1A !important;
  color: #FFFFFF !important;
  border-color: #2E2E2E !important;
}

.bg-dark-section .brand-badge:hover {
  color: var(--primary-yellow) !important;
  border-color: var(--primary-yellow) !important;
}

.bg-dark-section .strength-icon-box {
  background: rgba(255, 215, 0, 0.08) !important;
  border-color: rgba(255, 215, 0, 0.15) !important;
}

.bg-dark-section .yellow-text {
  color: var(--primary-yellow) !important;
}

/* App layout (merged from App.css) */
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
}

/* Utility helpers used across pages */
.yellow-text { color: var(--primary-yellow); }
.text-light { color: #CCCCCC; }
.w-full { width: 100%; }
.btn-full { width: 100%; }
.btn-large { padding: 16px 34px; font-size: 1.05rem; }
