/* Root Variables & Global Styles */
:root {
  /* Monochromatic color scheme */
  --color-primary: #3a3a3a;
  --color-primary-light: #606060;
  --color-primary-lighter: #808080;
  --color-primary-dark: #252525;
  --color-primary-darker: #101010;
  
  /* Accent colors */
  --color-accent: #e63946;
  --color-accent-light: #ff4d58;
  --color-accent-dark: #c52836;
  
  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #f8f8f8;
  --color-light-gray: #e0e0e0;
  --color-mid-gray: #999999;
  --color-dark-gray: #555555;
  --color-black: #111111;
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Brutalist style properties */
  --brutalist-border: 2px solid var(--color-primary-dark);
  --brutalist-shadow: 6px 6px 0px var(--color-primary-dark);
  
  /* Volumetric UI effects */
  --volumetric-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  --volumetric-hover-transform: translateY(-5px);
}

/* Base Styles */
html, body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-off-white);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

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

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

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

.read-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.read-more:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.read-more:hover {
  color: var(--color-accent-dark);
}

.read-more:hover:after {
  width: 100%;
}

/* Global Button Styles */
.button, 
button, 
input[type='submit'] {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  position: relative;
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  cursor: pointer;
  overflow: hidden;
}

.button:hover, 
button:hover, 
input[type='submit']:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.button:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(0);
  box-shadow: 4px 4px 0px var(--color-primary-dark);
}

.button.is-primary {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

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

.button.is-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

.button.is-accent:hover {
  background-color: var(--color-accent-light);
}

.button.is-outlined {
  background-color: transparent;
  color: var(--color-primary-dark);
}

.button.is-outlined:hover {
  background-color: var(--color-light-gray);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-item {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--color-accent);
  background-color: transparent !important;
}

.navbar-burger span {
  background-color: var(--color-primary-dark);
}

.navbar-menu {
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: var(--space-lg) 0;
}

.hero-title {
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-sm);
  font-size: 3.5rem;
}

.hero-subtitle {
  color: var(--color-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-md);
  font-weight: 400;
  max-width: 800px;
}

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

.quick-benefits {
  font-family: var(--font-body);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Particle Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-50vh) rotate(360deg);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: float 15s linear infinite;
}

/* Vorteile Section */
.vorteile .card {
  height: 100%;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

.vorteile .card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.card-icon {
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.card-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto;
}

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

/* Produktlinien Section */
.produktlinien .card {
  height: 100%;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.produktlinien .card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.card-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Materialien Section */
.materialien .image-container {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.materialien .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.feature-item .icon {
  margin-right: var(--space-sm);
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* Prozess Timeline */
.prozess {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 4px;
  background: var(--color-primary-dark);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: 120px;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50px;
  width: 80px;
  height: 30px;
  border-radius: 60px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  border: 4px solid var(--color-white);
  transform: translateX(-50%);
}

.timeline-content {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  padding: var(--space-md);
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

/* Projekte Gallery */
.gallery-container {
  margin-top: var(--space-md);
}

.gallery-tabs .tabs ul {
  border-bottom-color: var(--color-primary-dark);
}

.gallery-tabs .tabs li a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: none;
}

.gallery-tabs .tabs li.is-active a {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-primary-dark);
}

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

.gallery-item {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  background-color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

/* Resources Section */
.resources .card {
  height: 100%;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resources .card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

/* Bewertungen Section */
.testimonial-card {
  height: 100%;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.customer-info {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.customer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  object-fit: cover;
}

.stars {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
}

/* Preise Section */
.price-card {
  height: 100%;
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.price {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: var(--space-sm) 0;
  color: var(--color-accent);
}

/* FAQ Section */
.faq-container {
  margin-top: var(--space-md);
}

.faq-item {
  margin-bottom: var(--space-sm);
  border: var(--brutalist-border);
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--brutalist-shadow);
}

.faq-question {
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-sm);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .icon i {
  transform: rotate(180deg);
}

.faq-question .icon i {
  transition: transform 0.3s ease;
}

/* Kontakt Section */
.kontakt {
  background-color: var(--color-off-white);
}

.contact-form-container {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  padding: var(--space-md);
  background-color: var(--color-white);
}

.contact-form .field {
  margin-bottom: var(--space-sm);
}

.contact-form .label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-primary-dark);
}

.contact-form .input, 
.contact-form .textarea {
  border: 2px solid var(--color-light-gray);
  transition: border-color 0.3s ease;
}

.contact-form .input:focus, 
.contact-form .textarea:focus {
  border-color: var(--color-primary-dark);
  box-shadow: none;
}

.contact-info {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  padding: var(--space-md);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-item .icon {
  margin-right: var(--space-sm);
  color: var(--color-primary-dark);
  font-size: 1.2rem;
}

.map-container {
  border: var(--brutalist-border);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Footer */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-lg) 0;
}

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

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

.footer-nav li {
  margin-bottom: var(--space-xs);
}

.footer-nav a {
  color: var(--color-light-gray);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.social-links li {
  margin-right: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.social-links a {
  color: var(--color-light-gray);
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.social-links a:hover {
  color: var(--color-white);
}

.copyright {
  text-align: center;
  border-top: 1px solid var(--color-primary);
  padding-top: var(--space-md);
  color: var(--color-mid-gray);
  font-size: 0.9rem;
}

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

.success-container {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  padding: var(--space-lg);
  background-color: var(--color-white);
  max-width: 600px;
}

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

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  margin-top: var(--space-lg);
}

/* About Page */
.about-section .image-container {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  overflow: hidden;
}

.team-member {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.team-member:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

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

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-member-info {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member-position {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Customer Stories Section */
.customer-stories .story-card {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.customer-stories .story-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

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

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

/* Success Stories Section */
.success-stories .success-card {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-stories .success-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.success-stats {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.stat-item {
  text-align: center;
  margin: 0 var(--space-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.stat-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Press Section */
.press-section .press-card {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.press-section .press-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.press-logo {
  max-width: 200px;
  margin: var(--space-md) 0;
}

.press-quote {
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* Services Section */
.services-section .service-card {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.services-section .service-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

.service-icon {
  margin: var(--space-md) 0;
  font-size: 3rem;
  color: var(--color-accent);
}

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

/* Research Section */
.research-section .research-card {
  border: var(--brutalist-border);
  box-shadow: var(--brutalist-shadow);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.research-section .research-card:hover {
  transform: var(--volumetric-hover-transform);
  box-shadow: 8px 8px 0px var(--color-primary-dark);
}

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

.research-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-marker {
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .navbar-menu {
    background-color: var(--color-white);
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
  }
  
  .quick-benefits {
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: var(--space-xs);
  }
  
  .timeline:before {
    display: none;
  }
  
  .timeline-item {
    padding-left: 0;
  }
  
  .timeline-marker {
    position: relative;
    left: 0;
    margin-bottom: var(--space-xs);
    transform: none;
  }
}

/* Animation Utilities */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s, opacity 0.5s;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-out"] {
  transform: scale(1.1);
}

[data-aos="flip-left"] {
  transform: rotateY(90deg);
}

[data-aos="flip-right"] {
  transform: rotateY(-90deg);
}

[data-aos="flip-up"] {
  transform: rotateX(90deg);
}

[data-aos="flip-down"] {
  transform: rotateX(-90deg);
}

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

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

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

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-in-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@media (max-width:1200px){
    .container {
      padding-left: 20px;
      padding-right: 20px;
    }
}

@media (max-width:400px){
  .button.is-large {
    font-size: 20px;
    display: flex;
    width: max-content;
    max-width: 100%;
  }
}
