/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column.footer-about {
  grid-column: 1;
}

.language-selector {
  margin-bottom: 20px;
}

/* Google Translate Widget Styling */
#google_translate_element {
  margin-bottom: 10px;
}

.goog-te-gadget {
  font-family: var(--default-font) !important;
  font-size: 14px !important;
}

.goog-te-gadget-simple {
  background-color: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
  padding: 8px 12px !important;
  color: var(--default-color) !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
  color: var(--default-color) !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:last-child {
  color: var(--default-color) !important;
}

.goog-te-gadget-simple .goog-te-menu-value:before {
  content: "🌐 " !important;
  margin-right: 5px !important;
}

.footer-select {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.footer-select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.privacy-info {
  margin-bottom: 20px;
}

.privacy-info p {
  color: var(--default-color);
  margin-bottom: 10px;
}

.cookie-settings {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
}

.cookie-settings:hover {
  text-decoration: underline;
}

.footer-social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social-links .social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Footer Styles
# Consolidated from main.css
--------------------------------------------------------------*/

.footer {
  background-color: #ffffff;
  color: var(--default-color);
  padding: 60px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .footer-top {
  padding-bottom: 40px;
}

.footer .footer-about .logo {
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.footer .footer-about .logo span {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
}

.footer .footer-about p {
  margin-bottom: 0;
  color: var(--default-color);
}

.footer h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

/* Mobile Footer Alignment Fix */
@media (max-width: 768px) {
  .footer-column {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer h4 {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .footer-links ul li {
    display: block;
    margin-bottom: 8px;
  }
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}

.footer .footer-links ul li:first-child {
  margin-bottom: 15px;
}

.footer .footer-links ul a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  color: var(--default-color);
  margin-bottom: 10px;
}

.footer .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.footer .copyright p {
  margin: 0;
  color: var(--default-color);
}

.footer .credits {
  color: var(--default-color);
  font-size: 0.9rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Responsive Footer Styles
--------------------------------------------------------------*/

/* Medium Screens (991px and below) */
@media (max-width: 991px) {
  .footer .container {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center;
  }
  
  /* Footer Grid Responsive */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-column.footer-about {
    grid-column: 1;
  }
  
  .footer-social-links {
    justify-content: center;
  }
}

/* Extra Small Screens (600px and below) */
@media (max-width: 600px) {
  .footer .container {
    padding: 10px !important;
  }
  
  /* Footer Grid Responsive for Small Screens */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer .footer-links ul li {
    margin-bottom: 8px;
  }
  
  /* Footer Social Links Responsive for Small Screens */
  .footer-social-links {
    justify-content: center;
    gap: 10px;
  }
  
  .footer-social-links .social-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
} 