  /* Vera Semantica Iuris - Custom Styles for Grav Theme */

:root {
  /* Custom color palette */
  --color-black: #000000;
  --color-deep-gray: #111111;
  --color-white: #ffffff;
  --color-gold: #c8a951;
}

* {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation scroll state */
header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

path.logo{
  fill: rgba(0,0,0,0.9);
}

/* Smooth transitions */
header, path.logo {
  transition: all 0.3s ease;
}

/* Gold gradient text utility */
.text-gold-gradient {
  background: linear-gradient(to right, #ffffff, #c8a951, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shadow utilities */
.shadow-soft {
  box-shadow: 0 10px 30px rgba(200, 169, 81, 0.2);
}

.shadow-medium {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


/* Focus styles */
input:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: var(--color-gold);
}

/* Hover scale effect */
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .mobile-menu-open {
    display: block;
  }
}


.background-img {
  background-image: url("/images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Founders Section Styles */
#founders {
  position: relative;
}

.founders-leader-card {
  position: relative;
  overflow: hidden;
}

.founders-leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8a951, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.founders-leader-card:hover::before {
  opacity: 1;
}

.founders-leader-bio {
  will-change: max-height;
}

.expand-icon-small {
  display: inline-block;
}

/* Responsive adjustments for founders section */
@media (max-width: 1024px) {
  .founders-leader-card {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 640px) {
  #founders .grid {
    gap: 2rem;
  }
  
  .founders-leader-card {
    padding: 1rem;
  }
}


form#webinar-form div {
  margin: 0.5rem 0;

  
}

form#webinar-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  color: white;
  transition: border-color 0.3s;
}

div#h-captcha-webinar-form {
  padding: 1rem;
  display: flex;
  justify-content: center; 
}