/*
Theme Name: Foodior Child
Theme URI: http://gossipthemes.com/foodior
Template: foodior
Author: Gossip Themes
Author URI: http://gossipthemes.com
Description: Personal Food Blog WordPress Theme
Tags: two-columns,three-columns,four-columns,right-sidebar,custom-menu,featured-images,full-width-template
Version: 1.0.1762756400
Updated: 2025-11-10 06:33:20

*/
/* Make only two columns visible: logo (25%) + menu (75%) */
.row.align-items-center {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.row.align-items-center > .col-lg-2 {
  flex: 0 0 25%;
  max-width: 25%;
}

.row.align-items-center > .col-lg-7 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* Hide the third column completely */
.row.align-items-center > .col-lg-3 {
  display: none;
}
.footer-widgets-area {
  background: #000 !important; /* dark background */
  color: #fff !important; /* default text white */
  padding: 60px 0 !important;
}

.footer-widget {
  margin-bottom: 30px !important;
}

.footer-widget-title {
  color: #fff !important;
  font-size: 18px !important;
  margin-bottom: 15px !important;
  font-weight: 600 !important;
}

/* Brighter text and links */
.footer-widget p,
.footer-widget li,
.footer-widget a {
  color: #f5f5f5 !important; /* bright white tone */
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

/* Pure white on hover */
.footer-widget a:hover {
  color: #ffffff !important;
}

/* Footer bottom section */
.footer-bottom {
  border-top: 1px solid #333 !important;
  padding: 20px 0 !important;
  background: #000 !important;
  text-align: center !important;
}

.footer-bottom p,
.footer-bottom a {
  color: #eaeaea !important; /* brighter white */
  font-size: 14px !important;
}

.footer-bottom a:hover {
  color: #fff !important;
}

@media (max-width: 768px) {
  .row.align-items-center {
    flex-wrap: wrap;
  }
  .row.align-items-center > .col-lg-2,
  .row.align-items-center > .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
	.footer-col {
    margin-bottom: 30px;
  }
}

