/* CSS dla Verified Beef Poland */

body {
  background-color: #131313;
  color: #e5e2e1;
  font-family: 'Inter', sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
  color: #C6A85A; /* Kolor domyślnie używany w mainpage 2, może być zmieniany przez inne klasy Tailwind */
}

.gold-gradient {
  background: linear-gradient(135deg, #e3c372 0%, #c6a85a 100%);
}

.glass-nav {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 195, 114, 0.08);
}

/* Form Styles from CTA Subpage */
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e3c372' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 0.5rem center !important;
  background-repeat: no-repeat !important;
  background-size: 1.5em 1.5em !important;
  padding-right: 2.5rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Animations that will be handled via IntersectionObserver */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Custom Scrollbar for better UX (Optional but good) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #131313; 
}
::-webkit-scrollbar-thumb {
  background: rgba(227, 195, 114, 0.3); 
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(227, 195, 114, 0.6); 
}

/* Diagram Styles from mainpage 1 */
.diagram-container {
  position: relative;
}
.diagram-path {
  position: absolute;
  top: 60px;
  left: 48px;
  right: 0px;
  bottom: 20px;
  border: 1.5px solid rgba(227, 195, 114, 0.4);
  border-radius: 60px;
  pointer-events: none;
  z-index: 0;
}
.diagram-vertical-line {
  position: absolute;
  top: 120px;
  bottom: 80px;
  left: 48px;
  width: 1.5px;
  background: rgba(227, 195, 114, 0.4);
  z-index: 0;
}
.flow-arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(227, 195, 114, 0.6);
  border-bottom: 2px solid rgba(227, 195, 114, 0.6);
  pointer-events: none;
  z-index: 5;
}
