/**
 * Theme Name:     Methe
 * Author:         3.0
 * Template:       Divi
 * Text Domain:	   methe
 * Description:    Smart. Flexible. Beautiful.
 * Theme URI:      http://Methe
 * Author URI:     http://pg
 * Version:        3.0
 */

.pg_overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Jost', sans-serif;
  transition: opacity 0.5s ease;
}

.pg_overlay.active {
  display: flex;
  opacity: 1;
}

.pg_overlay_inner {
  text-align: center;
  width: 90%;
  max-width: 1000px;
}

.pg_menu_sections {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
}

.pg_menu_section:hover {
  text-decoration: underline;
}

.pg_tab_content {
  display: none;
}

.pg_tab_content.active {
  display: block;
}

.pg_toggle {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.pg_toggle span {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}

.pg_toggle span.active {
  opacity: 1;
  font-weight: bold;
}

.pg_slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.pg_slider img {
  max-width: 250px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.pg_slider img:hover {
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .pg_menu_sections {
    flex-direction: column;
    gap: 30px;
  }
}
