/* Variables for a clean, gold-accented theme */
:root {
  --primary-color: #010101;
  /* A dark, deep blue-gray for the background */
  --secondary-color: #34495e;
  /* A slightly lighter shade for contrast */
  --accent-color: #c6a656;
  /* The gold from your original design */
  --text-light: #ecf0f1;
  /* Light gray for main text */
  --text-dark: #7f8c8d;
  /* Muted gray for secondary text */
  --link-hover: #e6b96e;
  --transition-duration: 0.3s;
}

/* Basic Footer Styles */
.main-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 1.5rem;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.main-footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-duration);
}

.main-footer a:hover {
  color: var(--accent-color);
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 2rem;
}

/* Column Styles - Adjusted */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Brand Info column alignment */
.brand-info {
  align-items: flex-start;
  /* Aligns content to the left */
  text-align: left;
}

/* Quick Links column alignment */
.quick-links {
  align-items: flex-start;
  /* Aligns content to the left */
}

/* Contact Info column alignment */
.contact-info {
  align-items: flex-start;
  /* Aligns content to the left */
}


.footer-column h3,
.footer-column h4 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Quick Links and Contact List */
.link-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li,
.contact-list li {
  margin-bottom: 0.8rem;
}

.link-list a,
.contact-list a {
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.link-list a:hover,
.contact-list a:hover {
  transform: translateX(5px);
  color: var(--link-hover);
}

.contact-list i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Social Media Icons */
.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.6rem;
  color: var(--text-dark);
  transition: transform var(--transition-duration), color var(--transition-duration);
}

.social-links a:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Specific Social Icon Colors (optional) */
.social-links .fa-facebook-f:hover {
  color: #3b5998;
}

.social-links .fa-instagram:hover {
  color: #E1306C;
}

.social-links .fa-linkedin-in:hover {
  color: #0077B5;
}

.social-links .fa-map-marker-alt:hover {
  color: #EA4335;
}
.social-links .fa-youtube:hover {
  color: #EA4335;
}
/* Footer Bottom Section (Copyright) */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.footer-bottom a {
  color: var(--accent-color);
  font-weight: 500;
}

.footer-logo-img {
  width: 15rem;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-column {
    align-items: center;
  }

  .link-list,
  .contact-list {
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }
}