/* Threads for iKasi Foundation - Redesigned with Fudumala Style */
/* Based on Fudumala Design System */

:root {
  /* Color Scheme - Turquoise & Gold from Original Website */
  /* Note: Variable names kept as 'purple' for compatibility, but values are now turquoise */
  --primary-purple: #0fbfbe;          /* Primary turquoise brand color */
  --primary-purple-dark: #0e6679;     /* Darker turquoise for text */
  --primary-purple-darker: #0a4d5c;   /* Darkest turquoise shade */
  --primary-purple-light: #5dd4d3;    /* Light turquoise */
  --primary-purple-lighter: #b3ecea;  /* Lighter turquoise */
  --primary-purple-lightest: #e6f8f8; /* Lightest turquoise background */
  
  --accent-gold: #d9a708;       /* Primary gold from original site */
  --accent-gold-dark: #b8901c;   /* Darker gold shade */
  --accent-gold-light: #f69f0a;  /* Bright gold highlight */
  --accent-gold-lighter: #fce4a6; /* Light gold background */
  --accent-gold-lightest: #fef7e6; /* Lightest gold background */
  
  --text-primary: #040108;
  --text-secondary: #4f4d52;
  --text-light: #818083;
  --text-white: #ffffff;
  
  --bg-white: #ffffff;
  --bg-light: #f2f2f2;
  --bg-section: #fcf9e9;
  
  --border-light: rgba(4, 1, 8, 0.15);
  --border-white: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Karla', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(4, 1, 8, 0.1);
  --shadow-md: 0 4px 16px rgba(4, 1, 8, 0.15);
  --shadow-lg: 0 8px 32px rgba(4, 1, 8, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1, .h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3, .h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
}

h4, .h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Links */
a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-purple-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
}

/* Header Styles */
.header {
  background: var(--bg-white);
  box-shadow: 0 2px 20px rgba(4, 1, 8, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(4, 1, 8, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-purple);
  background: var(--primary-purple-lightest);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

/* Active Navigation Link */
.nav-link.active::after {
  width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
  color: var(--text-white);
  border-color: var(--primary-purple);
  box-shadow: 0 4px 15px rgba(77, 18, 165, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(77, 18, 165, 0.4);
  background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-purple-darker));
  color: var(--accent-gold);
}

.btn-secondary {
  background: var(--accent-gold);
  color: var(--text-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(230, 201, 36, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-gold-dark);
  color: #40E0D0; /* Light turquoise */
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 201, 36, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.btn-outline:hover {
  background: var(--primary-purple);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-purple-lightest) 0%, var(--accent-gold-lightest) 100%);
  padding: var(--spacing-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-purple-lighter) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold-lighter) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-media {
  animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--text-primary);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}


/* Section Styles */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-purple {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
  color: var(--text-white);
}

.section-purple h2,
.section-purple h3,
.section-purple p {
  color: var(--text-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
}

.section-title {
  position: relative;
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold));
  border-radius: 2px;
}

/* Cards */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.card-badge {
  display: inline-block;
  background: var(--primary-purple-lightest);
  color: var(--primary-purple);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.card-title {
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.card-features {
  margin: var(--spacing-md) 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
}

.feature-item .material-icons {
  color: var(--primary-purple);
  font-size: 18px;
  min-width: 18px;
}

.card-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: auto;
  padding-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

/* Minimal Initiative Sections */
.initiative-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.initiative-section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.initiative-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xxl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.initiative-grid.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.initiative-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(4, 1, 8, 0.08);
}

.initiative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.initiative-section:hover .initiative-image img {
  transform: scale(1.02);
}

.initiative-content {
  padding: var(--spacing-md) 0;
}

.initiative-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-purple-lightest), var(--accent-gold-lightest));
  color: var(--primary-purple);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--primary-purple-lighter);
}

.initiative-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.initiative-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.initiative-features {
  margin: var(--spacing-lg) 0;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-item .material-icons {
  color: var(--primary-purple);
  font-size: 20px;
  min-width: 20px;
}

.initiative-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

/* Remove frame and effects for specific images */
.initiative-image.no-frame {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}

.initiative-image.no-frame img {
  border-radius: 0;
}

.initiative-section:hover .initiative-image.no-frame img {
  transform: none;
}

/* Campaign logo with turquoise circular background */
.campaign-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  background: var(--primary-purple);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(15, 191, 190, 0.3);
  position: relative;
  overflow: hidden;
}

.campaign-logo-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.campaign-logo-container img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-purple-lightest), var(--accent-gold-lightest));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card .btn {
  margin-top: auto;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--primary-purple-darker) 0%, var(--text-primary) 100%);
  color: var(--text-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-column h4 {
  color: var(--accent-gold);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: var(--spacing-xs);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.social-link:hover img {
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--accent-gold);
}

/* Impact Section with Background Image */
.section-impact-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  overflow: hidden;
}

.impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.section-impact-bg .container {
  position: relative;
  z-index: 2;
}

.section-impact-bg .section-title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-impact-bg .lead-text {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-impact-bg .feature-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-impact-bg .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for impact section */
@media (max-width: 768px) {
  .section-impact-bg {
    background-attachment: scroll;
    min-height: auto;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .card-actions .btn {
    width: 100%;
  }
  
  /* Minimal Initiative Sections - Mobile */
  .initiative-grid,
  .initiative-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .initiative-image {
    order: -1;
    aspect-ratio: 16/9;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .initiative-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .initiative-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

/* Legal Pages Styles */
.legal-section {
  margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
  color: var(--primary-purple);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  border-bottom: 2px solid var(--primary-purple-lighter);
  padding-bottom: var(--spacing-sm);
}

.legal-section h3 {
  color: var(--primary-purple-dark);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.legal-section p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.legal-section li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

.contact-info {
  border-left: 4px solid var(--primary-purple);
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Material Icons */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: middle;
}

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-64 { font-size: 64px; }

.icon-feature {
  font-size: 48px;
  color: var(--primary-purple);
}

.icon-white {
  color: white;
}

.icon-gold {
  color: var(--accent-gold);
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-purple-lightest), var(--accent-gold-lightest));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.loader-logo {
  width: 80px;
  height: auto;
  margin-bottom: var(--spacing-md);
  animation: pulse 2s infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary-purple-lighter);
  border-top: 3px solid var(--primary-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-md);
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--primary-purple);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.bg-purple {
  background: var(--primary-purple);
}

.bg-gold {
  background: var(--accent-gold);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}