.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-color);
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 82%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-top .footer-container {
    display: flex;
    width: 100%;
    max-width: 82%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  
  .footer-info {
    flex: 1;
    width: 50%;
    background-color: #2B3A41;
    padding: 90px 60px 60px 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  
  .footer-events {
    flex: 1;
    width: 50%;
    background-color: #fff;
    color: var(--primary-dark);
    padding: 90px 60px 60px 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  
  .footer-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .footer-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: currentColor;
  }
  
  .footer-address {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .footer-address p {
    margin: 0 0 5px 0;
  }
  
  .directions-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--text-color);
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 10px;
  }
  
  .directions-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--text-color);
    transition: width var(--transition-medium);
    z-index: -1;
  }
  
  .directions-button:hover {
    color: var(--primary-dark);
  }
  
  .directions-button:hover::before {
    width: 100%;
  }
  
  .events-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  
  .events-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: transparent;
    border: 1px solid var(--primary-dark);
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .events-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-dark);
    transition: width var(--transition-medium);
    z-index: -1;
  }
  
  .events-button:hover {
    color: var(--text-color);
  }
  
  .events-button:hover::before {
    width: 100%;
  }
  .footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    clear: both; 
  }
  
  .footer-main .footer-container {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-brand {
    flex: 0 0 25%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }
  
  .footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
  }
  
  .footer-navigation {
    flex: 0 0 70%;
    display: flex;
    
  }
  
  .footer-nav-column {
    flex: 0 0 30%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
  }
  
  .footer-nav-column:nth-child(1) {
    animation-delay: 0.3s;
  }
  
  .footer-nav-column:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .footer-nav-column:nth-child(3) {
    animation-delay: 0.5s;
  }
  
  .footer-nav-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav-list li {
    margin-bottom: 12px;
  }
  
  .footer-nav-list a {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav-list a:hover {
    color: var(--text-color);
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-link:hover {
    background-color: var(--text-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    padding: 25px 0;
    clear: both; 
  }
  
  .footer-bottom .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 1200px) {
    .footer-container {
      max-width: 90%;
    }
    
    .footer-info, 
    .footer-events {
      padding: 70px 40px;
    }
    
    .events-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 1024px) {
    .footer-top .footer-container {
      flex-direction: column;
      max-width: 100% !important;
    }
    
    .footer-info,
    .footer-events {
      flex: 0 0 100%;
      width: 100%; 
      padding: 50px 40px;
    }
    
    .footer-brand {
      margin-bottom: 40px;
    }
    
    .footer-navigation {
      flex-wrap: wrap;
    }
    
    .footer-nav-column {
      flex: 0 0 48%;
      margin-bottom: 30px;
    }
    
    .footer-main {
      padding: 60px 0 40px;
    }
  }

  @media (max-width: 768px) {
    .footer-container {
      max-width: 100%;
    }
    
    .footer-main .footer-container {
      flex-direction: column;
      text-align: center;
      max-width: 100% !important;
    }
    
    .footer-navigation {
      width: 100%;
    }
    
    .footer-nav-column {
      flex: 0 0 100%;
      margin-bottom: 30px;
    }
    
    .footer-nav-column:nth-child(2) {
      display: none; 
    }
    
    .events-title {
      font-size: 28px;
    }
    
    .footer-info, 
    .footer-events {
      padding: 40px 30px;
    }
  }
  
  @media (max-width: 576px) {
    .footer-container {
      padding: 0 15px;
    }
    .footer-main .footer-container {
        flex-direction: column;
        text-align: center;
        max-width: 100% !important;
      }
    .footer-info, 
    .footer-events {
      padding: 30px 40px;
    }
    
    .footer-label {
      padding-left: 30px;
      font-size: 12px;
    }
    
    .footer-label::before {
      width: 20px;
    }
    
    .events-title {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .directions-button,
    .events-button {
      padding: 10px 20px;
      font-size: 12px;
      white-space: nowrap; 
    }
    
    .footer-social {
      justify-content: center; 
    }
    
    .footer-logo {
      font-size: 24px;
    }
    
    .footer-main {
      padding: 40px 0 30px;
    }
    
    .footer-bottom {
      padding: 20px 0;
    }
    
    .footer-copyright {
      font-size: 12px;
    }
  }
  
  @media (max-width: 375px) {
    .footer-info, 
    .footer-events {
      padding: 25px 15px;
    }
    
    .events-title {
      font-size: 22px;
    }
    
    .footer-address p {
      font-size: 14px;
    }
    
    .footer-nav-title {
      font-size: 12px;
    }
    
    .footer-nav-list a {
      font-size: 14px;
    }
    
    .social-link {
      width: 32px;
      height: 32px;
    }
  }