/* Neo-Brutalism Light Corporate Styles */

:root {
  /* Color System - Blue Corporate Palette */
  --primary-blue: #2563eb;
  --secondary-blue: #1e40af;
  --corporate-dark: #1f2937;
  --light-gray: #f8fafc;
  --medium-gray: #f1f5f9;
  --pure-white: #ffffff;
  --text-dark: #1f2937;
  --text-medium: #64748b;
  --text-light: #94a3b8;
  
  /* Typography System */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border System */
  --border-thick: 2px;
  --border-medium: 1.5px;
  --border-light: 1px;
  --radius-sharp: 0px;
  --radius-soft: 4px;
  
  /* Shadow System */
  --shadow-offset: 4px;
  --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--pure-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin: 0 0 var(--space-md) 0;
  color: var(--text-medium);
}

/* Layout Components */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section:nth-child(odd) {
  background: var(--light-gray);
}

.section:nth-child(even) {
  background: var(--pure-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Neo-Brutalism Card System */
.card {
  background: var(--pure-white);
  border: var(--border-thick) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
  position: relative;
  transition: all 0.2s ease;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
}

.card-interactive {
  cursor: pointer;
  border: var(--border-medium) solid var(--primary-blue);
  background: var(--pure-white);
  transition: all 0.15s ease;
}

.card-interactive:hover {
  background: var(--light-gray);
  border: var(--border-thick) solid var(--primary-blue);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary-blue);
}

.card-interactive:active {
  transform: translate(0px, 0px);
  box-shadow: none;
}

/* Button System - Neo Brutalism Style */
.btn {
  font-family: var(--font-primary);
  font-weight: 700;
  border: var(--border-thick) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  padding: var(--space-md) var(--space-xl);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--pure-white);
  border: var(--border-thick) solid var(--primary-blue);
}

.btn-primary:hover {
  background: var(--secondary-blue);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary-blue);
}

.btn-primary:active {
  transform: translate(0px, 0px);
  box-shadow: none;
}

.btn-secondary {
  background: var(--pure-white);
  color: var(--text-dark);
  border: var(--border-thick) solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--light-gray);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
}

.btn-secondary:active {
  transform: translate(0px, 0px);
  box-shadow: none;
}

/* Header Styles */
.header {
  background: var(--pure-white);
  border: var(--border-medium) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-2xl);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-decoration: none;
  border: var(--border-light) solid var(--primary-blue);
  padding: var(--space-sm) var(--space-md);
  transition: all 0.2s ease;
}

.logo:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--primary-blue);
}

.nav {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border: var(--border-light) solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  border: var(--border-light) solid var(--text-dark);
  background: var(--light-gray);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--text-medium);
}

.nav-link:active {
  transform: translate(0px, 0px);
  box-shadow: none;
}

/* Footer Styles */
.footer {
  background: var(--corporate-dark);
  color: var(--pure-white);
  border: var(--border-thick) solid var(--corporate-dark);
  margin-top: var(--space-2xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.footer h3,
.footer h4 {
  color: var(--pure-white);
  border-bottom: var(--border-light) solid var(--pure-white);
  padding-bottom: var(--space-sm);
}

.footer p {
  color: var(--text-light);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: var(--border-medium) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--pure-white);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border: var(--border-thick) solid var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border: var(--border-medium) solid var(--primary-blue);
}

/* Grid and Layout Utilities */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

/* Text Utilities */
.text-primary {
  color: var(--primary-blue);
}

.text-secondary {
  color: var(--text-medium);
}

.text-center {
  text-align: center;
}

.text-large {
  font-size: 1.25rem;
}

.text-small {
  font-size: 0.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

/* Spacing Utilities */
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.p-lg { padding: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pb-xl { padding-bottom: var(--space-xl); }

/* Visual Effects */
.divider {
  height: 2px;
  background: var(--text-dark);
  border: none;
  margin: var(--space-2xl) 0;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
}

/* Interactive States */
.interactive {
  cursor: pointer;
  transition: all 0.2s ease;
}

.interactive:hover {
  transform: translate(-1px, -1px);
}

.interactive:active {
  transform: translate(0px, 0px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .nav {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
  }
  
  .card {
    padding: var(--space-lg);
    margin: var(--space-md) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .btn,
  .nav,
  .interactive {
    border: 1px solid #000 !important;
    box-shadow: none !important;
    transform: none !important;
  }
  
  body {
    background: white !important;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}