* {
  font-family:
    SF Pro,
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;

  color: rgb(41 37 36);
}

body {
  background-color: rgb(255, 240, 223);
}

#links > a {
  transition: scale 0.05s ease-out;
  &:hover {
    scale: 1.1;
  }
}

.line-holder {
  position: relative;
  width: min(300px, 100%);
  height: 10px;
}

.smallLine {
  position: absolute;
  height: 10px;
  width: 200%;
  transform: translate(-25%) scale(0.5);
}

.smallLine1 {
  background: linear-gradient(
    45deg,
    transparent,
    transparent 49%,
    rgb(63, 41, 27) 49%,
    transparent 51%
  );
}
.smallLine2 {
  background: linear-gradient(
    -45deg,
    transparent,
    transparent 49%,
    rgb(63, 41, 27) 49%,
    transparent 51%
  );
}

.smallLine {
  background-size: 20px 20px;
}

#back {
  i {
    transition: transform 0.1s ease-out;
    margin-right: 4px;
  }

  &:hover {
    i {
      transform: translateX(-2px);
    }
  }
}

#blog-content {
  gap: 10px;
  display: flex;
  flex-direction: column;

  .line-holder {
    margin: 30px auto;
    width: 200px;
  }

  & > * {
    opacity: 0;
  }

  h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  p {
    font-size: 1.1rem;
    color: rgba(68, 40, 23, 0.6);
    line-height: 1.5;
  }
}

section[id^="blog-0"] {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  max-width: 0;
}

#logo h2 {
  position: relative;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 700; /* match the bold look if needed */
}


#logo h2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) translateX(10px); /* Adjust spacing */
  width: 150px; /* Adjust size as needed */
  height: 150px;
  background-image: url('./FotoCV.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#logo h2:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(15px); /* Slight movement for animation */
}

/* Conference Section Styles */
.conference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.conference-card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(63, 41, 27, 0.1);
}

.conference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.conf-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(63, 41, 27, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.conf-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(41, 37, 36);
  line-height: 1.3;
  margin-bottom: 4px;
}

.conf-location {
  font-size: 0.95rem;
  color: rgba(63, 41, 27, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.conf-location::before {
  content: '📍';
  font-size: 0.9rem;
}

.conf-role {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(63, 41, 27, 0.1);
  color: rgb(63, 41, 27);
}