/* Base Variables */
:root {
  /* Triadic Color Scheme - Neo-brutalism inspired */
  --primary-color: #FF5D5D;      /* Vibrant Red */
  --primary-dark: #E43535;       /* Darker Red for hover states */
  --secondary-color: #5D9CFF;    /* Vibrant Blue */
  --secondary-dark: #3576E4;     /* Darker Blue */
  --tertiary-color: #5DFF8F;     /* Vibrant Green */
  --tertiary-dark: #35E465;      /* Darker Green */
  
  /* Supporting Colors */
  --dark-color: #222222;         /* Near Black for text */
  --light-color: #FFFFFF;        /* White for backgrounds */
  --light-gray: #F5F5F5;         /* Light gray for alternating sections */
  --medium-gray: #DDDDDD;        /* Medium gray for borders */
  --dark-gray: #888888;          /* Dark gray for secondary text */
  
  /* Neo-brutalist accents */
  --accent-yellow: #FFDE59;      /* Accent Yellow */
  --accent-purple: #9C59FF;      /* Accent Purple */
  
  /* Shadows and Effects */
  --neo-shadow: 6px 6px 0px rgba(0, 0, 0, 0.9);
  --neo-shadow-sm: 3px 3px 0px rgba(0, 0, 0, 0.9);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --hover-transform: translateY(-5px);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius: 0px;          /* Sharp edges for neo-brutalism */
  --button-radius: 0px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  --line-height: 1.6;
}

/* Reset and Base Styles */
html, body {
  font-family: var(--body-font);
  line-height: var(--line-height);
  color: var(--dark-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.container {
  padding: 0 15px;
}

.navbar-menu{
overflow-x: scroll !important;
width: 80%;
/* width: 100%; */
}

body {
  padding-top: 70px; /* Space for fixed navbar */
}

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

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary-dark);
  text-decoration: none;
}

.has-text-white {
  color: var(--light-color) !important;
}

/* Section styling */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-lg);
  z-index: 1;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

/* Neo-brutalist elements */
.neo-brutal-card {
  background: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  padding: var(--spacing-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.neo-brutal-card:hover {
  transform: var(--hover-transform);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.9);
}

.neo-brutal-button {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow-sm);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border-radius: var(--button-radius);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.neo-brutal-button:hover, .neo-brutal-button:focus {
  background-color: var(--primary-dark);
  color: var(--light-color);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.neo-brutal-button:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
}

.neo-brutal-button-outline {
  background-color: transparent;
  color: var(--light-color);
  border: 3px solid var(--light-color);
  box-shadow: var(--neo-shadow-sm);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border-radius: var(--button-radius);
  display: inline-block;
  text-align: center;
}

.neo-brutal-button-outline:hover, .neo-brutal-button-outline:focus {
  background-color: var(--light-color);
  color: var(--primary-color);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.neo-brutal-button-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
}

/* Header and Navigation */
.navbar {
  background-color: var(--light-color);
  border-bottom: 3px solid var(--dark-color);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item {
  font-weight: 700;
  font-family: var(--heading-font);
  transition: var(--transition-fast);
  color: var(--dark-color);
  position: relative;
}

.navbar-item:hover {
  color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: -70px; /* Compensate for fixed navbar */
}

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

.hero-background:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

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

.hero-buttons .button {
  margin-right: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.hero-footer {
  position: relative;
  z-index: 1;
  padding: var(--spacing-md) 0;
}

.scroll-indicator {
  text-align: center;
  color: var(--light-color);
  animation: bounce 2s infinite;
}

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

/* About Us Section */
.about-section {
  background-color: var(--light-color);
}

.image-container {
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  overflow: hidden;
  position: relative;
  text-align: center;
  margin-bottom: var(--spacing-md);

}

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

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

/* Games Section */
.games-section {
  background-color: var(--light-gray);
}

.card-image {
  height: 250px;
  overflow: hidden;
  border-bottom: 3px solid var(--dark-color);
}

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

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

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

.game-tags {
  margin-top: auto;
  padding-top: var(--spacing-sm);
}

.tag {
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  border: 2px solid var(--dark-color);
}

.tag.is-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.tag.is-info {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.tag.is-warning {
  background-color: var(--accent-yellow);
  color: var(--dark-color);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--light-color);
}

.workshop-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  height: 100%;
}

.workshop-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--dark-color);
}

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

.workshop-details {
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.workshop-details .icon {
  margin-right: 5px;
}

/* Resources Section */
.resources-section {
  background-color: var(--light-gray);
}

.resource-card {
  height: 100%;
}

.external-resource-card {
  background-color: var(--light-color);
  padding: var(--spacing-md);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.external-resource-card p {
  margin-bottom: var(--spacing-md);
}

.external-resource-card .button {
  margin-top: auto;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--light-color);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
}

.placeholder-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  cursor: pointer;
}

.placeholder-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.placeholder-video:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--primary-color);
  transition: var(--transition-fast);
  border: 2px solid var(--dark-color);
}

.placeholder-video:hover .play-button {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* Mission Section */
.mission-section {
  background-color: var(--light-gray);
}

.mission-statement {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.mission-statement blockquote {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 300;
  position: relative;
  padding: 0 var(--spacing-lg);
  color: var(--dark-color);
}

.mission-statement blockquote:before,
.mission-statement blockquote:after {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  position: absolute;
  color: var(--primary-color);
  opacity: 0.2;
}

.mission-statement blockquote:before {
  top: -40px;
  left: 0;
}

.mission-statement blockquote:after {
  bottom: -70px;
  right: 0;
  transform: rotate(180deg);
}

.value-card {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  height: 100%;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Sustainability Section */
.sustainability-section {
  background-color: var(--light-color);
}

.sustainability-card {
  height: 100%;
  margin-bottom: var(--spacing-md);
}

.sustainability-card .card-image {
  height: 200px;
}

.pledge-card {
  background-color: var(--accent-yellow);
  padding: var(--spacing-md);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
}

.pledge-list {
  list-style-type: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  text-align: center;
}

.pledge-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px dashed var(--dark-color);
  font-weight: 600;
  font-size: 1.1em;
}

.pledge-list li:last-child {
  border-bottom: none;
}

/* Careers Section */
.careers-section {
  background-color: var(--light-gray);
}

.job-card {
  padding: var(--spacing-md);
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow-sm);
  margin-bottom: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-location, .job-type {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.job-description {
  margin-bottom: var(--spacing-sm);
}

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

.job-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
}

.contact-form {
  background-color: var(--light-color);
  padding: var(--spacing-md);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
  margin-bottom: var(--spacing-md);
}

.neo-brutal-input,
.neo-brutal-textarea,
.neo-brutal-select select {
  border: 3px solid var(--dark-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  width: 100%;
  font-family: var(--body-font);
  transition: var(--transition-fast);
}

.neo-brutal-input:focus,
.neo-brutal-textarea:focus,
.neo-brutal-select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 93, 93, 0.2);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-method .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
  min-width: 30px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-buttons .button {
  border: 2px solid var(--dark-color);
  transition: var(--transition-fast);
  background-color: var(--light-color);
}

.social-buttons .button:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.social-buttons .button .icon {
  color: inherit;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: var(--spacing-lg) 0;
  position: relative;
}

.footer h3 {
  color: var(--light-color);
}

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

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

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

.footer-links a {
  color: var(--medium-gray);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-link {
  color: var(--light-color);
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.social-link:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.social-link:hover {
  color: var(--primary-color);
}

.social-link:hover:after {
  width: 100%;
}

.newsletter-form .input {
  border: 3px solid var(--dark-color);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  color: var(--medium-gray);
}

/* About Page Specific Styles */
.our-story-section {
  background-color: var(--light-color);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.timeline-item {
  padding: var(--spacing-md) 0;
  position: relative;
}

.timeline-marker {
  position: absolute;
  top: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid var(--dark-color);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: var(--spacing-md);
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow-sm);
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.team-section {
  background-color: var(--light-gray);
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--spacing-md);
  height: 100%;
}

.team-member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow-sm);
  margin-bottom: var(--spacing-sm);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.team-bio {
  margin-bottom: var(--spacing-sm);
}

.social-icon {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin: 0 5px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--primary-color);
}

.join-us-section {
  background-color: var(--light-color);
}

/* Contact Page Specific Styles */
.contact-options-section {
  background-color: var(--light-color);
}

.contact-option-card {
  text-align: center;
  padding: var(--spacing-md);
  height: 100%;
}

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

.contact-details {
  margin: var(--spacing-sm) 0;
  color: var(--dark-gray);
}

.offices-section {
  background-color: var(--light-gray);
}

.office-card {
  margin-bottom: var(--spacing-md);
  height: 100%;
}

.office-image {
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid var(--dark-color);
}

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

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

.office-info {
  padding: var(--spacing-md);
}

.office-info p {
  margin-bottom: 0.5rem;
}

.faq-section {
  background-color: var(--light-color);
}

.faq-item {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  height: 100%;
}

/* Privacy Policy & Terms Page Specific Styles */
.privacy-policy-section, .terms-section {
  padding-top: 100px;
  background-color: var(--light-color);
}

.privacy-content, .terms-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--light-color);
  padding: var(--spacing-lg);
  border: 3px solid var(--dark-color);
  box-shadow: var(--neo-shadow);
}

.policy-intro, .terms-intro {
  border-bottom: 2px solid var(--medium-gray);
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.policy-section, .terms-section {
  margin-bottom: var(--spacing-lg);
}

/* Success Page Specific Styles */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-color);
}

.success-card {
  padding: var(--spacing-lg);
  text-align: center;
}

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

.response-time {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.response-list {
  list-style-type: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.response-list li {
  padding: var(--spacing-xs) 0;
}

.additional-help-section {
  background-color: var(--light-gray);
}

.help-card {
  text-align: center;
  padding: var(--spacing-md);
  height: 100%;
}

.help-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .timeline:before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-method .icon {
    margin-bottom: var(--spacing-xs);
    margin-right: 0;
  }
  
  .workshop-card {
    flex-direction: column;
  }
  
  .workshop-image {
    width: 100%;
    height: 150px;
  }
  
  .office-image {
    height: 150px;
  }
  
  .hero-body {
    padding-top: 120px;
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

.slide-in-up {
  animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Elastic Animations */
@keyframes elastic {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.button:hover {
  animation: elastic 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Utility Classes */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4.5rem; }

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

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

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

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

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