/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/*fontfamily*/

.elementor-field-type-text label,
.elementor-field-type-email label {
  display: none !important;
}

textarea.elementor-field-textual.elementor-field {
  border: 1px
    solid
    #000 !important;
  padding-left: 20px;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  font-family: 'ivypresto-display';
  font-size: 36px;
  border-bottom: 1px
    solid
    #000000;
  line-height: 54px;
  padding: 40px;
  padding-bottom: 10px;
}

.filter-bar a {
  text-decoration: none;
  color: #000;
  font-weight: 100;
  position: relative;
}

.filter-bar a.active {
  font-style: italic;
  color: var(--e-global-color-accent); /* active filter link color */
  text-decoration: underline;
  opacity: 1;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  );
  gap: 40px;
  padding: 44px
    20px
    80px;
  max-width: 1400px;
  margin: 0
    auto;
}

/* Portfolio Item Styling */
.portfolio-item {
  text-align: left;
}

.portfolio-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.portfolio-title {
  margin-top: 10px;
  font-size: 28px;
  line-height: 41px;
  text-transform: capitalize;
  padding-left: 10px;
}

.portfolio-title a {
  text-decoration: none;
  color: #000;
}

.portfolio-title:hover {
  color: var(--e-global-color-accent);
}

.portfolio-subtitle {
  font-size: 0.875rem;
  color: #000000;
  margin-top: 5px;
  line-height: 1.5rem;
  padding-left: 10px;
}

/* LOAD MORE */
#load-more {
  text-align: center;
  padding: 30px;
  font-style: italic;
  color: #aaa;
  display: none;
}

/* Responsive Adjustment */
@media (max-width: 1024px) {
  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px
      20px;
    line-height: 20px;
  }

  .filter-bar a {
    font-size: 22px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(
      2,
      1fr
    );
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0
      20px;
  }

  .filter-bar a {
    font-size: 16px;
  }

  .portfolio-subtitle {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
