/* ===============================================================
  AUSTRALIAN ART 2025 - CSS STYLES
  Retro-inspired Eco-minimalist Design with Gradient Color Scheme
================================================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Primary Colors */
  --primary-color: #2c6e49;
  --primary-dark: #1e4e34;
  --primary-light: #4a8f69;
  
  /* Secondary Colors */
  --secondary-color: #e76f51;
  --secondary-dark: #c54e31;
  --secondary-light: #f18f73;
  
  /* Accent Colors */
  --accent-1: #f4a261;
  --accent-2: #e9c46a;
  --accent-3: #264653;
  
  /* Neutral Colors */
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --text-medium: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --bg-medium: #e9ecef;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-dark: linear-gradient(135deg, var(--bg-dark), var(--accent-3));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --line-height: 1.6;
}

/* ==================== GLOBAL STYLES ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: var(--line-height);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

h1 {
  font-size: 4.8rem;
  font-weight: 700;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ==================== BUTTONS ==================== */
.btn,
button,
input[type='submit'] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-med);
  border: none;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: all var(--transition-med);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo .tagline {
  font-size: 1.2rem;
  color: var(--text-medium);
  font-family: var(--font-body);
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--space-sm);
}

.nav-list a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-list a:hover {
  color: var(--primary-color);
  background-color: rgba(44, 110, 73, 0.1);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.mobile-menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-light);
  animation: fadeIn 1s ease-out;
}

.hero-subtitle {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  color: var(--text-light);
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  animation: fadeIn 1s ease-out 0.6s both;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  display: inline-block;
  position: relative;
  margin-bottom: var(--space-xs);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: var(--space-sm) auto 0;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.stats-widget {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.stat-item {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-medium);
}

@media (min-width: 992px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image {
    margin-right: var(--space-lg);
  }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  background-color: var(--bg-medium);
  position: relative;
  overflow: hidden;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* ==================== CARD STYLES ==================== */
.card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.card-content p {
  margin-bottom: var(--space-md);
}

.gallery-item {
  height: 100%;
}

/* ==================== ARTISTS SECTION ==================== */
.artists-section {
  background-color: var(--bg-light);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.artist-card .card-image {
  height: 350px;
}

.artist-specialty {
  display: inline-block;
  font-size: 1.4rem;
  background-color: var(--accent-2);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

/* ==================== RESOURCES SECTION ==================== */
.resources-section {
  background-color: var(--bg-medium);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.resource-card {
  background-color: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-icon {
  margin-bottom: var(--space-sm);
  font-size: 3rem;
  color: var(--primary-color);
}

.resource-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.resource-card ul {
  text-align: left;
  padding-left: var(--space-sm);
}

.resource-card li {
  margin-bottom: var(--space-xs);
}

.resource-card a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
  background-color: var(--bg-light);
  position: relative;
}

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.event-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med);
}

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

.event-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-date .month {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-date .day {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
}

.event-date .year {
  font-size: 1.4rem;
}

.event-content {
  display: flex;
  flex-direction: column;
}

.event-details {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event-details h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.event-location {
  color: var(--text-medium);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.events-calendar-link {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .event-card {
    flex-direction: row;
  }
  
  .event-date {
    min-width: 120px;
    justify-content: center;
  }
  
  .event-content {
    flex-direction: row;
    flex: 1;
  }
  
  .event-details {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
  
  .card-image {
    flex: 1;
    min-width: 240px;
    max-width: 500px;
    height: auto;
    min-height: 240px;
  }
}

/* ==================== PATRONS SECTION ==================== */
.patrons-section {
  background-color: var(--bg-medium);
}

.patrons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.patron-item {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  transition: filter var(--transition-med);
}

.patron-item:hover {
  filter: grayscale(0%);
}

.patron-item img {
  max-width: 100%;
  height: auto;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background-color: var(--bg-light);
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.testimonial-content {
  margin-bottom: var(--space-md);
  text-align: center;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  color: var(--primary-dark);
}

.author-info p {
  font-size: 1.4rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ==================== SUCCESS STORIES SECTION ==================== */
.success-section {
  background-color: var(--bg-medium);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.success-card {
  height: 100%;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  height: 100%;
}

.blog-date {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.blog-more-link {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background-color: var(--bg-medium);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.info-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  min-width: 40px;
  text-align: center;
}

.info-content h3 {
  margin-bottom: var(--space-xs);
  color: var(--primary-dark);
}

.info-content p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.contact-form-container {
  flex: 1;
}

.contact-form {
  background-color: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--bg-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.6rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  margin-bottom: 0;
}

.submit-btn {
  width: 100%;
}

@media (min-width: 992px) {
  .contact-content {
    flex-direction: row;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-form-container {
    flex: 2;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo h3 {
  color: var(--text-light);
  font-size: 2.4rem;
  margin-bottom: var(--space-xs);
}

.footer-logo p {
  color: var(--text-medium);
}

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

.footer h4 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
}

.footer-nav ul,
.footer-legal ul,
.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  color: var(--text-medium);
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-newsletter p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.6rem;
}

.newsletter-form button {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==================== SUCCESS PAGE ==================== */
.success-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: var(--space-lg);
  text-align: center;
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 6rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* ==================== TERMS & PRIVACY PAGES ==================== */
/* .terms-page,
.privacy-page {
  padding-top: 100px;
} */

.terms-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
}

/* ==================== ANIMATIONS ==================== */
@keyframes morphGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.morph-animation {
  background-size: 200% 200%;
  animation: morphGradient 5s ease infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

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

.bg-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.bg-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.bg-accent {
  background-color: var(--accent-1);
  color: var(--text-dark);
}

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

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

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

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

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

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

.hidden {
  display: none;
}

.rounded {
  border-radius: var(--radius-md);
}

.shadow {
  box-shadow: var(--shadow-md);
}

/* ==================== MEDIA QUERIES ==================== */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  .events-timeline {
    position: relative;
  }
  
  .events-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 120px;
    height: 100%;
    width: 4px;
    background-color: var(--primary-light);
    border-radius: 2px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .header,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: underline;
  }
  
  button,
  input[type="submit"],
  .btn {
    display: none;
  }
}

textarea {
  resize: none;
}

.story-content,
.mission-content,
.achievements-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width:768px){
    .story-content,
    .mission-content,
    .achievements-content {
      grid-template-columns: 1fr;
    }
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width:768px){
  .header {
    position: relative !important;
  } 
  body {
    padding-top: 0 !important;
  }
}