/* 
 * ACROMATICO EDUCATION PLATFORM - BRAND STYLESHEET
 * Thin fonts, clean design, Tesla x Apple x Patagonia aesthetic
 */

/* Import Inter font (thin weights) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --primary-teal: #4794A6;
  --primary-teal-hover: #5aa5b8;
  --primary-teal-light: rgba(71, 148, 166, 0.1);
  --primary-teal-dark: #3a7a8a;
  
  /* Neutrals */
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  
  /* Accents */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 48px;
  
  /* Font Weights */
  --weight-thin: 100;
  --weight-extralight: 200;
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
}

/* Global Resets & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: var(--weight-light);
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--weight-extralight);
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
}

h3 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-normal);
}

h5 {
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
}

p {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--white-60);
}

/* Logo Styling */
.logo {
  width: 180px;
  height: auto;
  display: block;
}

.logo-small {
  width: 120px;
  height: auto;
}

.logo-large {
  width: 240px;
  height: auto;
}

/* Glassmorphism Container */
.glass-container {
  background: var(--white-05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Primary Button - Acromatico Teal */
.btn-primary {
  background: var(--primary-teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--primary-teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(71, 148, 166, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: var(--white-20);
  cursor: not-allowed;
  transform: none;
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: var(--primary-teal);
  background: var(--primary-teal-light);
}

/* Input Fields */
input, textarea, select {
  font-family: 'Inter', sans-serif;
  font-weight: var(--weight-light);
  font-size: var(--text-base);
  padding: 14px 16px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: all 0.3s ease;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-teal);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px var(--primary-teal-light);
}

input::placeholder, textarea::placeholder {
  color: var(--white-40);
  font-weight: var(--weight-light);
}

/* Cards */
.card {
  background: var(--white-05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Top Navigation Bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  padding: var(--space-md) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar .logo {
  width: 140px;
}

/* Badge/Tag */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border: 1px solid var(--warning);
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--white-60);
}

.text-light {
  color: var(--white-40);
}

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  
  .top-bar {
    padding: var(--space-md);
  }
  
  .top-bar .logo {
    width: 120px;
  }
}
