/* Footer Styles */
.main-footer {
  background-color: #91130D;
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.contact-column {
  align-items: flex-start;
}

.logo-column {
  align-items: center;
  justify-content: center;
}

.hours-column {
  align-items: flex-end;
  text-align: right;
}

/* Footer Titles */
.footer-title {
  font-family: 'Burford', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Info Styles */
.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-address {
  font-style: normal;
  line-height: 1.4;
  font-family: 'Sofia Pro', sans-serif;
  color: #e0e0e0;
}

.contact-item span {
  font-family: 'Sofia Pro', sans-serif;
  color: #e0e0e0;
  line-height: 1.4;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(217, 62, 54, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #D93E36;
  transform: translateY(-2px);
}

.social-link i {
  width: 20px;
  height: 20px;
  color: #D93E36;
}

.social-link:hover i {
  color: white;
}

.social-link svg {
  color: white;
}

/* Logo Styles */
.footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

/* Hours Info */
.hours-info {
  margin-bottom: 25px;
}

.hours-item {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  gap: 10px;
  font-family: 'Sofia Pro', sans-serif;
}

.hours-label {
  font-weight: 600;
  min-width: 60px;
}

.hours-item span:last-child {
  color: #e0e0e0;
}

/* Custom Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Burford', serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-farm-primary {
  background-color: #D93E36;
  color: white;
}

.btn-farm-primary:hover {
  background-color: #c23529;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(217, 62, 54, 0.3);
}

.btn-farm-secondary {
  background-color: transparent;
  color: #D93E36;
  border: 2px solid #D93E36;
}

.btn-farm-secondary:hover {
  background-color: #D93E36;
  color: white;
}

.btn-farm-danger {
  background-color: #dc3545;
  color: white;
}

.btn-farm-danger:hover {
  background-color: #c82333;
}

.btn-farm-warning {
  background-color: #ffc107;
  color: #212529;
}

.btn-farm-warning:hover {
  background-color: #e0a800;
}

.tickets-btn {
  align-self: flex-end;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(217, 62, 54, 0.2);
  padding-top: 20px;
}

.copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.copyright-text {
  margin: 0;
  color: #a0a0a0;
  font-family: 'Sofia Pro', sans-serif;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-family: 'Sofia Pro', sans-serif;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .contact-column,
  .hours-column {
    align-items: center;
    text-align: center;
  }
  
  .hours-item {
    justify-content: center;
  }
  
  .tickets-btn {
    align-self: center;
  }
  
  .copyright-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-logo {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 18px;
    min-width: 120px;
  }
} 