/* =========== VARIABLES =========== */
:root {
  /* Analog color scheme - Retro themed */
  --primary-color: #e86a33;
  --primary-dark: #c95528;
  --primary-light: #ff8c5a;
  --secondary-color: #f1c40f;
  --secondary-dark: #d8b00d;
  --secondary-light: #ffd54f;
  --tertiary-color: #41b883;
  --tertiary-dark: #339966;
  --tertiary-light: #6fcf97;
  --accent-color: #e74c3c;
  --accent-dark: #c0392b;
  --accent-light: #ff6b6b;
  
  /* Neutral colors */
  --dark: #333333;
  --darker: #222222;
  --light: #f9f9f9;
  --lighter: #ffffff;
  --gray: #7c7c7c;
  --gray-light: #e0e0e0;
  --gray-dark: #4a4a4a;
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.1);
  
  /* Transition timings */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--darker);
}

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

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

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

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

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

/* Buttons */
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--lighter) !important;
  font-family: var(--heading-font);
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.button:active {
  transform: translateY(1px);
}

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: var(--radius-round);
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.button:hover::after {
  animation: ripple 1s ease-out;
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--lighter) !important;
}

.button.is-secondary {
  background-color: var(--secondary-color);
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
}

.button.is-tertiary {
  background-color: var(--tertiary-color);
}

.button.is-tertiary:hover {
  background-color: var(--tertiary-dark);
}

.button.is-light {
  background-color: var(--lighter);
  color: var(--primary-color) !important;
  border: 1px solid var(--gray-light);
}

.button.is-light:hover {
  background-color: var(--light);
  color: var(--primary-dark) !important;
}

.button.is-small {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
}

.button.is-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  width: 100%;
  display: block;
}

/* =========== RETRO DESIGN ELEMENTS =========== */
/* Retro header */
.retro-header {
  background-color: var(--lighter);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.retro-header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  font-size: 1.75rem;
  margin: 0;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  margin-left: var(--spacing-md);
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: 0.5rem 0;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.navbar-item:hover::after {
  width: 100%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
}

.navbar-burger span {
  background-color: var(--dark);
  display: block;
  height: 2px;
  width: 1.75rem;
  position: absolute;
  left: 0.75rem;
  transition: all var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50%);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========== HERO SECTION =========== */
.retro-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-body {
  width: 100%;
  padding: var(--spacing-xl) 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--lighter) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--lighter) !important;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 650px;
  margin-bottom: var(--spacing-lg);
  color: var(--lighter) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.retro-button {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  border: none;
  color: var(--lighter);
  padding: 12px 24px;
  font-family: var(--heading-font);
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  transform: skew(-3deg);
  transition: all var(--transition-medium);
}

.retro-button:hover {
  background-color: var(--primary-dark);
  transform: skew(-3deg) translateY(-5px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.retro-button-outline {
  background-color: transparent;
  border: 2px solid var(--lighter);
  color: var(--lighter);
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
}

.retro-button-outline:hover {
  background-color: var(--lighter);
  color: var(--primary-color) !important;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.15);
}

.hero-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--lighter);
  font-size: 0.9rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.arrow-down {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  border-right: 3px solid var(--lighter);
  border-bottom: 3px solid var(--lighter);
  transform: rotate(45deg);
}

/* =========== SECTION STYLES =========== */
.section {
  padding: var(--spacing-xl) 0;
}

.retro-section {
  position: relative;
}

.bg-pattern {
  background-color: var(--light);
  background-image: 
    radial-gradient(var(--gray-light) 1px, transparent 1px), 
    radial-gradient(var(--gray-light) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.bg-curve {
  position: relative;
  background-color: var(--lighter);
}

.bg-curve::before, 
.bg-curve::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  background: var(--lighter);
  z-index: 1;
}

.bg-curve::before {
  top: 0;
  clip-path: ellipse(50% 50% at 50% 0%);
  transform: translateY(-100%);
}

.bg-curve::after {
  bottom: 0;
  clip-path: ellipse(50% 50% at 50% 100%);
  transform: translateY(100%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  color: var(--darker);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: var(--spacing-sm) auto;
  border-radius: var(--radius-sm);
}

/* =========== CARDS & CONTENT BOXES =========== */
.card {
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: skew(-2deg);
}

.card:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* =========== TEAM SECTION =========== */
.team-card {
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  height: 100%;
  transform: skew(-2deg);
}

.team-card:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-card .card-image {
  height: 320px;
  position: relative;
}

.team-card .card-content {
  padding: var(--spacing-md);
}

.team-card .card-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.team-card .subtitle {
  color: var(--gray);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.progress-container {
  margin-top: var(--spacing-md);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.progress {
  height: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--gray-light);
  margin-bottom: var(--spacing-sm);
}

.progress::-webkit-progress-value {
  background-color: var(--primary-color);
  transition: width 1s ease;
}

.progress::-moz-progress-bar {
  background-color: var(--primary-color);
}

/* =========== RESOURCE LINKS =========== */
.resource-card {
  text-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--lighter);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: skew(-2deg);
  transition: all var(--transition-medium);
}

.resource-card:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.resource-card .card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.resource-card .card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.retro-button-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-medium);
  transform: skew(-3deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.retro-button-link:hover {
  background-color: var(--primary-color);
  color: var(--lighter) !important;
  transform: skew(-3deg) translateY(-3px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

/* =========== TESTIMONIALS =========== */
.testimonial-card {
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
  height: 100%;
  position: relative;
  transform: skew(-2deg);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.testimonial-content img {
  max-width: 120px;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gray-light);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: -1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* =========== SUSTAINABILITY SECTION =========== */
.sustainability-content {
  padding-right: var(--spacing-lg);
}

.sustainability-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-md);
}

.stat-box {
  text-align: center;
  background-color: var(--light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-family: var(--heading-font);
}

.stat-label {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.sustainability-image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

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

/* =========== AWARDS & RECOGNITION =========== */
.award-card {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all var(--transition-medium);
  transform: skew(-2deg);
}

.award-card:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.award-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.press-mention {
  display: flex;
  flex-direction: column;
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all var(--transition-medium);
  transform: skew(-2deg);
}

.press-mention:hover {
  transform: skew(-2deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.press-mention img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.press-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.press-date {
  color: var(--gray);
  font-style: italic;
  margin-top: var(--spacing-sm);
}

/* =========== CONTACT SECTION =========== */
.contact-section {
  position: relative;
  background-color: var(--light);
}

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

.field {
  margin-bottom: var(--spacing-md);
}

.label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--dark);
}

.retro-input,
.retro-textarea,
.retro-select select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  transition: all var(--transition-fast);
  background-color: var(--lighter);
}

.retro-input:focus,
.retro-textarea:focus,
.retro-select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232, 106, 51, 0.25);
  outline: none;
}

.retro-textarea {
  min-height: 120px;
  resize: vertical;
}

.retro-select {
  position: relative;
  display: block;
}

.retro-select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: 0.8rem;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox input {
  margin-right: 0.5rem;
}

.contact-info {
  height: 100%;
  padding: var(--spacing-md);
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-item {
  margin-bottom: var(--spacing-md);
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.contact-map {
  margin-top: var(--spacing-md);
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========== FOOTER =========== */
.retro-footer {
  background-color: var(--dark);
  color: var(--lighter);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.retro-footer .title {
  color: var(--lighter);
}

.retro-footer p {
  color: var(--gray-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.social-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  margin-right: var(--spacing-sm);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--primary-light);
  transform: translateY(-3px);
  text-decoration: none;
}

.newsletter-form .field {
  margin-bottom: 0;
}

.copyright {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: var(--gray);
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  margin-top: var(--spacing-sm);
}

/* =========== COOKIE CONSENT =========== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: var(--lighter);
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
}

/* =========== MODAL STYLES =========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.is-active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--lighter);
}

/* =========== UTILITY CLASSES =========== */
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.mt-6 { margin-top: 3rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mb-6 { margin-bottom: 3rem !important; }

.parallax-bg {
  transform: translateZ(0);
  backface-visibility: hidden;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

/* Additional pages styles */
.about-page, .terms-page, .privacy-page, .contacts-page {
  padding-top: 100px; /* For fixed header */
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--lighter);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 4rem;
  color: var(--tertiary-color);
  margin-bottom: var(--spacing-md);
}

/* =========== RESPONSIVE STYLES =========== */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--lighter);
    box-shadow: var(--shadow-md);
    padding: 1rem;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    display: flex;
    flex-direction: column;
  }
  
  .navbar-item {
    margin: 0.5rem 0;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .columns {
    display: block;
  }
  
  .column {
    width: 100% !important;
    margin-bottom: var(--spacing-md);
  }
  
  .sustainability-content {
    padding-right: 0;
  }
  
  .contact-info {
    margin-top: var(--spacing-md);
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .retro-button, .retro-button-outline {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: var(--spacing-sm);
  }
}

@media screen and (max-width: 479px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .award-card, .press-mention {
    transform: none;
  }
  
  .award-card:hover, .press-mention:hover {
    transform: translateY(-5px);
  }
}