/* Root Variables - Color Scheme */
:root {
  /* Triad Color Scheme */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  
  --secondary-color: #d946ef;
  --secondary-dark: #c026d3;
  --secondary-light: #e879f9;
  
  --tertiary-color: #10b981;
  --tertiary-dark: #059669;
  --tertiary-light: #34d399;
  
  /* Neutral Colors */
  --neutral-100: #f8fafc;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--neutral-800);
  background: linear-gradient(to bottom right, var(--neutral-100), var(--neutral-200));
  line-height: 1.6;
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.2rem;
}

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

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

.section-padding {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Glassmorphism Effect */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: 1.5rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px 0 var(--glass-shadow);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  text-transform: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-tertiary {
  background-color: var(--tertiary-color);
  color: white;
}

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-dark);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  position: relative;
}

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

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

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

.btn-link i {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-medium);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

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

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--neutral-700);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 2rem);
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

header.sticky-top {
  z-index: 1030;
}

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

.hero-container {
  position: relative;
  height: 85vh;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

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

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Services Section */
.services-section {
  position: relative;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.service-card .card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

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

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--neutral-100);
}

.portfolio-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.portfolio-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

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

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

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

.portfolio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.portfolio-card p {
  margin-bottom: 1.5rem;
  flex: 1;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.portfolio-meta span i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Resources Section */
.resources-section {
  position: relative;
}

.resources-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--neutral-800);
  font-weight: 600;
  font-family: var(--heading-font);
  border-radius: var(--radius-md) !important;
  padding: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--glass-bg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.2);
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--neutral-100);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.resource-link {
  margin-bottom: 1.5rem;
}

.resource-link:last-child {
  margin-bottom: 0;
}

.resource-link a {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.resource-link p {
  color: var(--neutral-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Community Section */
.community-section {
  position: relative;
}

.community-image {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.community-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.community-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-top: 0.5rem;
}

/* Sustainability Section */
.sustainability-section {
  position: relative;
}

.sustainability-timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.timeline-container {
  position: relative;
  padding-left: 2rem;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid white;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.gallery-caption {
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.gallery-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.gallery-caption p {
  color: var(--neutral-600);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Webinars Section */
.webinars-section {
  position: relative;
}

.webinar-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.webinar-card .card-image {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.webinar-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.date-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.webinar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.webinar-details {
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.webinar-details p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.webinar-details p i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.archive-item {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.archive-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.archive-item p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
  position: relative;
}

.partner-card {
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

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

.partner-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.partner-card p {
  text-align: center;
  color: var(--neutral-600);
  margin-bottom: 0;
}

.partner-cta {
  margin-top: 4rem;
}

.partner-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.partner-cta p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--neutral-600);
}

/* News Section */
.news-section {
  position: relative;
}

.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card .card-image {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.news-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-date span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.news-date span:last-child {
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

.news-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.news-card p {
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-archive {
  margin-top: 3rem;
}

/* Events Calendar Section */
.events-section {
  position: relative;
}

.events-container {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.event-item {
  display: flex;
  padding: 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
  transition: background-color var(--transition-fast);
}

.event-item:last-child {
  border-bottom: none;
}

.event-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.event-date {
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--neutral-600);
}

.event-details {
  flex: 1;
}

.event-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.event-location,
.event-time {
  display: flex;
  align-items: center;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.event-location i,
.event-time i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}

.contact-item p {
  color: var(--neutral-600);
  margin-bottom: 0.25rem;
}

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

.contact-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-form p {
  margin-bottom: 1.5rem;
  color: var(--neutral-600);
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 1px solid var(--neutral-300);
  box-shadow: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.2);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
  color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.2);
}

/* Footer Section */
.footer-section {
  background-color: var(--neutral-800);
  color: var(--neutral-200);
  padding: 5rem 0 0;
}

.footer-content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-info p {
  color: var(--neutral-300);
  margin-bottom: 0;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

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

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-newsletter p {
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: var(--neutral-400);
}

.newsletter-form button {
  padding: 0.75rem 1rem;
  border: none;
  background-color: var(--primary-color);
  color: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
  position: relative;
}

.social-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--primary-light);
  transition: width var(--transition-medium);
}

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

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

.footer-bottom {
  padding: 1.5rem 0;
}

.copyright p {
  margin: 0;
  color: var(--neutral-400);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--neutral-400);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* Cookie Consent */
#cookieConsent {
  backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
}

#acceptCookies {
  background-color: var(--tertiary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--tertiary-dark);
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  min-height: 100vh;
}

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

.success-container {
  max-width: 600px;
  padding: 2rem;
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--neutral-600);
}

/* Media Queries */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .community-image {
    margin-bottom: 2rem;
  }
  
  .footer-info, .footer-links, .footer-newsletter {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-container {
    height: 75vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .event-date .day {
    margin-right: 0.5rem;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.6rem 1.25rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .stat-item {
    min-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .stat-item:last-child {
    margin-bottom: 0;
  }
}